diff --git a/utilities/acceptance-tests/script/database_cleanser.rb b/utilities/acceptance-tests/script/database_cleanser.rb index d3326082..f2f1a11c 100644 --- a/utilities/acceptance-tests/script/database_cleanser.rb +++ b/utilities/acceptance-tests/script/database_cleanser.rb @@ -1,8 +1,8 @@ =begin -------------------------------------------------------------------------------- -Stop the Vitro application, delete all MySQL tables from the Vitro database, and -start the application again. +Stop the Vitro application, delete all MySQL tables from the Vitro database, +reload them from the mysqldump file, and start the application again. -------------------------------------------------------------------------------- @@ -21,6 +21,8 @@ Parameters: A user account that has authority to drop the Vitro database in MySQL. mysql_password The password for mysql_username. + mysql_dump_file + The path to a file that contains a mysqldump of the test data model. database_name The name of the Vitro database in MySQL. @@ -45,6 +47,7 @@ class DatabaseCleanser raise("Properties file must contain a value for 'website_url'") if @website_url == nil raise("Properties file must contain a value for 'mysql_username'") if @mysql_username == nil raise("Properties file must contain a value for 'mysql_password'") if @mysql_password == nil + raise("Properties file must contain a value for 'mysql_dump_file'") if @mysql_dump_file == nil raise("Properties file must contain a value for 'database_name'") if @database_name == nil # Check that we can connect to the MySQL database. @@ -57,6 +60,17 @@ class DatabaseCleanser raise("Can't find the 'mysql' command!") if result == nil raise("Can't connect to MySQL database.") if !result raise("Error connecting to MySQL database.") if $?.exitstatus != 0 + + # Check that the mysqldump file exists and is readable + if !File.exist?(@mysql_dump_file) + raise "MySQL dump file '#{@mysql_dump_file}' does not exist." + end + if !File.file?(@mysql_dump_file) + raise "MySQL dump file '#{@mysql_dump_file}' is not a file." + end + if !File.readable?(@mysql_dump_file) + raise "MySQL dump file '#{@mysql_dump_file}' is not readable." + end end # Issue the Tomcat stop command and pause for it to take effect. @@ -78,7 +92,7 @@ class DatabaseCleanser puts " Waiting #{@tomcat_start_delay} seconds..." sleep(@tomcat_start_delay) begin - open(@website_url){|f|} + open(@website_url){|f|} rescue Timeout::Error puts ">>> HTTP request timed out!" raise @@ -86,7 +100,7 @@ class DatabaseCleanser puts " ... started." end - # Tell MySQL to drop the database and re-create it. + # Tell MySQL to re-create the database and load from the dump file. # def drop_database_and_create_again() args = [] @@ -96,8 +110,20 @@ class DatabaseCleanser args << "--execute=drop database #{@database_name}; create database #{@database_name} character set utf8;" result = system("mysql", *args) raise("Can't find the 'mysql' command!") if result == nil - raise("Can't clean the MySQL database: command was 'mysql' #{args}") if !result + raise("Can't drop the MySQL database: command was 'mysql' #{args}") if !result raise("Error code from MySQL: #{$?.exitstatus}, command was 'mysql' #{args}") if $?.exitstatus != 0 + puts " Re-created the database." + + args = [] + args << "--user=#{@mysql_username}" + args << "--password=#{@mysql_password}" + args << "--database=#{@database_name}" + args << "--execute=source #{File.expand_path(@mysql_dump_file)};" + result = system("mysql", *args) + raise("Can't find the 'mysql' command!") if result == nil + raise("Can't load the MySQL dump file: command was 'mysql' #{args}") if !result + raise("Error code from MySQL: #{$?.exitstatus}, command was 'mysql' #{args}") if $?.exitstatus != 0 + puts " Loaded the databse from the dump file." end # ------------------------------------------------------------------------------------ @@ -114,6 +140,7 @@ class DatabaseCleanser @website_url = properties['website_url'] @mysql_username = properties['mysql_username'] @mysql_password = properties['mysql_password'] + @mysql_dump_file = properties['mysql_dump_file'] @database_name = properties['database_name'] sanity_checks_on_parameters() diff --git a/utilities/acceptance-tests/test-user-model.owl b/utilities/acceptance-tests/test-model/test-user-model.owl similarity index 100% rename from utilities/acceptance-tests/test-user-model.owl rename to utilities/acceptance-tests/test-model/test-user-model.owl diff --git a/utilities/acceptance-tests/test-model/testmodeldump.sql b/utilities/acceptance-tests/test-model/testmodeldump.sql new file mode 100644 index 00000000..a84d091a --- /dev/null +++ b/utilities/acceptance-tests/test-model/testmodeldump.sql @@ -0,0 +1,326 @@ +-- MySQL dump 10.13 Distrib 5.1.44, for Win64 (unknown) +-- +-- Host: localhost Database: vivo +-- ------------------------------------------------------ +-- Server version 5.1.44-community + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `jena_g1t0_reif` +-- + +DROP TABLE IF EXISTS `jena_g1t0_reif`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g1t0_reif` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `GraphID` int(11) DEFAULT NULL, + `Stmt` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `HasType` char(1) NOT NULL, + UNIQUE KEY `jena_g1t0_reifXSTMT` (`Stmt`,`HasType`), + KEY `jena_g1t0_reifXSP` (`Subj`,`Prop`), + KEY `jena_g1t0_reifXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g1t0_reif` +-- + +LOCK TABLES `jena_g1t0_reif` WRITE; +/*!40000 ALTER TABLE `jena_g1t0_reif` DISABLE KEYS */; +/*!40000 ALTER TABLE `jena_g1t0_reif` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_g1t1_stmt` +-- + +DROP TABLE IF EXISTS `jena_g1t1_stmt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g1t1_stmt` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `GraphID` int(11) DEFAULT NULL, + KEY `jena_g1t1_stmtXSP` (`Subj`,`Prop`), + KEY `jena_g1t1_stmtXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g1t1_stmt` +-- + +LOCK TABLES `jena_g1t1_stmt` WRITE; +/*!40000 ALTER TABLE `jena_g1t1_stmt` DISABLE KEYS */; +INSERT INTO `jena_g1t1_stmt` VALUES ('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#startYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-UStime:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T13:54:45:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int14:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDates and times for events, employment, etc.:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int6:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USteaching:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T15:37:48:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T21:31:36:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int93:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:1',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USmapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://purl.org/ontology/bibo/argued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:2',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int95:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T16:55:11:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbib obscure:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbib references:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T16:50:29:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int19:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:3',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T13:05:00:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int16:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRelationships of place:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USlocation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:4',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USaffiliation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:47:01:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/cornell#OSPSponsorId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:5',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USidentity:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:16:01:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int18:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlink relationships:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USlinks:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T14:00:43:',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USadministration:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:49:21:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int17:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:6',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int8:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-27T08:36:28:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USpublications:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://purl.org/ontology/bibo/section:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:7',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbib locator:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T16:41:57:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int16:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupevents:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupevents:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupevents:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USevents:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupevents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-05T10:16:50:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupevents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#supplementalInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T16:12:30:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:8',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USsupplemental:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/florida#statewideGoalAndFocusArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int9:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USservice:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T15:38:51:',1),('Uv::http://purl.org/ontology/bibo/chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbib primary:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:12:36:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int7:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:9',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#startYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T15:30:25:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USresearch:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/ontology/bibo/sici:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USoverview:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-12T07:11:40:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int6:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-08T10:36:48:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USorganizations:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-UStopic:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T13:38:57:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-08T10:32:16:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USpeople:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int4:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T22:47:28:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-UStopics:',1),('Uv::http://vivoweb.org/ontology/core#reportId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#reviewedDocumentTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USlocations:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T14:30:34:',1),('Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T13:39:59:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USSWRL:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-UScontact:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:15:07:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int19:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproperties related to postal and email addresses:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/upc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-08T10:42:15:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-UScourses:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology/core#conferenceName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbrev:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupcourses:',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/ontology/bibo/lccn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/dc/terms/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#grantDirectCosts:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#addressPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#departmentOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbackground:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T12:36:28:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int8:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:10',1),('Uv::http://vivoweb.org/ontology/core#addressState:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USemployment:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-28T09:46:17:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:11',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/contributorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USequipment:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-25T21:24:26:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupequipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int7:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://purl.org/ontology/bibo/locator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USbib mapping:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-01-10T21:12:31:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int94:',1),('Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:12',1),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#localAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://purl.org/dc/terms/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasRuleGroup:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://purl.org/ontology/bibo/oclcnum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://purl.org/ontology/bibo/asin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/florida#StatewideGoalAndFocusArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouptopics:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://purl.org/ontology/bibo/eanucc13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#institutionOfDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/cornell#OSPAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://purl.org/ontology/bibo/shortDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#modTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2009-12-08T10:42:02:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USactivities:',1),('Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#authorNameAsListed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/florida#divisionOfSponsoredResearchNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/scripps#ScientificSupportStaff:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://purl.org/ontology/bibo/issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://purl.org/ontology/bibo/issn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#patentNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasClassPhrase:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#contactInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/scripps#StaffScientist:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology/core#totalAwardAmount:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#addressCity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/cornell#OSPDepartmentId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleGroupEnabled:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#linkAnchorText:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupactivities:',1),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptopic:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#startDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#day:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://vivoweb.org/ontology/core#addressLine3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#endDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#linkURI:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplinks:',1),('Uv::http://vivoweb.org/ontology/core#addressLine2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://purl.org/ontology/bibo/editorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasRuleCategory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://purl.org/ontology/bibo/coden:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#addressCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#addressLine1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#conferenceDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasPropertyPhrase:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouplocations:',1),('Uv::http://purl.org/ontology/bibo/eissn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/washu#Trainee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppeople:',1),('Uv::http://vivoweb.org/ontology/core#outreachFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:',1),('Uv::http://vivoweb.org/ontology/core#filingDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#seatingCapacity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#titleOrRole:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#sponsorAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://purl.org/ontology/bibo/shortTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibmapping:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupemployment:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://vivoweb.org/ontology/core#cityOfPublication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://www.w3.org/2000/01/rdf-schema#subclassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#alternateTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasBuiltInPhrase:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupSWRL:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/ontology/bibo/edition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator:',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#workFax:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://purl.org/ontology/bibo/gtin14:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibobscure:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupmapping:',1),('Uv::http://purl.org/ontology/bibo/status:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringactivityRelatedEvent:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlisted by:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#listedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproduced_in:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#produced_in:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/argued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/argued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringoffered by:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#offeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter only \'true\' or \'false\' (without the quotes):',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#isCorrespondingAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsub_event:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#sub_event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:13',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#sourceVocabularyReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsourceVocabularyReference:',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int7:',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:14',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/section:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/section:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:15',1),('Uv::http://vivoweb.org/ontology/core#supplementalInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#supplementalInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#supplementalInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#supplementalInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#populationYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringisReferencedBy:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/isReferencedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityES:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinterviewer:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/interviewer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeUNDP:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:16',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:17',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:18',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://xmlns.com/foaf/0.1/:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringfoaf:',1),('Uv::http://vivoweb.org/ontology/core#startYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#startYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#startYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startYearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringorganizationGrantingDegree:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:19',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#organizationGrantingDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#GDPTotalInCurrentPrices:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:20',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#startTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcreated:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/created:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasMaxLatitude:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:21',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAntarctica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:22',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:23',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringco-principal investigator on:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:24',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:25',1),('Uv::http://purl.org/ontology/bibo/sici:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/sici:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringresearchActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasCollaborator:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCollaborator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringoffers degree:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#offersDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelated activity:',1),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnarrower term:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#narrower:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprincipal investigator:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPublic Description from Glossary of NIH Terms. (MT):',1),('Uv::http://vivoweb.org/ontology/core#hasPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:26',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringaffiliatedOrganization:',1),('Uv::http://www.w3.org/2004/02/skos/core:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringskos:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringbased_near:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://xmlns.com/foaf/0.1/based_near:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproduct:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#product:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialAR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:27',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#validSince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadministered by:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:28',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLocal University Division of Sponsored Research:',1),('Uv::http://vivoweb.org/ontology/core#administeredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:29',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab507808851:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe most general classification of a person:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:30',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:31',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int55:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:32',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas facility:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpublisher:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListFR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringInternational organizations.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:33',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:34',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasResearchActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#objectIndividualSortProperty:','Uv::http://vivoweb.org/ontology/core#displayOrder:',1),('Uv::http://vivoweb.org/ontology/core#displayOrder:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#displayOrder:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#displayOrder:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#displayOrder:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#displayOrder:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupsupplemental:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#reportId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#reportId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#reportId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#reportId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#reviewedDocumentTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#reviewedDocumentTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#reviewedDocumentTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int31:',1),('Uv::http://vivoweb.org/ontology/core#reviewedDocumentTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringequipment for:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#equipmentFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeGAUL:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:35',1),('Uv::http://purl.org/dc/elements/1.1/:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdcelem:',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:36',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresentationActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int43:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublicationCityName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:37',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasMinLongitude:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortAR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int32:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:38',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas part:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:39',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab2032435850:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasPublicationVenue:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#hasPublicationVenue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringannotates:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/annotates:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:40',1),('Uv::http://vivoweb.org/ontology/core#refereedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:41',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNot meant for use in classifying areas:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:42',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:43',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:44',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:45',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:46',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:47',1),('Uv::http://purl.org/ontology/bibo/pages:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialZH:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringreversedBy:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/reversedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringisVersionOf:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/elements/1.1/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#GDPNotes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialES:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#researchAreaOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#researchAreaOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#researchAreaOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringresearch area of:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#populationTotal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/upc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/upc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwebpage:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab576853613:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic field for integer count values:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:48',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#count:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityFR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/elements/1.1/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/elements/1.1/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/elements/1.1/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://purl.org/dc/elements/1.1/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialIT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int21:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelevant organization:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when no Publisher resource to link to:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#publisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:49',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:25',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:24',1),('Uv::http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringco-principal investigator:',1),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas member:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:50',1),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringonline content:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#onlineContent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdirector:',1),('Uv::http://purl.org/ontology/bibo/director:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#string2009-2010:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:51',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringbuilding:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#roomWithinBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortRU:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:52',1),('Uv::http://purl.org/NET/c4dm/event.owl:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringevent:',1),('Uv::http://vivoweb.org/ontology/core#conferenceName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#conferenceName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#conferenceName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#conferenceName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeISO3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasProgram:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas program:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortIT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeFAOSTAT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringoccurs during:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#occursDuring:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringfunds:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:53',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#funds:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:54',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpart of:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#partOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:55',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:56',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int4:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when the full date and time are known:',1),('Uv::http://vivoweb.org/ontology/core#startDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeISO2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#equipmentInFacility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:57',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringfull email address:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialFR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/lccn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/lccn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Authorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customShortViewAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringauthorshipShortView.jsp:',1),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtime:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#time:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdegree type:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeTypeAwarded:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdefaultLinkForm.jsp:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdepiction:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://xmlns.com/foaf/0.1/depiction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pmid:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#collaboratorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcollaboratorOn:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when full date and time are known:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endDateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int8:',1),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:58',1),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringserviceProvidedBy:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#serviceProvidedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/dc/terms/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:59',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:53',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:54',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringfunded by:',1),('Uv::http://vivoweb.org/ontology/core#fundedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:60',1),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:61',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:62',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWest Sahara:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTeritories subject to disagreement and debate.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int24:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:63',1),('Uv::http://vivoweb.org/ontology/core#grantDirectCosts:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#grantDirectCosts:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int61:',1),('Uv::http://vivoweb.org/ontology/core#grantDirectCosts:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantDirectCosts:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListES:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#addressPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int7:',1),('Uv::http://vivoweb.org/ontology/core#addressPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:64',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int12:',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwill use autocomplete to constrain entries:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelation:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/relation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrights:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/rights:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#broader:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringbroader term:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialRU:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:65',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlanguage:',1),('Uv::http://purl.org/dc/terms/language:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://vivoweb.org/ontology/core#features:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#features:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasSubOrganization:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSubOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#featuredIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcompiled by:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#compiledBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#departmentOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#departmentOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#departmentOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#departmentOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#providesService:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprovidesService:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas contributing participant:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasContributingParticipant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasCurrency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeventWithin:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#eventWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#landArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcourt:',1),('Uv::http://purl.org/ontology/bibo/court:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:66',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdistributor:',1),('Uv::http://purl.org/ontology/bibo/distributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyRU:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdescription:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/affirmedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringaffirmedBy:',1),('Uv::http://vivoweb.org/ontology/core#role:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#role:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#role:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#role:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#role:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeducational background:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressState:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressState:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#addressState:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressState:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:67',1),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyEN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdomesticGeographicFocusOf:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:68',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:69',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtranslator:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/translator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#objectIndividualSortProperty:','Uv::http://vivoweb.org/ontology/core#startYear:',1),('Uv::http://vivoweb.org/ontology/core#startYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#startYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#individualSortDirectionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdesc:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:70',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpersonHasPositionHistory.jsp:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#personInPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcurrent positions:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas teacher:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseSectionTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsemester:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#taughtInSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresentations:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/presents:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdistributes funding from:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:71',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#distributesFundingFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadvisingActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#advisingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasShortName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/contributorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://purl.org/ontology/bibo/contributorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://purl.org/ontology/bibo/contributorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/contributorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgeographicallyContains:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinked author:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAuthor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:72',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbreviation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:73',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelated information resource:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:74',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelated:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:75',1),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcompiler of:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#compilerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasSubEvent:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSubEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://purl.org/ontology/bibo/locator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/locator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn employment activity, whether compensated or not:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customShortViewAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpositionShortView.jsp:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#GDPYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:76',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab1752879766:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdegree:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/degree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:77',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#localAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#localAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#localAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#localAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeditorOf:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprovides funding through:',1),('Uv::http://vivoweb.org/ontology/core#providesFundingThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresentedAt:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/presentedAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:78',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:79',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#programOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprogram of:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#agriculturalArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int51:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpublisher of:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisherOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringvocabularyReferenceFor:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#vocabularyReferenceFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyAR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int99:',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:80',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#end:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsection of:',1),('Uv::http://vivoweb.org/ontology/core#sectionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinterviewee:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/interviewee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:81',1),('Uv::http://purl.org/dc/terms/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeventRelatedActivity:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#eventRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/transcriptOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtranscriptOf:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#population:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringfacility for:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#facilityFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringissuer:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/issuer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringteachingActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:82',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#start:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas author entry:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#objectIndividualSortProperty:','Uv::http://vivoweb.org/ontology/core#authorRank:',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:83',1),('Uv::http://vivoweb.org/ontology/core#authorRank:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:41',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:42',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNot meant for use in classifying areas:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/isbn10:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/isbn10:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://purl.org/ontology/bibo/isbn10:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/isbn10:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/oclcnum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/oclcnum:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortEN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringreproducedIn:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/reproducedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyIT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:84',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/content:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasListName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/asin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/asin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAmazon standard identification number:',1),('Uv::http://purl.org/ontology/bibo/asin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:85',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int27:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadministers:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:28',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLocal University Division of Sponsored Research:',1),('Uv::http://vivoweb.org/ontology/core#administers:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringteacher of:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:86',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachesCourseSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlink type:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkType:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringbibo:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:87',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:88',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGroups created for special needs.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPublic Description from Glossary of NIH Terms. (MT):',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprincipal investigator on:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#principalInvestigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab1043808790:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyFR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#prerequisiteFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#prerequisiteFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#prerequisiteFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprerequisite for:',1),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:89',1),('Uv::http://purl.org/ontology/bibo/isbn13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/isbn13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://purl.org/ontology/bibo/isbn13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/isbn13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasNationality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://purl.org/ontology/bibo/uri:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:90',1),('Uv::http://vivoweb.org/ontology/core#addressStreet:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://vivoweb.org/ontology/core#addressStreet:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressStreet:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#addressStreet:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressStreet:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtranslatorOf:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#translatorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#locationOfEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#locationOfEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyES:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsection:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasSection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringemployer having employment:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#objectIndividualSortProperty:','Uv::http://vivoweb.org/ontology/core#startYear:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#individualSortDirectionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdesc:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringorganizationHasPositionHistory.jsp:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizationForPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:34',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:91',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRegion divided by a demarcated area of the Earth.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityRU:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/eanucc13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/eanucc13:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasOutreachActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdoi:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:92',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/doi:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:93',1),('Uv::http://purl.org/ontology/bibo/shortDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/shortDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:94',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasTimeInterval:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasTimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringkeyword:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#keyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#authorNameAsListed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#authorNameAsListed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#authorNameAsListed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#authorNameAsListed:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int59:',1),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortFR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNot meant for use in classifying areas:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:95',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTop level of the geopolitical.owl ontology.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#addressDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#addressDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaddress:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeFAOTERM:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouppublications:',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:96',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeCurrency:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringformat:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/format:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#courseCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#courseCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas translation:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTranslation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab1777391077:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:97',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int51:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortES:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:98',1),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringisVersionOf:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/isVersionOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasStatistics:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasTeachingActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#GDP:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#populationUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/issn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/issn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#patentNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#patentNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#patentNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#patentNumber:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int6:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpublication month:',1),('Uv::http://vivoweb.org/ontology/core#publicationMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityAR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCollection of legal cases:',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:99',1),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdefaultLinkForm.jsp:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinvestigator:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:101',1),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:102',1),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#contactInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#contactInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#contactInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#contactInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListEN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:103',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#overview:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:104',1),('Uv::http://vivoweb.org/ontology/core#description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#description:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeditor:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringactivityDescriptionFor:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#activityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinvestigator on:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#investigatorOn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwebpageOf:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#webpageOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgrantSubcontractedThrough:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:105',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#grantSubcontractedThrough:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:106',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:107',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:108',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:109',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#populationNotes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrecipient:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/recipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:110',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas subject area:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#totalAwardAmount:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#totalAwardAmount:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#totalAwardAmount:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#totalAwardAmount:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringmailingAddress:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddress:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinked information resource:',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:99',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCollection of statutes defining legal code:',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgeographic focus of:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocusOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhomepage:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse VIVO core:webpage to have an inverse property:',1),('Uv::http://xmlns.com/foaf/0.1/homepage:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:111',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int56:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringconservation and sustainable development:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter a word or short phrase only:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringvalue:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#value:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/identifier:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringreviewOf:',1),('Uv::http://purl.org/ontology/bibo/reviewOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcourseDevelopedBy:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#courseTaughtBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameCurrencyZH:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#distributes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#distributes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#distributes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdistributes:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:112',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#landAreaYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityIT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#individualSortDirectionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdesc:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringawards and distinctions:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:113',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe credits for a course may vary by section (?):',1),('Uv::http://vivoweb.org/ontology/core#sectionCredits:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#reviewedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#reviewedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringreviewedIn:',1),('Uv::http://vivoweb.org/ontology/core#reviewedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#addressCity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressCity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int4:',1),('Uv::http://vivoweb.org/ontology/core#addressCity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressCity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasActivityDescription:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#hasActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:114',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:115',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:116',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#courseOffering:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcourse offering:',1),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe academic degree of a Thesis:',1),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab787776173:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#onlineContentFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#onlineContentFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#onlineContentFrom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringonline content from:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresentationActivity:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#presentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtitle:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/title:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/authorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:117',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:118',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringowner:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/owner:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproceedingsOf:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#proceedingsOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubmitted, accepted, in press, out of print:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#publicationStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpublicationVenueFor:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#publicationVenueFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeAGROVOC:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnearestGeographicLocationFor:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocationFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcontributor:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/contributor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringorganizer of:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizerOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#awardedTo:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#awardedTo:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#awardedTo:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringawarded to:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubOrganizationWithin:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#subOrganizationWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringagent:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#agent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#linkAnchorText:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkAnchorText:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:119',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab576853613:',1),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:120',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPolitically independent territories.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:121',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShould this be part of the Employment context node?:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int9:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hrJobTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#landAreaTotal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringalternative:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/alternative:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:122',1),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int55:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas research area:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab774498032:',1),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasCoordinate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:123',1),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaNotes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListZH:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListAR:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:124',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:125',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:126',1),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubject area for:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#subjectAreaFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:127',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas authorship:',1),('Uv::http://vivoweb.org/ontology/core#authorInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:128',1),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#startDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#startDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#startDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#startDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringaward or distinction for:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:88',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRegion divided by economic factors.:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:129',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#day:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#day:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#day:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#day:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int56:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:70',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinvolves employee:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#positionForPerson:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:130',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringoutreachActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int42:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedPublisherName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:37',1),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListIT:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:100',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#subcontractsGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubcontractsGrant:',1),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtranslation of:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/translationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:131',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int26:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:132',1),('Uv::http://vivoweb.org/ontology/core#endDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#endDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#endDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprofessionalActivityBy:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoverview:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#domesticGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdomesticGeographicFocus:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproducer:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/producer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:133',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcontributingActivity:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:134',1),('Uv::http://vivoweb.org/ontology/core#grantRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:135',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringperformer:',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/performer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:136',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#landAreaUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA defined class of organizations that fund Grants:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab998735444:',1),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnearestGeographicLocation:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#linkURI:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkURI:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgeographic focus:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupresearch:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#internationalGeographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/editorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/editorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int21:',1),('Uv::http://purl.org/ontology/bibo/editorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/editorList:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubsequentLegalDecision:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/subsequentLegalDecision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringmember of:',1),('Uv::http://vivoweb.org/ontology/core#memberOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsubject:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/subject:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/coden:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/coden:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#addressCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#addressCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int6:',1),('Uv::http://vivoweb.org/ontology/core#addressCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customShortViewAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinkShortView.jsp:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddressFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddressFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#mailingAddressFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringmailingAddressFor:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameListRU:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouplocation:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringroom:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:37',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter only a 4-digit year:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int6:',1),('Uv::http://vivoweb.org/ontology/core#endYear:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasProfessionalActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupoutreach:',1),('Uv::http://vivoweb.org/ontology/core#hasProfessionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#validUntil:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasMinLatitude:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:137',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenterInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:138',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int4:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#workPhone:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:139',1),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/eissn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/eissn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/eissn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupidentifiers:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:140',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int31:',1),('Uv::http://vivoweb.org/ontology/core#filingDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#filingDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#filingDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#filingDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameOfficialEN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int51:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpublisher:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publisher:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeducational background of:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#educationalBackgroundOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgeographicallyWithin:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:141',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGrouporganizations:',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:142',1),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityZH:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#atTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:143',1),('Uv::http://vivoweb.org/ontology/core#atTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#atTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#atTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#seatingCapacity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#seatingCapacity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#seatingCapacity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#seatingCapacity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas equipment:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasEquipment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:144',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#recentCourseTaught:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprimaryCourseDeveloper:',1),('Uv::http://vivoweb.org/ontology/core#sponsorAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sponsorAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#sponsorAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#sponsorAwardId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:145',1),('Uv::http://purl.org/ontology/bibo/shortTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/shortTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int22:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when start year and end year are not appropriate:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://purl.org/ontology/bibo/editor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeditor:',1),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:146',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:147',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#selfEditor:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:148',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringisAgentIn:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#isAgentIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringissued:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/issued:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaTotal:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinked advisee:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupadministration:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:134',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:135',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#activityRelatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringotherProfessionalonGrant:',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:149',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:150',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdegreeCandidacy:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:151',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinvolves employer:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#positionInOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#landAreaNotes:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasMaxLongitude:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupteaching:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasAdvisingActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAdvisingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nationalityEN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdate:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/dc/terms/date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inClassGroup:','Uv::http://vivoweb.org/ontology#vitroClassGroupevents:',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:152',1),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#hasOfficialName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeDBPediaID:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#cityOfPublication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#cityOfPublication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int55:',1),('Uv::http://vivoweb.org/ontology/core#cityOfPublication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#cityOfPublication:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadvisee role:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbiography:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasProceedings:',1),('Uv::http://vivoweb.org/ontology/core#hasProceedings:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtimeIntervalFor:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#timeIntervalFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGrouptime:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupaffiliation:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelevant activity:',1),('Uv::http://purl.org/dc/terms/:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdcterms:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#GDPUnit:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringorganizer:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/organizer:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:153',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPropertyGroupAnnot:','Uv::http://vivoweb.org/ontology#vitroPropertyGroupbibliographic:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int26:',1),('Uv::http://purl.org/ontology/bibo/edition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/edition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://purl.org/ontology/bibo/edition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/edition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#nameShortZH:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:154',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ontologyPrefixAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcore:',1),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workFax:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#workFax:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int61:',1),('Uv::http://vivoweb.org/ontology/core#workFax:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#workFax:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:155',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#dateTime:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://purl.org/ontology/bibo/gtin14:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://purl.org/ontology/bibo/gtin14:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/gtin14:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://purl.org/ontology/bibo/gtin14:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#codeUN:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcontributing participant in:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#contributingParticipantIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:156',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:157',1),('Uv::http://vivoweb.org/ontology/core#invitedStatus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcourses:',1),('Uv::http://vivoweb.org/ontology/core#listsCourse:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringplace:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/NET/c4dm/event.owl#place:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/status:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://purl.org/ontology/bibo/status:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:158',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altFirstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:159',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#buildingOnCampus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasSubjectArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse subject areas for controlled vocabulary terms:',1),('Uv::http://purl.org/ontology/bibo/abstract:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:160',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int51:',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#locationInformation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringaffiliate of:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:161',1),('Uv::http://vivoweb.org/ontology/core#affiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int32:',1),('Uv::http://vivoweb.org/ontology/core#orcidId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#outreachActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringattendee at:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#attendeeAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas center or institute:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdepartment within:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#departmentWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int39:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publishedInTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:162',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringresearchActivities:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:163',1),('Uv::http://vivoweb.org/ontology/core#researchActivities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#year:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprovides:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#provides:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/firstName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int31:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdegree recipient:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeRecipient:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab787776173:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:164',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceOfCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceOfCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringstateOrProvinceOfCounty:',1),('Uv::http://vivoweb.org/ontology/core#organizationRelatedActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int21:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcitationFormatPreferredBy:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#citationFormatPreferredBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn academic degree offered by an institution:',1),('Uv::http://vivoweb.org/ontology/core#issueOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#issueOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#issueOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringissue of:',1),('Uv::http://vivoweb.org/ontology/core#organizationalAffiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:165',1),('Uv::http://vivoweb.org/ontology/core#organizationalAffiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#organizationalAffiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#organizationalAffiliateOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringorganizational affiliate of:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#geographicallyContains:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#orgNameVariantFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#orgNameVariantFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinked member:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedMember:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasLab:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:166',1),('Uv::http://vivoweb.org/ontology/core#workEmail:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:167',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#researchFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:168',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#involvedOrganizationName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:169',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int35:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringin journal:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#publishedIn:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresenterAt:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenterAt:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelated activity:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedActivityOrEvent:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#titleOrRole:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#titleOrRole:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#titleOrRole:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#titleOrRole:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas college or school:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasCollegeOrSchool:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:170',1),('Uv::http://purl.org/ontology/bibo/issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/issue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:152',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#degreeCandidacy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:171',1),('Uv::http://vivoweb.org/ontology/core#addressLine1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressLine1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressLine1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressLine1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprimaryCourseDeveloper:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:144',1),('Uv::http://vivoweb.org/ontology/core#primaryCourseProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcourseDevelopedBy:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPrimaryProfessor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://www.w3.org/2004/02/skos/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://www.w3.org/2004/02/skos/core#editorOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnearestGeographicLocation:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#nearestGeographicLocation:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#yearMonth:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#date:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#institutionOfDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#institutionOfDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#institutionOfDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#institutionOfDegree:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countyWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#countyWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcountyWithinStateOrProvince:',1),('Uv::http://vivoweb.org/ontology/core#countyWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countyWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countyWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#labWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#labWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#middleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpresenter:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#presenter:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSmith, D.; Smith, Donald J.; Smith, D. J.:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:172',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#teachingFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:173',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringroom:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#containsRoom:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#activityDescriptionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#activityDescriptionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringactivityDescriptionFor:',1),('Uv::http://vivoweb.org/ontology/core#conferenceDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#conferenceDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#conferenceDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#conferenceDate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringoffered by:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeOfferedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcenter or institute within:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#centerOrInstituteWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:174',1),('Uv::http://vivoweb.org/ontology/core#teachingActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:67',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringinternationalActivityOf:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#internationalActivityOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasInternationalActivity:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasInternationalActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int29:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdivision within:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#divisionWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#containsBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#containsBuilding:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://purl.org/ontology/bibo/pageStart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:175',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:176',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcontributingActivity:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#contributingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#countryOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#countryOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#countryOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas city:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas issue:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasIssue:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#scopusId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:37',1),('Uv::http://vivoweb.org/ontology/core#researchActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#freetextKeyword:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int22:',1),('Uv::http://vivoweb.org/ontology/core#alternateTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#alternateTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#alternateTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#alternateTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasTeachingActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:177',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwithin county:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCounty:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:178',1),('Uv::http://vivoweb.org/ontology/core#associatedThesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#associatedThesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#associatedThesis:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringassociated thesis:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:179',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivityBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringaffiliate position for:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:102',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas department:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasDepartment:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/volume:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOrgNameVariant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpostal code:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:180',1),('Uv::http://vivoweb.org/ontology/core#hasPostalCode:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://purl.org/ontology/bibo/pageEnd:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int26:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprefersCitationFormat:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:181',1),('Uv::http://vivoweb.org/ontology/core#preferredCitationFormat:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas attendee:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAttendee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringmembership in:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasMembership:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:182',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#individualSortDirectionAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdesc:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprofessional affiliations:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleanfalse:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot:','Lr:179',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwithin country:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#autoLinkedToTab:','Uv::http://vivoweb.org/ontology#tab1777391077:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/number:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int18:',1),('Uv::http://vivoweb.org/ontology/core#hasResearchArea:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinctionFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:96',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas city or town:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countyOfMunicipality:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasOutreachActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://vivoweb.org/ontology/core#majorField:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int80:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://purl.org/ontology/bibo/prefixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#countryOfStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#countryOfStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#countryOfStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcountryOfStateOrProvince:',1),('Uv::http://vivoweb.org/ontology/core#outreachFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#outreachFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#outreachFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#outreachFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://vivoweb.org/ontology/core#preferredTitle:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:183',1),('Uv::http://vivoweb.org/ontology/core#awardOrDistinction:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int50:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int90:',1),('Uv::http://purl.org/ontology/bibo/suffixName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:184',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altMiddleName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:185',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas affiliate:',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:161',1),('Uv::http://vivoweb.org/ontology/core#hasAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinkedAdvisor:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:186',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#editor:',1),('Uv::http://vivoweb.org/ontology/core#altLastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:187',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprovided by:',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#providedBy:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:188',1),('Uv::http://vivoweb.org/ontology/core#hasInvestigator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:189',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int15:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrelated information resource:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:190',1),('Uv::http://vivoweb.org/ontology/core#relatedInformationResource:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:191',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#administrativeResponsibilities:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#publicDescriptionAnnot:','Lr:192',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadvisee role:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcollege or school within:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#collegeOrSchoolWithin:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:193',1),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:65',1),('Uv::http://vivoweb.org/ontology/core#hasDivision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasDivision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int29:',1),('Uv::http://vivoweb.org/ontology/core#hasDivision:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas division:',1),('Uv::http://vivoweb.org/ontology/core#addressLine3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressLine3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int3:',1),('Uv::http://vivoweb.org/ontology/core#addressLine3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressLine3:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#nameVariantFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#nameVariantFor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbrev:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbrev:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int11:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbrev:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeAbbrev:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int31:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringdegree granting organization:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#degreeGrantingOrganization:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#informationResourceInAuthorship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://xmlns.com/foaf/0.1/lastName:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringassociated degree:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#associatedDegreeAward:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhasActivityDescription:',1),('Uv::http://vivoweb.org/ontology/core#hasActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody:',1),('Uv::http://vivoweb.org/ontology/core#hasActivityDescription:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int25:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringotherProfessionalonGrant:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#relatedGrant:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwithin state or province:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot:','Lr:165',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int40:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas organizational affiliate:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasOrganizationalAffiliate:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int60:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceOfPopulatedPlace:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas city:',1),('Uv::http://vivoweb.org/ontology/core#researcherId:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int30:',1),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int35:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringhas article:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#hasPublishedPart:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#addressLine2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivoweb.org/ontology/core#addressLine2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int2:',1),('Uv::http://vivoweb.org/ontology/core#addressLine2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#addressLine2:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringgeographic focus:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#geographicFocus:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:194',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpostal code of:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#postalCodeLocationOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int70:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringstateOrProvinceWithinCountry:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int10:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#forceStubDeletionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadvisorInAdvisingRelationship:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#advisorInAdvisingRelationship:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayLimitAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int5:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRankAnnot:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int20:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#fullPropertyNameAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringlinked advisee:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#hiddenFromDisplayBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#offerCreateNewOptionAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#prohibitedFromUpdateBelowRoleLevelAnnot:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/role#public:',1),('Uv::http://vivoweb.org/ontology/core#linkedAdvisee:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#selectFromExistingAnnot:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortDef:','Lr:195',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',1),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',1),('Uv::http://vivoweb.org/ontology/core#DependentResource:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Class:',1),('Uv::http://vivoweb.org/ontology/core#DependentResource:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USDependent Resource:',1),('Uv::http://vivoweb.org/ontology/core#DependentResource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNepal:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCyprus:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGermany:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSenegal:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGerman_Democratic_Republic_the:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLuxembourg:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCEN-SAD:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuatemala:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Netherlands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCroatia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMauritania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFiji:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringYugoslavia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAndorra:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringViet Nam:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAlbania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBangladesh:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe United Republic of Tanzania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringItaly:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuyana:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCEMAC:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsouthern Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMicronesia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringYemen:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEl Salvador:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMexico:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEritrea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMorocco:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTajikistan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringHonduras:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Syrian Arab Republic:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCayman Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUnited States Virgin Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIceland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPolynesia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIGAD:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Lao People\'s Democratic Republic:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe United States of America:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSerbia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAsia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCentral Asia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNiue:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUzbekistan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTimor-Leste:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRwanda:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuinea-Bissau:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFAO:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMongolia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWAEMU:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringolder_Ethiopia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Sudan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBarbados:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCôte d\'Ivoire:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCape Verde:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAngola:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBrunei Darussalam:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNorway:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwestern Europe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCCASG:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSouth Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCosta Rica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBhutan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBrazil:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringmiddle Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDjibouti:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLithuania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGrenada:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRéunion:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMadagascar:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuam:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMyanmar:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPoland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Bahamas:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Cook Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBurundi:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaint Kitts and Nevis:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDominican Republic (the):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSamoa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFrench Polynesia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSwaziland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIsrael:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBurkina Faso:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Niger:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDominica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringHoly See:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSan Marino:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuinea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnorthern America:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSolomon Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsouth-eastern Asia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSerbia_and_Montenegro:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringHungary:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringVanuatu:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringOceania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCanada:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEuropean Union:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringChad:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEgypt:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAfghanistan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringArgentina:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCARICOM:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringECO:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUganda:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFrench Guiana:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSouth America:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUruguay:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRepublic of Moldova:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCuba:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLiechtenstein:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMali:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPapua New Guinea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTrinidad and Tobago:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringYemen:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeastern Europe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringVenezuela (Bolivarian Republic of):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsouthern Europe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSri Lanka:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGhana:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSIDS:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBolivia (Plurinational State of):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringJapan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringKazakhstan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAustralia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAmerican Samoa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIndonesia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTokelau:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMelanesia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMozambique:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPortugal:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTunisia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDemocratic_Yemen:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAustralia and New Zealand:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSlovakia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Republic of Korea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIndia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwestern Asia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCAN:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringQatar:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringZimbabwe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Philippines:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe former Yugoslav Republic of Macedonia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPalau:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnorthern Europe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEquatorial Guinea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNauru:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaudi Arabia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSADC:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSwitzerland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGibraltar:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBelize:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringECCAS:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLIFDCs:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBosnia and Herzegovina:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAmericas:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringArmenia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringKuwait:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFalkland Islands (Malvinas):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSuriname:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Comoros:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMalaysia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSeychelles:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaint Lucia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRomania:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringnorthern Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGeorgia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLatvia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAntarctica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPTA:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringJordan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBritish Virgin Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringcentral America:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWallis and Futuna Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLLDCs:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMartinique:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFrance:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringECOWAS:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBermuda:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLIFDCs:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringOman:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPuerto Rico:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMonaco:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMalta:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTurks and Caicos Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaint Pierre and Miquelon:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Democratic People\'s Republic of Korea:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNew Zealand:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Libyan Arab Jamahiriya:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMicronesia (Federated States of):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Gambia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBelgium:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTurkey:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCameroon:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBahrain:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIran (Islamic Republic of):',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLIFDCs:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTogo:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringParaguay:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringZambia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Democratic Republic of the Congo:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringKenya:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMauritius:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNicaragua:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTurkmenistan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSao Tome and Principe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringChile:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNigeria:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSpain:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe United Arab Emirates:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCAC:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFaroe Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringKiribati:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTonga:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Marshall Islands:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAfrica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPanama:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUkraine:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGreece:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNetherlands Antilles:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIraq:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeastern Asia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsouthern Asia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSierra Leone:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringKyrgyzstan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSweden:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEcuador:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringwestern Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNamibia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCARIFORUM:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBulgaria:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSocialist_Federal_Republic_of_Yugoslavia_the:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWorld:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLDCs:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPakistan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIreland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMontserrat:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLebanon:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMontenegro:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringJamaica:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLesotho:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFederal_Republic_of_Germany_the:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTuvalu:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFinland:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDenmark:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPIF:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringColombia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCzechslovakia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSingapore:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Czech Republic:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGuadeloupe:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaint Vincent and the Grenadines:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Central African Republic:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEstonia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringGabon:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAntigua and Barbuda:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEurope:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringeastern Africa:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSlovenia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAlgeria:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Congo:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCaribbean:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPeru:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBelarus:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUnion of Soviet Socialist Republics:',1),('Ur::1','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lr:196',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe Russian Federation:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLiberia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAzerbaijan:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThailand:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEthiopia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBenin:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCAEU:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCOMESA:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringHaiti:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMaldives:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAustria:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSAARC:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringChina:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBotswana:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMERCOSUR:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSaint Helena:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMalawi:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAMU:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAnguilla:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCambodia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSomalia:',1),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNew Caledonia:',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#ActivityDescription:',1),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customShortViewAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringserviceActivityShortView.jsp:',1),('Uv::http://vivoweb.org/ontology/core#professionalServiceActivity:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#customEntryFormAnnot:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpersonHasServiceActivity.jsp:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Portal:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#themeDir:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthemes/vivo-basic/:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USVIVO:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#aboutText:','Lr:197',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#flag1Filtering:','Lv:0:40:http://www.w3.org/2001/XMLSchema#booleantrue:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#imageThumbWidth:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int0:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#logotypeHeight:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int0:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#copyrightAnchor:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringVIVO Project:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#bannerWidth:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int0:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#rootTab:','Uv::http://vivo.mydomain.edu/individual/tab1:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#logotypeWidth:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int0:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#displayRank:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#bannerHeight:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int0:',1),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#shortHand:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringenabling national networking of scientists:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTab:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#AutoLinkableTab:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Tab:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#dayLimit:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int-1:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#tabBody:','Lr:198',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://www.w3.org/2000/01/rdf-schema#label:','Lv:5::en-USHome:',1),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#inPortal:','Uv::http://vivo.mydomain.edu/individual/portal1:',1); +/*!40000 ALTER TABLE `jena_g1t1_stmt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_g2t0_reif` +-- + +DROP TABLE IF EXISTS `jena_g2t0_reif`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g2t0_reif` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `GraphID` int(11) DEFAULT NULL, + `Stmt` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `HasType` char(1) NOT NULL, + UNIQUE KEY `jena_g2t0_reifXSTMT` (`Stmt`,`HasType`), + KEY `jena_g2t0_reifXSP` (`Subj`,`Prop`), + KEY `jena_g2t0_reifXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g2t0_reif` +-- + +LOCK TABLES `jena_g2t0_reif` WRITE; +/*!40000 ALTER TABLE `jena_g2t0_reif` DISABLE KEYS */; +/*!40000 ALTER TABLE `jena_g2t0_reif` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_g2t1_stmt` +-- + +DROP TABLE IF EXISTS `jena_g2t1_stmt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g2t1_stmt` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `GraphID` int(11) DEFAULT NULL, + KEY `jena_g2t1_stmtXSP` (`Subj`,`Prop`), + KEY `jena_g2t1_stmtXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g2t1_stmt` +-- + +LOCK TABLES `jena_g2t1_stmt` WRITE; +/*!40000 ALTER TABLE `jena_g2t1_stmt` DISABLE KEYS */; +INSERT INTO `jena_g2t1_stmt` VALUES ('Uv::http://www.w3.org/2004/02/skos/core#related:','Uv::http://www.w3.org/2002/07/owl#inverseOf:','Uv::http://www.w3.org/2004/02/skos/core#related:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#MixedTab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#MixedTab:',2),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:',2),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Software:',2),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Division:',2),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Chapter:',2),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Consortium:',2),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Exhibit:',2),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:',2),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#OutreachActivity:',2),('Uv::http://vivoweb.org/ontology/core#ConferenceSeries:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ConferenceSeries:',2),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:',2),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Facility:',2),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#FacultyMember:',2),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:',2),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Newsletter:',2),('Uv::http://purl.org/ontology/bibo/Letter:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Letter:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Keyword:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Keyword:',2),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Position:',2),('Uv::http://purl.org/ontology/bibo/BookSection:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/BookSection:',2),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Interview:',2),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Issue:',2),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Website:',2),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Program:',2),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:',2),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Department:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#County:',2),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#SeminarSeries:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTabContent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTabContent:',2),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#WorkshopSeries:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Subcollection:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Subcollection:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:',2),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#PrivateCompany:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#KeywordRelation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#KeywordRelation:',2),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#PostDoc:',2),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:',2),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Institute:',2),('Uv::http://purl.org/ontology/bibo/Statute:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Statute:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Portal:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Portal:',2),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AcademicYear:',2),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ServiceActivity:',2),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Service:',2),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#EducationalBackground:',2),('Uv::http://purl.org/ontology/bibo/Bill:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Bill:',2),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/CourtReporter:',2),('Uv::http://purl.org/ontology/bibo/Standard:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Standard:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:',2),('Uv::http://purl.org/ontology/bibo/Image:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Image:',2),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Center:',2),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:',2),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Series:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link:',2),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Catalog:',2),('Uv::http://vivoweb.org/ontology/core#Authorship:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Authorship:',2),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Database:',2),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/DocumentPart:',2),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Recognition:',2),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Institution:',2),('Uv::http://purl.org/ontology/bibo/Manuscript:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Manuscript:',2),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ReserachProposal:',2),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Committee:',2),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#SubjectArea:',2),('Uv::http://vivoweb.org/ontology/core#Location:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Hospital:',2),('Uv::http://vivoweb.org/ontology/core#DependentResource:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#affiliationVariant:',2),('Uv::http://purl.org/ontology/bibo/PersonalCommunicationDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/PersonalCommunicationDocument:',2),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#InternationalActivity:',2),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NGO:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:',2),('Uv::http://vivoweb.org/ontology/core#SubnationalRegion:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#SubnationalRegion:',2),('Uv::http://purl.org/ontology/bibo/Quote:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Quote:',2),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Team:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#TabIndividualRelation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#TabIndividualRelation:',2),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#FundingOrganization:',2),('Uv::http://purl.org/ontology/bibo/ReferenceSource:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/ReferenceSource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SubcollectionCategory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SubcollectionCategory:',2),('Uv::http://purl.org/ontology/bibo/LegalDecision:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/LegalDecision:',2),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Laboratory:',2),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#TimeInterval:',2),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ReviewArticle:',2),('Uv::http://vivoweb.org/ontology/core#Score:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Score:',2),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#WorkingPaper:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ConferencePoster:',2),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/LegalDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/LegalDocument:',2),('Uv::http://purl.org/ontology/bibo/CollectedDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/CollectedDocument:',2),('Uv::http://purl.org/ontology/bibo/Note:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Note:',2),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#EditorialArticle:',2),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CitationFormat:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:',2),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Seminar:',2),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Report:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:',2),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Patent:',2),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/AudioDocument:',2),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#USPostalAddress:',2),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/ThesisDegree:',2),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#MembershipActivity:',2),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Workshop:',2),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Course:',2),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Foundation:',2),('Uv::http://purl.org/ontology/bibo/Newspaper:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Newspaper:',2),('Uv::http://www.w3.org/2002/07/owl#Thing:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ManuallyLinkableTab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ManuallyLinkableTab:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:',2),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#GovernmentAgency:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTab:',2),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Book:',2),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#OfferedDegree:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:',2),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Librarian:',2),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/EditedBook:',2),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:',2),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CaseStudy:',2),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Association:',2),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Conference:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AcademicDepartment:',2),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CourseSection:',2),('Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://vivoweb.org/ontology/core#URLLinkType:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#URLLinkType:',2),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#BlogPosting:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Tab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Tab:',2),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Grant:',2),('Uv::http://purl.org/ontology/bibo/Slide:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Slide:',2),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NewsRelease:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#other:',2),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Thesis:',2),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#FacultyPosition:',2),('Uv::http://purl.org/ontology/bibo/Slideshow:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Slideshow:',2),('Uv::http://vivoweb.org/ontology/core#URLLink:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#URLLink:',2),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ActivityDescription:',2),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Review:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#StateOrProvince:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NonAcademic:',2),('Uv::http://purl.org/ontology/bibo/LegalCaseDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/LegalCaseDocument:',2),('Uv::http://vivoweb.org/ontology/core#Screenplay:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Screenplay:',2),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Activity:',2),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#TeachingActivity:',2),('Uv::http://vivoweb.org/ontology/core#TransnationalRegion:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#PopulatedPlace:',2),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:',2),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Equipment:',2),('Uv::http://purl.org/ontology/bibo/Periodical:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Periodical:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:',2),('Uv::http://purl.org/ontology/bibo/Performance:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Performance:',2),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NameVariant:',2),('Uv::http://purl.org/ontology/bibo/Brief:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Brief:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ConferencePresentation:',2),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ResearchActivity:',2),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#LibrarianPosition:',2),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#PresentationActivity:',2),('Uv::http://vivoweb.org/ontology/core#Continent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Continent:',2),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Code:',2),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:',2),('Uv::http://purl.org/ontology/bibo/Email:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Email:',2),('Uv::http://purl.org/ontology/bibo/Magazine:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Magazine:',2),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#StudentOrganization:',2),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Film:',2),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ConferencePaper:',2),('Uv::http://vivoweb.org/ontology/core#Campus:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Campus:',2),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AdvisingActivity:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Collection:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Collection:',2),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AcademicTerm:',2),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Publisher:',2),('Uv::http://vivoweb.org/ontology/core#Student:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Student:',2),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Library:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:',2),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#GraduateStudent:',2),('Uv::http://purl.org/ontology/bibo/DocumentStatus:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/DocumentStatus:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#organization:',2),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SecondaryTab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SecondaryTab:',2),('Uv::http://vivoweb.org/ontology/core#Blog:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Blog:',2),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Room:',2),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/PersonalCommunication:',2),('Uv::http://purl.org/ontology/bibo/Excerpt:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Excerpt:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:',2),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/AcademicArticle:',2),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/AudioVisualDocument:',2),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Talk:',2),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:',2),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#School:',2),('Uv::http://purl.org/ontology/bibo/Legislation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Legislation:',2),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://xmlns.com/foaf/0.1/Person:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:',2),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:',2),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Journal:',2),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#College:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:',2),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Museum:',2),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Article:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AcademicDegree:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#AutoLinkableTab:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#AutoLinkableTab:',2),('Uv::http://vivoweb.org/ontology/core#Translation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Translation:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:',2),('Uv::http://purl.org/ontology/bibo/Map:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Map:',2),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Webpage:',2),('Uv::http://vivoweb.org/ontology/core#EventSeries:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#EventSeries:',2),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Competition:',2),('Uv::http://purl.org/ontology/bibo/Manual:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Manual:',2),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#Address:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Address:',2),('Uv::http://vivoweb.org/ontology/core#Dataset:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Dataset:',2),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#ExtensionUnit:',2),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#University:',2),('Uv::http://xmlns.com/foaf/0.1/Image:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://xmlns.com/foaf/0.1/Image:',2),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Video:',2),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Hearing:',2),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#CoreLaboratory:',2),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#Building:',2),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://vivoweb.org/ontology/core#AcademicSemester:',2),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://purl.org/ontology/bibo/Proceedings:',2),('Uv::http://xmlns.com/foaf/0.1/Agent:','Uv::http://www.w3.org/2002/07/owl#equivalentClass:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#MixedTab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#ServiceLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Software:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Division:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/DocumentPart:',2),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Chapter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Consortium:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Exhibit:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#PostalCodeRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#OutreachActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ConferenceSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#ConferenceSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#SchoolWithinUniversity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Facility:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FacultyMember:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#AdvisingRelationship:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Newsletter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Letter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Letter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Letter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Keyword:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#Position:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/BookSection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/BookSection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/BookSection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Interview:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Issue:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Website:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Program:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#UniversityOrIndependentCollege:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Department:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#County:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#SeminarSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTabContent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#WorkshopSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Subcollection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#area:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PrivateCompany:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#special_group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#KeywordRelation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PostDoc:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#AdministrativeDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Institute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Statute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/LegalDocument:',2),('Uv::http://purl.org/ontology/bibo/Statute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Statute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Statute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Portal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#AcademicYear:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#ServiceActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Service:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#EducationalBackground:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Bill:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/LegalDocument:',2),('Uv::http://purl.org/ontology/bibo/Bill:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Bill:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Bill:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/CourtReporter:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Standard:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Standard:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/Image:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Center:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CenterOrInstitute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Series:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Catalog:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Authorship:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Database:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/DocumentPart:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#Recognition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Institution:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Manuscript:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Manuscript:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ReserachProposal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Committee:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#GeographicRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#SubjectArea:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Location:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Hospital:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#DependentResource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#affiliationVariant:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/PersonalCommunicationDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/PersonalCommunicationDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#InternationalActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NGO:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#disputed:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#SubnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#SubnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#SubnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/Quote:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Quote:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/DocumentPart:',2),('Uv::http://purl.org/ontology/bibo/Quote:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Quote:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Team:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#TabIndividualRelation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FundingOrganization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/ReferenceSource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/ReferenceSource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SubcollectionCategory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/LegalDecision:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/LegalDocument:',2),('Uv::http://purl.org/ontology/bibo/LegalDecision:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/LegalDecision:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/LegalDecision:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Laboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#TimeInterval:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ReviewArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Score:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Score:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#WorkingPaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePoster:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Image:',2),('Uv::http://vivoweb.org/ontology/core#InformationResource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/LegalDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/LegalDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/CollectedDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/CollectedDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Note:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Note:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#EditorialArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#CitationFormat:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#territory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FacultyAdministrativePosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#Seminar:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Report:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#non_self_governing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Patent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/AudioDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#USPostalAddress:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/ThesisDegree:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CollegeWithinUniversity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#MembershipActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Workshop:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Course:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Foundation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Newspaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://purl.org/ontology/bibo/Newspaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Newspaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ManuallyLinkableTab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#GovernmentAgency:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PrimaryTab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Book:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#OfferedDegree:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#group:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#economic_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/NET/c4dm/event.owl#Event:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Librarian:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/EditedBook:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#VocabularySourceReference:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CaseStudy:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Association:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Conference:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDepartment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#CourseSection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#URLLinkType:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#BlogPosting:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Tab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Grant:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Slide:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Slide:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Slide:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NewsRelease:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#other:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Thesis:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#FacultyPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://purl.org/ontology/bibo/Slideshow:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Slideshow:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#URLLink:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ActivityDescription:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Review:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#StateOrProvince:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademic:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/LegalCaseDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/LegalCaseDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/LegalCaseDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Screenplay:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Screenplay:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Activity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#TeachingActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#TransnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#TransnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#TransnationalRegion:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#PopulatedPlace:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#IndependentResearchInstitute:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Equipment:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Periodical:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Periodical:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Performance:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NameVariant:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Brief:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/LegalDocument:',2),('Uv::http://purl.org/ontology/bibo/Brief:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Brief:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Brief:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/NET/c4dm/event.owl#Event:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePresentation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#ResearchActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#LibrarianPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#PresentationActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Continent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#Continent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Continent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Continent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Code:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#AwardOrDistinction:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Email:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Email:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Email:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Magazine:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://purl.org/ontology/bibo/Magazine:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Magazine:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#StudentOrganization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Film:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://xmlns.com/foaf/0.1/Organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ConferencePaper:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Campus:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Campus:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Collection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AdvisingActivity:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Collection:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#AcademicTerm:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Publisher:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Student:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Student:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Library:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Country:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Person:',2),('Uv::http://vivoweb.org/ontology/core#GraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/DocumentStatus:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#organization:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#GeographicLocation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Person:',2),('Uv::http://vivoweb.org/ontology/core#UndergraduateStudent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#SecondaryTab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Blog:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://vivoweb.org/ontology/core#Blog:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Blog:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Room:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://purl.org/ontology/bibo/PersonalCommunication:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Excerpt:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Excerpt:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Excerpt:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NonFacultyAcademic:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/AcademicArticle:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/AudioVisualDocument:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#Talk:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#ResearchLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#School:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Legislation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Legislation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Legislation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://xmlns.com/foaf/0.1/Person:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#EmeritusProfessor:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Collection:',2),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Journal:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#College:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#NonAcademicPosition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#DependentResource:',2),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Museum:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Article:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#AcademicDegree:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#geographical_region:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#AutoLinkableTab:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Translation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Translation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Map:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Map:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Map:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Image:',2),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Webpage:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#EventSeries:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Competition:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Manual:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Manual:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://vivoweb.org/ontology/core#AbstractInformation:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Address:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Dataset:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#ExtensionUnit:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#University:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://xmlns.com/foaf/0.1/Image:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Video:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://purl.org/ontology/bibo/Hearing:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Organization:',2),('Uv::http://vivoweb.org/ontology/core#CoreLaboratory:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivoweb.org/ontology/core#Building:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#AbstractInformation:',2),('Uv::http://vivoweb.org/ontology/core#AcademicSemester:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://purl.org/ontology/bibo/Document:',2),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://purl.org/ontology/bibo/Proceedings:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://vivoweb.org/ontology/core#InformationResource:',2),('Uv::http://xmlns.com/foaf/0.1/Agent:','Uv::http://www.w3.org/2000/01/rdf-schema#subClassOf:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://www.w3.org/2002/07/owl#Thing:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Class:',2),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Class:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#area:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Location:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#territory:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivo.mydomain.edu/individual/portal1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://vivo.mydomain.edu/individual/tab1:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://www.w3.org/2002/07/owl#Thing:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://aims.fao.org/aos/geopolitical.owl#group:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeopoliticalEntity:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#TransnationalRegion:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#Country:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LLDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#AMU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECOWAS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEMAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARICOM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#middle_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CCASG:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#central_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#FAO_2006:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#ECO:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAEU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#MERCOSUR:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAN:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#COMESA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Caribbean:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#World:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#LIFDC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CARIFORUM:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SADC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PIF:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#EU:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEEAC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#northern_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#western_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#eastern_Asia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SAARC:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#southern_Europe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#SIDS:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#IGADD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#PTA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Americas:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#UEMOA:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oceania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#CEN_SAD:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Melanesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vivoweb.org/ontology/core#GeographicLocation:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mexico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahamas_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#American_Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Timor-Leste:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Senegal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zaire:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Costa_Rica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Romania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chad:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Viet_Nam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gibraltar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#El_Salvador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kazakhstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Peru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Somalia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Suriname:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Philippines__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yugoslavia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Haiti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kuwait:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brazil:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Norway:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Qatar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Holy_See:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liechtenstein:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cameroon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Morocco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Caledonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bermuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gabon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Samoa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Djibouti:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ghana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lesotho:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malta:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mauritius:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Swaziland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nicaragua:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uzbekistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malaysia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Luxembourg:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Denmark:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Palau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Spain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkmenistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Afghanistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Yemen_1990:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Switzerland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Gambia__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Argentina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jamaica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Honduras:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Maldives:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kiribati:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#India:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Croatia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Namibia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belgium:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#France:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Jordan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Grenada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Rwanda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Armenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uganda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Martinique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montenegro:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cyprus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iceland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belize:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Greece:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Seychelles:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Czechslovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Uruguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Benin:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Helena:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niue:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Venezuela:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tajikistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bhutan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Reunion:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Oman:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Liberia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovenia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nauru:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sweden:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ukraine:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Madagascar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Thailand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Monaco:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Botswana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nepal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Guiana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Portugal:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#China:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Estonia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Myanmar:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Belarus:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tokelau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Paraguay:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mali:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Nigeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Egypt:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Italy:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Albania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Anguilla:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Hungary:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bangladesh:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bolivia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Kenya:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cambodia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Iraq:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Georgia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Dominica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Azerbaijan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Pakistan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mozambique:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Niger_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Chile:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_States_of_America:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Germany:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tuvalu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Netherlands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Latvia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Fiji:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Mongolia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Vanuatu:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bahrain:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#San_Marino:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cuba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Panama:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Serbia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Poland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Singapore:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Ur::1','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lebanon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Montserrat:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Malawi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Bulgaria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zambia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ecuador:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guyana:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Algeria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Japan:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Antarctica:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Cape_Verde:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guadeloupe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Ireland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Colombia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tonga:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Congo_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Zimbabwe:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Togo:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Falkland_Is:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Slovakia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Comoros_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Tunisia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turkey:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Austria:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Indonesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Aruba:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Andorra:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Guatemala:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Lithuania:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Finland:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burundi:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#French_Polynesia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Angola:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#South_Africa:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Israel:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Sudan_the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Eritrea:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Australia:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#New_Zealand:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Canada:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2),('Uv::http://aims.fao.org/aos/geopolitical.owl#Barbados:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://xmlns.com/foaf/0.1/Agent:',2); +/*!40000 ALTER TABLE `jena_g2t1_stmt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_g3t0_reif` +-- + +DROP TABLE IF EXISTS `jena_g3t0_reif`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g3t0_reif` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `GraphID` int(11) DEFAULT NULL, + `Stmt` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `HasType` char(1) NOT NULL, + UNIQUE KEY `jena_g3t0_reifXSTMT` (`Stmt`,`HasType`), + KEY `jena_g3t0_reifXSP` (`Subj`,`Prop`), + KEY `jena_g3t0_reifXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g3t0_reif` +-- + +LOCK TABLES `jena_g3t0_reif` WRITE; +/*!40000 ALTER TABLE `jena_g3t0_reif` DISABLE KEYS */; +/*!40000 ALTER TABLE `jena_g3t0_reif` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_g3t1_stmt` +-- + +DROP TABLE IF EXISTS `jena_g3t1_stmt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_g3t1_stmt` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `GraphID` int(11) DEFAULT NULL, + KEY `jena_g3t1_stmtXSP` (`Subj`,`Prop`), + KEY `jena_g3t1_stmtXO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_g3t1_stmt` +-- + +LOCK TABLES `jena_g3t1_stmt` WRITE; +/*!40000 ALTER TABLE `jena_g3t1_stmt` DISABLE KEYS */; +INSERT INTO `jena_g3t1_stmt` VALUES ('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:',3),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#username:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtestAdmin:',3),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#md5password:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDC647EB65E6711E155375218212B3964:',3),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#roleURI:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrole:/50:',3),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#firstTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-03-09T16:06:45:',3),('Uv::http://vitro.mannlib.cornell.edu/ns/vitro/default#defaultAdminUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#loginCount:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#username:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringJoe User:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#md5password:','Lv:0:39:http://www.w3.org/2001/XMLSchema#string8A1A62B7B58B8B95564483BEA60CD99A:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#roleURI:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrole:/1:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#firstTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-03-09T16:06:45:',3),('Uv::http://vivo.mydomain.edu/individual/JoeUser:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#loginCount:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#username:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSally Editor:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#md5password:','Lv:0:39:http://www.w3.org/2001/XMLSchema#string8A1A62B7B58B8B95564483BEA60CD99A:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#roleURI:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrole:/4:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#firstTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-03-09T16:06:45:',3),('Uv::http://vivo.mydomain.edu/individual/SallyEditor:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#loginCount:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://www.w3.org/1999/02/22-rdf-syntax-ns#type:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#User:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#username:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringJohn Curator:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#md5password:','Lv:0:39:http://www.w3.org/2001/XMLSchema#string8A1A62B7B58B8B95564483BEA60CD99A:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#roleURI:','Lv:0:39:http://www.w3.org/2001/XMLSchema#stringrole:/5:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#firstTime:','Lv:0:41:http://www.w3.org/2001/XMLSchema#dateTime2010-03-09T16:06:45:',3),('Uv::http://vivo.mydomain.edu/individual/JohnCurator:','Uv::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#loginCount:','Lv:0:36:http://www.w3.org/2001/XMLSchema#int1:',3); +/*!40000 ALTER TABLE `jena_g3t1_stmt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_graph` +-- + +DROP TABLE IF EXISTS `jena_graph`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_graph` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Name` tinyblob, + PRIMARY KEY (`ID`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_graph` +-- + +LOCK TABLES `jena_graph` WRITE; +/*!40000 ALTER TABLE `jena_graph` DISABLE KEYS */; +INSERT INTO `jena_graph` VALUES (1,'http://vitro.mannlib.cornell.edu/default/vitro-kb-2'),(2,'http://vitro.mannlib.cornell.edu/default/vitro-kb-inf'),(3,'http://vitro.mannlib.cornell.edu/default/vitro-kb-userAccounts'); +/*!40000 ALTER TABLE `jena_graph` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_long_lit` +-- + +DROP TABLE IF EXISTS `jena_long_lit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_long_lit` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Head` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `ChkSum` bigint(20) DEFAULT NULL, + `Tail` mediumblob, + PRIMARY KEY (`ID`), + UNIQUE KEY `jena_XLIT` (`Head`,`ChkSum`) +) ENGINE=InnoDB AUTO_INCREMENT=199 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_long_lit` +-- + +LOCK TABLES `jena_long_lit` WRITE; +/*!40000 ALTER TABLE `jena_long_lit` DISABLE KEYS */; +INSERT INTO `jena_long_lit` VALUES (1,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringProperties included in VIVO core to support mappings:',3609857389,' to other ontologies'),(2,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringobscure bibontology properties not likely to be used:',3941250501,' in VIVO'),(3,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringreference information to online content, translation:',1011158423,'s, etc.'),(4,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAffiliations and other informal associations between:',2245669195,' people and organizations'),(5,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringproperties holding unique and non-unique identifiers:',710806772,', names, and other identification information'),(6,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAdministrative relationships including sponsorship, :',2844462598,'organization, and publicity'),(7,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsecondary properties of a bibliographic citation ind:',1991748423,'icating where to find it'),(8,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringsupplemental information not intended for public dis:',3804594899,'play (e.g, alternative name versions)'),(9,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringprimary bibliographic properties of publications to :',1442438914,'prioritize in display'),(10,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringbiographical information about a person, past or pre:',3133418153,'sent'),(11,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAppointments and other formally-defined employment r:',1676747141,'elationships'),(12,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBibliographic properties in other namespaces mapped :',2814803958,'within VIVO core'),(13,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn explicit individual academic term, quarter, or se:',3805980422,'mester (e.g., Fall 2009)'),(14,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when both year and month are known, but not day :',1387930270,'of the month or time'),(15,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn organized series of events, typically put on by a:',1760046318,' department or center; use Seminar for each individual talk'),(16,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAmerican Samoa; Anguilla; Aruba; Guadeloupe; Puerto :',561103573,'Rico; United States Virgin Islands'),(17,'Lv:0:39:http://www.w3.org/2001/XMLSchema#string\"The United Nations list of Non-Self-Governing Terri:',2307442562,'tories is a list of countries that, according to the United Nations, are non-decolonized.\" \"Decolonization can be achieved by attaining independence, integrating with the administering power or another state, or establishing a \"free association\" status\" - Source Wikipedia starting here http://en.wikipedia.org/wiki/United_Nations_list_of_Non-Self-Governing_Territories. (PM)'),(18,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCountries that, according to the United Nations, are:',592399245,' non-decolonized.'),(19,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease select or add the University or independent C:',2565633865,'ollege that granted this degree'),(20,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for time values independent of date; e.g., time :',545019637,'that a course section starts every day it is offered'),(21,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA position classified as professional, staff, suppor:',2211649698,'t, or any other non-academic role'),(22,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTerritories not belonging to self-governing, non-sel:',402973139,'f-governing, and disputed classes.'),(23,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort description taken from Wikipedia http://en.wik:',8630738,'ipedia.org/wiki/Geopolitical_ontology. (PM)'),(24,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCollaborator at Local University; Collaborator at co:',313265423,'nsortium institution'),(25,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn individual involved with the PI in the scientific:',3993332572,' development or execution of a project. The co-investigator (collaborator) may be employed by, or be affiliated with, the applicant/grantee organization or another organization participating in the project under a consortium agreement. A co-investigator typically devotes a specified percentage of time to the project and is considered “key personnel.” The designation of a co-investigator, if applicable, does not affect the PI’s roles and responsibilities. From Glossary of NIH Terms. (MT)'),(26,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIndividual designated by the grantee to direct the p:',4144612181,'roject or activity being supported by the grant. He or she is responsible and accountable to the grantee for the proper conduct of the project or activity. Also known as Program Director or Project Director.'),(27,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn outreach or community service activity directed o:',2323243260,'utside a person\'s primary profession and institution'),(28,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAdministrative Official reviews the grant applicatio:',2323805228,'n for accuracy before the signing official submits the final application. May be the same person as the signing official. Resides in either the central research administration office or academic departments. From the Glossary of NIH Terms. (MT)'),(29,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAdministrative official, central research administra:',1144182304,'tion office, or academic department contact'),(30,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn article of opinion, typically published in a news:',3408600138,'paper. For academics, most commonly Op Ed pieces'),(31,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWe can\'t yet assume that we will only have a single :',1125043606,'ORCID id for a person'),(32,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIndicate general availability or accessibility, not :',3132810390,'necessarily management or control'),(33,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFood and Agriculture Organization of the United Nati:',1901815975,'ons (FAO)'),(34,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort description take from Wikipedia http://en.wiki:',1154443726,'pedia.org/wiki/Geopolitical_ontology. (PM)'),(35,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIf applicable, please enter your preferred salutatio:',36445114,'n (e.g., Mr./Ms./Mrs./Dr./Hon.)'),(36,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for time independent of date, as for a repeating:',1273125167,' event'),(37,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for reviews, book chapters, or publications wher:',1375918294,'e no separate entry (individual resource) will be created for the related publication'),(38,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA person may at any one time have more than 1 resear:',863077884,'cher id due to a change in affliation; when the conflict is resolved, the old one should be deleted, but we can\'t treat this as a functional property'),(39,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA person not considered a faculty member but holding:',3023685907,' an academic appointment'),(40,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter \'true\' if the talk or presentation was referee:',817361994,'d prior to acceptance; enter \'false\' or leave blank if not refereed'),(41,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNo definition was found of this specific class. It\'s:',3410421373,' probably not meant for use in classifying areas. A subclass should be selected. (PM)'),(42,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA type of geopolitical area. Not meant for use. Use :',3956840736,'subclasses within.'),(43,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringFinancial assistance mechanism providing money, prop:',3226145010,'erty, or both to an eligible entity to carry out an approved project or activity'),(44,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort definition is from the Glossary of NIH Terms. :',1730660871,'Consider using Local Award ID data property for intramural (internal) grants and Sponsor Award ID for extramural (external) grants. (MT)'),(45,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn intramural or extramural award to support scholar:',1318862206,'ly work'),(46,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTotal pages: use start page and end page for page ra:',1721974253,'nges'),(47,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter the total number of pages -- use start :',1524576215,'page and end page to express a range'),(48,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter a whole number (between -2147483648 and:',504748360,' 2147483647)'),(49,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn individual collaborator who typically devotes a s:',1706771871,'pecified percentage of time to the project and is considered key personnel'),(50,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for teaching experiences other than specific for:',2227892257,'-credit courses within a person\'s home institution'),(51,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe period considered by an academic institution to :',3501300308,'be its primary academic cycle'),(52,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe ongoing concept of a course, typically then give:',2143222646,'n repeatedly in a specific semester as a Course Section'),(53,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNational Institutes of Health; Local University Smal:',3749839730,'l Grant Program'),(54,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPublic Description and Example entered by MT - delet:',1281036859,'e this entire Description after second review.'),(55,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA section of a Course taught by 1 or more people, in:',2831926908,' a semester, at a time, in a place'),(56,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA short written piece focused on an event or announc:',2190921948,'ement of note, having a defined publication time and of less enduring interest than a news feature.'),(57,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter your full official work email address t:',2823481667,'o be used for directory listings -- use alternate email for personal or other professional email addresses'),(58,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA group of independent organizations working togethe:',3779373395,'r toward a common goal.'),(59,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIntramural or extramural agency awarding the grant a:',1081534842,'nd providing money or property or both to the grant recipient'),(60,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA group of people organized for a specific purpose (:',2194246106,'e.g., a reporting or advisory role), often with a charge and for a specific duration'),(61,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThere could be many subclasses such as thesis commit:',2394005640,'tee or tenure committee, but these may typically be differentiated via the moniker unless distinct properties become important'),(62,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort description take from Wikipedia http://en.wiki:',2866702130,'pedia.org/wiki/Geopolitical_ontology. Example also take from this Wikipedia page. (PM)'),(63,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when a single year-month value is appropriate ra:',1303158982,'ther than a separate start and end'),(64,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA lab providing services such as training, protocols:',2619296096,', or access to instruments or software'),(65,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic class encompassing several types of activi:',2747332969,'ties frequently reported on CVs or in annual reporting systems'),(66,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA unit devoted primarily to extension activities, wh:',4024543338,'ether for outreach or research'),(67,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn award, honor, or distinction received by a person:',1732084980,' on a particular date (not the award itself as given repeatedly, and not a grant award)'),(68,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDistinct from the organization that runs it; e.g., a:',2728933986,' laboratory may be an organization but may be run by another organization and only consist of facilities housing equipment or services '),(69,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA building or place that provides a particular servi:',3114247000,'ce or is used for a particular activity'),(70,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThis property will normally be populated through aut:',484298672,'omated date ingest only.'),(71,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIndicate the source of flow-through funding, as for :',2150085889,'a subcontract.'),(72,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA short form for an academic degree for use in the c:',260637919,'oncatenated educational background listing for a person; hence declared functional even though there could be more than 1 degree abbreviation found or there could be alternative language formats'),(73,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter the single preferred abbreviation for this deg:',2372300569,'ree'),(74,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringOptionally link this activity with an information re:',2208164898,'source such as a publication, thesis, or the like'),(75,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn academic administrative position (associate dean,:',2366239724,' etc.) as distinct from a professional administrative position (non-academic)'),(76,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA person working in a position not considered to be :',2609830157,'an academic appointment'),(77,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn organizational unit (as opposed to the physical f:',3322271802,'acility) that performs research, provides services, or processes materials'),(78,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA location having stable coordinates in geographic s:',1885762340,'pace'),(79,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn activity of an individual within his or her profe:',1883867238,'ssion or institution; use outreach activity for community service or other activities outside the profession'),(80,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic parent for more explicit event end propert:',2903006881,'ies (year, year and month, date, or datetime)'),(81,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringequivalent to bibo:abstract; included for mapping pu:',3935200158,'rposes'),(82,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic parent property for more explicit start ti:',1344123434,'mes (e.g., year, year and month, date, or datetime)'),(83,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter a number only (1-whatever) reflecting the orde:',3980261974,'r of this author in the publication'),(84,'Lv:0:39:http://www.w3.org/2001/XMLSchema#string\"This property is for a plain-text rendering of the :',1716778486,'content of a Document. While the plain-text content of an entire document could be described by this property.\" '),(85,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIf applicable, please enter your preferred name suff:',1090592036,'ix (e.g., Jr./III/M.D.)'),(86,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for current semester course section teaching onl:',4225443349,'y'),(87,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLeast developed countries (LDC); Low income and food:',1520424731,' deficit countries (LIFDC); World'),(88,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort definition take from Wikipedia http://en.wikip:',3081691029,'edia.org/wiki/Geopolitical_ontology. (PM)'),(89,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe concept name, URL, and source vocabulary name of:',11560151,' a Subject Area'),(90,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA uniform resource identifier, as distinct from a UR:',1453502829,'L that will return a web page; should be unique'),(91,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAfrica; Americas; Asia; Caribbean; Polynesia; Middle:',3364906300,' Africa; Northern America; Southern Asia'),(92,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringDigital Object Identif:',1812134535,'ier'),(93,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringInformation (typically not physical in nature) and n:',3220365273,'ot used for primary display, but instead contributing to the primary display of people, events, and other top level classes and their subclasses'),(94,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn activity explicitly international in nature, typi:',1596781696,'cally involving collaboration, informal or formal agreements for ongoing overseas work, and special expertise in the international domain involved'),(95,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringBrowsing structure this ontology can be found here: :',1347861709,'http://www.fao.org/countryprofiles/geopol_v10/index.html. (PM)'),(96,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn article reviewing one or more other information r:',3291980886,'esources (a book, one or more other articles, movies, etc)'),(97,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for issue number; Bibontology models Issues as i:',1967490314,'ndividuals so we do not use their issue number property'),(98,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA primary academic unit within a University or a fre:',2423967621,'e-standing higher education organization without graduate degree programs'),(99,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort Definition entered by MT - delete this entire :',1384006448,'Description after second review.'),(100,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPublic Description entered by MT - delete this entir:',165493686,'e Description after second review.'),(101,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringInvestigators who are not principal investigators or:',2762702766,' co-principal investigators'),(102,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe activity of a professor advising a student, typi:',467382259,'cally including start and end date and the title of the student\'s project or thesis work'),(103,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter a short narrative summary to be used as:',612670201,' a single overview statement in directory listing and other settings where more detailed information will not be includ'),(104,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA single XML literal, optionally including XHTML for:',3951478544,'matting, used as a short bio or overview statement for a person or organization.'),(105,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAgency, entity or individual awarding the sub-contra:',1482792894,'ct'),(106,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPreferred or most certain version of the first name :',831529268,'of a person; use altFirstName for alternative version(s)'),(107,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter your first name (or initial, if you pre:',3152291688,'fer to use your middle name). Use the form you list when submitting a paper for publication.'),(108,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA regularly offered service in support of an academi:',931312525,'c, research, or administrative function (not personal or professional service by an individual)'),(109,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA parent property for institutional and other identi:',3707478304,'fiers, which should themselves be entered as child data properties, normally in the namespace of the local institution. Publication-related identifiers (e.g., Pubmed id) should be children of the bibo:identifier property'),(110,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse subject areas for controlled vocabulary terms; L:',1931837019,'ocal University may use internal or external vocabularies or both'),(111,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIntended for a free-text keyword where no instance f:',473044270,'rom a controlled vocabulary can be identified; this accommodates existing data and the likelihood that individual people will want to nuance their work'),(112,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringa paper presented at a conference; optionally collec:',4289421518,'ted into a Proceedings or a special Journal issue'),(113,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUsually issued periodically, prepared by or for a gr:',1577197480,'oup or institution to present information to a specific audience, often also made available to the press and public.'),(114,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn informal organization brought together for the pu:',2094842974,'rposes of a project or event'),(115,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA Cornell graduate field (http://vivo.cornell.edu/in:',1608288734,'dex.jsp?home=65535&collection=820)'),(116,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn ongoing academic initiative not formalized with d:',1167164314,'epartment or division status'),(117,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIf applicable, enter a preferred version of your wor:',1438425193,'king title here; it will replace the current working title imported from the Human Reources system. Note that if your title changes, you will have to come back and change your preferred title here.'),(118,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringTo be used as a way for individuals to override the :',3009472608,'working title populated by the HR system at any institution'),(119,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA Person holding an academic employment appointment :',2897966031,'focused on research rather than teaching; temporary (or for some defined term)'),(120,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringShort Description take from Wikipedia http://en.wiki:',1154443726,'pedia.org/wiki/Geopolitical_ontology. (PM)'),(121,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAfghanistan; Antigua and Barbuda; Cameroon; Iceland;:',1424417839,' Jamaica; Nigeria; United States of America'),(122,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn activity involving research (funded or unfunded),:',492001498,' only sometimes linked to a grant'),(123,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA proposal for a research grant that has been submit:',3772086041,'ted but not approved; does not represent an existing activity'),(124,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCollection of documents or information resources tha:',1891800261,'t have a unified identity'),(125,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCollection of documents or information resources tha:',2832205544,'t have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Alson includes collections of resources bundled into a license. (MT)'),(126,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringArchived collection of personal papers by a specific:',2075165875,' author; licensed collection of e-books'),(127,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNOTE: until custom forms have been developed, we str:',2018817745,'ongly recommend creating the publication first, and linking back to the author from the publication. See adding new publications documentation on http://www.vivoweb.org'),(128,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringan academic degree at any level, both as reported by:',2317999022,' individuals for employment and as offered by academic degree programs'),(129,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringArab Maghreb Union (AMU); Central American Council o:',369044729,'f Agriculture (CAC); Caribbean Community and Common Market (CARICOM)'),(130,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringRecorded audio in any format (e.g., phonograph recor:',2865699901,'d, tape, CD, DVD, DAT)'),(131,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe preferred or most likely correct version of the :',1697211746,'last name of a person; use altLastName for other possible versions or misspellings'),(132,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter your last name as you list it when subm:',2217987779,'itting papers for publication.'),(133,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringProgrammatic activities specified or described in a :',2490965125,'grant application and approved for funding'),(134,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPublic Description from Glossary of NIH Terms, Grant:',2942544949,'-Supported Project Activities. Examples from IRIS grants database, menu of Activities Supported. (MT)'),(135,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringResearch; Training; Use of Equipment; Travel; Perfor:',1033901023,'mance; Exhibit; Collaborative Activity; Training; Postdoctoral Support; Publication; Translation'),(136,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringResearcher, Academic Extension Associate, Postdoctor:',1508960562,'al Associate or other position'),(137,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringInformation about the speaker/presenter, including t:',907931739,'he name if no link to the person\'s VIVO entry can be made (e.g., for outside speakers)'),(138,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWork phone number, with area code (and country code :',1335342340,'if outside U.S. and Canada)'),(139,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter your complete phone number, with countr:',3606592747,'y code if outside the U.S. and Canada'),(140,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringWith different affiliations, a person may have more :',3697701198,'than 1 Scopus id'),(141,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA laboratory that exists primarily to conduct resear:',1104445512,'ch vs. to provide services'),(142,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn Institute normally has a research focus but may a:',3903149336,'lso fulfill instructional or outreach roles'),(143,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic notion of the single time of an event (a y:',1822829413,'ear, year and month, date, or datetime)'),(144,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for the course developer (and normally lead inst:',1738668946,'ructor) having ongoing responsibility for the course over many terms, quarters, or semesters'),(145,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe digital file (or physical equivalent), if availa:',3662062529,'ble after the conference, vs. the act of attending/presenting: use ConferencePresentation for information about date/time/location/name of the event where the poster was presented'),(146,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter your middle name(s) or initial(s) as yo:',1672949604,'u normally identify yourself, especially as the author of a publication'),(147,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringpreferred, primary, or most likely middle name or in:',1710576242,'itial; use altMiddleName for alternative version(s)'),(148,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn organized series of workshop events, whether repe:',1218959744,'titions of one workshop or multiple different workshops; use Workshop for individual events'),(149,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn arbitrary classification of a space/time region, :',3646963338,'by a cognitive agent.'),(150,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn event may have actively participating agents, pas:',1045492158,'sive factors, products, and a location in space/time.'),(151,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSelect the most appropriate degree type the advisee :',2848081047,'is seeking'),(152,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA talk, poster presentation, or demo at a conference:',3148415997,'; use Conference Paper or Conference Poster for the product of the talk'),(153,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when a date doesn\'t signify a start date or end :',1766307293,'date, as with an award; can also be used when multiple independent dates are relevant'),(154,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA generic type field, optionally used via a restrict:',960531506,'ion on a class when no subclass is needed and moniker or title does not provide enough distinction'),(155,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when a single date and time is appropriate vs. a:',2974659655,' start date and time and end date and time, or when multiple dates and times are relevant'),(156,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringtrue for an invited presentation; assumed false if b:',952092745,'lank'),(157,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringEnter \'true\' for an invited talk or presentation; le:',11240670,'ave blank or enter \'false\' otherwise'),(158,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAlternate versions of a person\'s first name or initi:',3482511601,'al - 1 per entry - to assist in name disambiguation'),(159,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter alternative first name forms encountere:',2102878360,'d for this person; use foaf:firstName for what is considered the preferred or definitive first name'),(160,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAdditional information about the location, including:',2143505728,' the name if no appropriate \"nearest known geographic location\" VIVO entry is available'),(161,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for (primarily) unpaid affiliations not consider:',565596913,'ed employment in the applicable HR system'),(162,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse when no separate entry (individual resource) wil:',1159409986,'l be created for the publication venue'),(163,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for general research activities other than on sp:',830837816,'onsored research projects where this person is PI or co-PI, or for un-funded research'),(164,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA center or institute within a University, School or:',2493846478,' College, Government Agency, Foundation, or other Organization'),(165,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringCould perhaps be symmetric, but sometimes organizati:',3372591445,'ons don\'t see affiliations mutually'),(166,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA legally-defined independent organization (not part:',2062239243,' of another organization), typically non-profit'),(167,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA narrative description of current research; use the:',2859045312,' research areas property to link a person with specific topics, subjects, or controlled vocabulary terms'),(168,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringOne of several conventions for formatting publicatio:',4062615727,'n citations, used to allow authors to control how pubs appear in their own VIVO pages'),(169,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringSpecify to desired level the organization or organiz:',2038143228,'ed activity involved; then link, if appropriate, to the related organization using the \"related organization\" property'),(170,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringissue number as a text string; if issues are to be e:',1804593058,'ntered as individuals, create an issue object property'),(171,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringThe geographic area constituting a postal code -- ca:',4044456482,'n be a building or other non-unique geographical region'),(172,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA name form used by an author on 1 or more publicati:',2394436512,'ons'),(173,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for a general statement of teaching philosophy a:',603602965,'nd goals or for a single summary of teaching; use teaching activities to list past courses, non-credit teaching, or new courses under development individually.'),(174,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA primary academic unit within a University; use Uni:',3069277977,'versity or Independent College for free-standing organizations'),(175,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse the full string as the label; optionally parse o:',432966498,'ut and populate zip code to facilitate disambiguation of organization/department names'),(176,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn organization name, usually including some additio:',1370515654,'nal address information, used as an affiliation string in 1 or more publication databases'),(177,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for non-credit teaching, new courses under devel:',2413009936,'opment, past courses not listed or linked to individually, and the like.'),(178,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn activity oriented outside a person\'s primary prof:',682401879,'ession and institution'),(179,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringadjust relationships when a person is primary in ano:',636401758,'ther department, affiliations to centers'),(180,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease add a postal code, if appropriate, for direct:',3106406084,' geographic tagging of this individual resource. Use the \"nearest known geographic location\" to link resources to rooms, buildings, towns or cities, states, or countries depending on how much information is known about the resource location.'),(181,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringIf desired, select the preferred citation display fo:',60138827,'rmat for the related publication'),(182,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for current positions or roles other than the pe:',2106751738,'rson\'s primary employment, typically inside the person\'s primary organization (in contrast to professional service roles outside the primary organization)'),(183,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn individual academic semester (e.g., Fall 2009) ra:',3219720176,'ther than the generic fall, spring, or summer semester'),(184,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAlternative version of middle name or initial -- 1 p:',2058052987,'er entry -- to assist in name disambiguation'),(185,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter 1 alternative version of this person\'s :',2047167969,'middle name or initial per entry'),(186,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAlternate version or spelling of a person\'s last nam:',2731506,'e - 1 per entry - for use in name disambiguation'),(187,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease enter alternate forms or spellings of this pe:',1454283933,'rson\'s last name - 1 per entry; use foaf:lastName for the preferred/definitive form'),(188,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringMembership in a professional society or other organi:',1411198378,'zation'),(189,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringUse for investigators who are not principal investig:',4254025216,'ators or co-principal investigators'),(190,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA property to link an activity or award with a perio:',1326474111,'dical, collection, blog, or online resource as the beneficiary of the activity'),(191,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringNarrative description of administrative responsibili:',730149004,'ties such as project leadership, committee chairmanship (if not listed as professional service)'),(192,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringPlease provide a short summary of your admini:',2153920922,'strative responsibilities, especially as relevant to research or teaching'),(193,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringAn institute or center operating independenty rather:',3168708689,' than within a University, Government Agency, Foundation, or Corporation'),(194,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringA lab as an organational unit, in this case offering:',245792919,' one or more services available to those beyond its immediate membership'),(195,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringLaboratory as an organizational unit rather than a p:',996673776,'hysical facility'),(196,'Lv:0:39:http://www.w3.org/2001/XMLSchema#stringthe United Kingdom of Great Britain and Northern Ire:',2818627032,'land'),(197,'Lv:0:39:http://www.w3.org/2001/XMLSchema#string

The VIVO National Network enables the discovery o:',2032005026,'f researchers across institutions. Participants in the network include institutions with local installations of VIVO or those with research discovery and profiling applications that can provide semantic web-compliant data. The information accessible through VIVO\'s search and browse capability will therefore reside and be controlled locally, within institutional VIVOs or other semantic web-compliant applications.

\n\n\n\n

VIVO is an open source semantic web application originally developed and implemented at Cornell. When installed and populated with content at an institution, it enables the discovery of research and scholarship across disciplines at that institution. VIVO supports browsing and a search function which returns faceted results for rapid retrieval of desired information. Content in any local VIVO installation may be maintained manually or brought into the database in automated ways from local systems of record, such as HR, grants, course, and faculty activity databases.

\n\n\n\n

See more information on the VIVO Project.

'),(198,'Lv:0:39:http://www.w3.org/2001/XMLSchema#string

Welcome! You have successfully installed VIVO!\n\n

Your next step is to login and change your password. You can find the login link in the header on the right above.

\n\n

Please see the VIVO User Guide for help. The user guide includes information on Site Administration. You may want to read about the Site Configuration topics next:

\n'); +/*!40000 ALTER TABLE `jena_long_lit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_long_uri` +-- + +DROP TABLE IF EXISTS `jena_long_uri`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_long_uri` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Head` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `ChkSum` bigint(20) DEFAULT NULL, + `Tail` mediumblob, + PRIMARY KEY (`ID`), + UNIQUE KEY `jena_XURI` (`Head`,`ChkSum`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_long_uri` +-- + +LOCK TABLES `jena_long_uri` WRITE; +/*!40000 ALTER TABLE `jena_long_uri` DISABLE KEYS */; +INSERT INTO `jena_long_uri` VALUES (1,'Uv:http://aims.fao.org/aos/geopolitical.owl#United_Kingdom_of_Great_Britain_and_Northern_Ireland__t:',3508889223,'he'); +/*!40000 ALTER TABLE `jena_long_uri` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_prefix` +-- + +DROP TABLE IF EXISTS `jena_prefix`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_prefix` ( + `ID` int(11) NOT NULL AUTO_INCREMENT, + `Head` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `ChkSum` bigint(20) DEFAULT NULL, + `Tail` mediumblob, + PRIMARY KEY (`ID`), + UNIQUE KEY `jena_XBND` (`Head`,`ChkSum`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_prefix` +-- + +LOCK TABLES `jena_prefix` WRITE; +/*!40000 ALTER TABLE `jena_prefix` DISABLE KEYS */; +/*!40000 ALTER TABLE `jena_prefix` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jena_sys_stmt` +-- + +DROP TABLE IF EXISTS `jena_sys_stmt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `jena_sys_stmt` ( + `Subj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Prop` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Obj` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `GraphID` int(11) DEFAULT NULL, + KEY `jena_XSP` (`Subj`,`Prop`), + KEY `jena_XO` (`Obj`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jena_sys_stmt` +-- + +LOCK TABLES `jena_sys_stmt` WRITE; +/*!40000 ALTER TABLE `jena_sys_stmt` DISABLE KEYS */; +INSERT INTO `jena_sys_stmt` VALUES ('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#EngineType:','Lv:0::MySQL:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#DriverVersion:','Lv:0::2.0alpha:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#LayoutVersion:','Lv:0::2.0:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#FormatDate:','Lv:0::20100325T214822Z:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#LongObjectLength:','Lv:0::100:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#IndexKeyLength:','Lv:0::100:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#IsTransactionDb:','Lv:0::true:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#DoCompressURI:','Lv:0::false:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#CompressURILength:','Lv:0::100:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#TableNamePrefix:','Lv:0::jena_:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffc:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphName:','Lv:0::JENA_DEFAULT_GRAPH_PROPERTIES:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffc:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphType:','Lv:0::generic:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffc:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphId:','Lv:0::0:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphName:','Lv:0::http://vitro.mannlib.cornell.edu/default/vitro-kb-2:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphType:','Lv:0::generic:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphId:','Lv:0::1:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#StmtTable:','Lv:0::jena_g1t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#ReifTable:','Lv:0::jena_g1t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#Graph:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffa:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7ff9:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffa:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_ReifStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffa:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g1t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff8:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-2_REIFIER:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff8:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraphReifier_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff8:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffa:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff8:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff7:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7ff6:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff7:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff7:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g1t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff5:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-2:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff5:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraph_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff5:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff7:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ff5:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7ff4:',0),('Bv::752b1d02:127974c1b47:-7ff4:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/1999/02/22-rdf-syntax-ns#:',0),('Bv::752b1d02:127974c1b47:-7ff4:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::rdf:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7ff3:',0),('Bv::752b1d02:127974c1b47:-7ff3:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vivo.library.cornell.edu/ns/0.1#:',0),('Bv::752b1d02:127974c1b47:-7ff3:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::vivo:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7ff2:',0),('Bv::752b1d02:127974c1b47:-7ff2:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2002/07/owl#:',0),('Bv::752b1d02:127974c1b47:-7ff2:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::owl:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7ff1:',0),('Bv::752b1d02:127974c1b47:-7ff1:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2001/XMLSchema#:',0),('Bv::752b1d02:127974c1b47:-7ff1:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::xsd:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7ff0:',0),('Bv::752b1d02:127974c1b47:-7ff0:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2003/11/swrl#:',0),('Bv::752b1d02:127974c1b47:-7ff0:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::swrl:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fef:',0),('Bv::752b1d02:127974c1b47:-7fef:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2003/11/swrlb#:',0),('Bv::752b1d02:127974c1b47:-7fef:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::swrlb:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fee:',0),('Bv::752b1d02:127974c1b47:-7fee:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#:',0),('Bv::752b1d02:127974c1b47:-7fee:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::vitro:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fed:',0),('Bv::752b1d02:127974c1b47:-7fed:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2000/01/rdf-schema#:',0),('Bv::752b1d02:127974c1b47:-7fed:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::rdfs:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fec:',0),('Bv::752b1d02:127974c1b47:-7fec:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#:',0),('Bv::752b1d02:127974c1b47:-7fec:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::j.0:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffb:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7feb:',0),('Bv::752b1d02:127974c1b47:-7feb:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vivoweb.org/ontology/core#:',0),('Bv::752b1d02:127974c1b47:-7feb:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::core:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphName:','Lv:0::http://vitro.mannlib.cornell.edu/default/vitro-kb-inf:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphType:','Lv:0::generic:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphId:','Lv:0::2:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#StmtTable:','Lv:0::jena_g2t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#ReifTable:','Lv:0::jena_g2t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#Graph:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe9:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7fe8:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe9:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_ReifStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe9:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g2t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe7:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-inf_REIFIER:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe7:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraphReifier_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe7:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe9:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe7:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe6:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7fe5:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe6:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe6:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g2t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe4:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-inf:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe4:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraph_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe4:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe6:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fea:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe4:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphName:','Lv:0::http://vitro.mannlib.cornell.edu/default/vitro-kb-userAccounts:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphType:','Lv:0::generic:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphId:','Lv:0::3:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#StmtTable:','Lv:0::jena_g3t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#ReifTable:','Lv:0::jena_g3t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7ffd:','Uv::http://jena.hpl.hp.com/2003/04/DB#Graph:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe2:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7fe1:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe2:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_ReifStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe2:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g3t0_reif:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe0:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-userAccounts_REIFIER:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe0:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraphReifier_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe0:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe2:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe0:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdf:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetName:','Lv:0::128_253_87_25752b1d02_127974c1b47__7fde:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdf:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetType:','Lv:0::com.hp.hpl.jena.db.impl.PSet_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdf:','Uv::http://jena.hpl.hp.com/2003/04/DB#PSetTable:','Lv:0::jena_g3t1_stmt:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdd:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetName:','Lv:0::LSET_http://vitro.mannlib.cornell.edu/default/vitro-kb-userAccounts:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdd:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetType:','Lv:0::com.hp.hpl.jena.db.impl.SpecializedGraph_TripleStore_RDB:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdd:','Uv::http://jena.hpl.hp.com/2003/04/DB#LSetPSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdf:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphLSet:','Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fdd:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fdc:',0),('Bv::752b1d02:127974c1b47:-7fdc:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/1999/02/22-rdf-syntax-ns#:',0),('Bv::752b1d02:127974c1b47:-7fdc:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::rdf:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fdb:',0),('Bv::752b1d02:127974c1b47:-7fdb:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2000/01/rdf-schema#:',0),('Bv::752b1d02:127974c1b47:-7fdb:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::rdfs:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fda:',0),('Bv::752b1d02:127974c1b47:-7fda:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://www.w3.org/2002/07/owl#:',0),('Bv::752b1d02:127974c1b47:-7fda:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::owl:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fd9:',0),('Bv::752b1d02:127974c1b47:-7fd9:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vitro.mannlib.cornell.edu/ns/vitro/0.7#:',0),('Bv::752b1d02:127974c1b47:-7fd9:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0::vitro:',0),('Uv::http://jena.hpl.hp.com/2003/04/DB#128_253_87_25752b1d02_127974c1b47__7fe3:','Uv::http://jena.hpl.hp.com/2003/04/DB#GraphPrefix:','Bv::752b1d02:127974c1b47:-7fd8:',0),('Bv::752b1d02:127974c1b47:-7fd8:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixURI:','Lv:0::http://vitro.mannlib.cornell.edu/ns/vitro/default#:',0),('Bv::752b1d02:127974c1b47:-7fd8:','Uv::http://jena.hpl.hp.com/2003/04/DB#PrefixValue:','Lv:0:::',0); +/*!40000 ALTER TABLE `jena_sys_stmt` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2010-03-25 18:06:39