From 673c496f7f5b752ca92f7ccbe43b163b2ea3db76 Mon Sep 17 00:00:00 2001 From: mtrekels Date: Fri, 4 Aug 2023 14:41:25 +0200 Subject: [PATCH] adding sql dump to repository --- data/df_inventory.sql | 386 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 386 insertions(+) create mode 100644 data/df_inventory.sql diff --git a/data/df_inventory.sql b/data/df_inventory.sql new file mode 100644 index 0000000..ea2902e --- /dev/null +++ b/data/df_inventory.sql @@ -0,0 +1,386 @@ +-- MySQL dump 10.13 Distrib 8.0.27, for Linux (x86_64) +-- +-- Host: localhost Database: df_inventory_final +-- ------------------------------------------------------ +-- Server version 8.0.27 + +/*!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 */; +/*!50503 SET NAMES utf8mb4 */; +/*!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 */; + +-- +-- Current Database: `df_inventory_final` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `df_inventory_final` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */; + +USE `df_inventory_final`; + +-- +-- Table structure for table `contactdetail` +-- + +DROP TABLE IF EXISTS `contactdetail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `contactdetail` ( + `id` int NOT NULL, + `contactDetailCategory` varchar(45) DEFAULT NULL, + `contactDetailValue` varchar(45) DEFAULT NULL, + `ofPerson` int NOT NULL, + PRIMARY KEY (`id`), + KEY `fk_contactDetail_person1_idx` (`ofPerson`), + CONSTRAINT `fk_contactDetail_person1` FOREIGN KEY (`ofPerson`) REFERENCES `person` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contactdetail` +-- + +LOCK TABLES `contactdetail` WRITE; +/*!40000 ALTER TABLE `contactdetail` DISABLE KEYS */; +INSERT INTO `contactdetail` VALUES (1,'email','hans.beeckman@africamuseum.be',1),(2,'email','didier.van.den.spiegel@africamuseum.be',2),(3,'email','nathalie.smitz@africamuseum.be',3),(4,'email','infrastructure@vliz.be',4),(5,'email','curator@plantentuinmeise.be',5),(6,'email','elke.bellefroid@plantentuinmeise.be',6),(7,'email','filip.vandelook@plantentuinmeise.be',7),(8,'email','karen.bekaert@ilvo.vlaanderen.be',8),(9,'email','bart.cottyn@ilvo.vlaanderen.be',9),(10,'email','sofie.derycke@ilvo.vlaanderen.be',10),(11,'email','lieven.waeyenberghe@ilvo.vlaanderen.be',11),(12,'email','jan.wittoeck@ilvo.vlaanderen.be',12),(13,'email','bavo.dewitte@ilvo.vlaanderen.be',13),(14,'email','kris.vanpoucke@ilvo.vlaanderen.be',14),(15,'email','ann.vanhee@ilvo.vlaanderen.be ',15),(16,'email','evelien.calsyn@ilvo.vlaanderen.be',16),(17,'email','tommy.dhose@ilvo.vlaanderen.be',17),(18,'email','nicole.viaene@ilvo.vlaanderen.be',18),(19,'email','tim.vleugels@ilvo.vlaanderen.be',19),(20,'email','Kris.DeJonghe@ilvo.vlaanderen.be',20),(21,'email','johan.witter@ilvo.vlaanderen.be',21),(22,'email','jane.debode@ilvo.vlaanderen.be',22); +/*!40000 ALTER TABLE `contactdetail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ecologicalcontext` +-- + +DROP TABLE IF EXISTS `ecologicalcontext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ecologicalcontext` ( + `id` int NOT NULL, + `biomeType` varchar(255) DEFAULT NULL, + `biogeographicRealm` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ecologicalcontext` +-- + +LOCK TABLES `ecologicalcontext` WRITE; +/*!40000 ALTER TABLE `ecologicalcontext` DISABLE KEYS */; +INSERT INTO `ecologicalcontext` VALUES (1,'ALL REGIONS (TOTAL)','Africa'),(2,'FRESHWATER','Antarctica '),(3,'FRESHWATER','Asia Temperate'),(4,'FRESHWATER','Asia Tropical'),(5,'FRESHWATER','Australasia'),(6,'FRESHWATER','Europe'),(7,'FRESHWATER','North America'),(8,'FRESHWATER','Pacific '),(9,'FRESHWATER','South America '),(10,'FRESHWATER','World/NA'),(11,'FRESHWATER','Unknown'),(12,'REGION UNKNOWN','Africa'),(13,'TERRESTRIAL','Antarctica '),(14,'TERRESTRIAL','Asia Temperate'),(15,'TERRESTRIAL','Asia Tropical'),(16,'TERRESTRIAL','Australasia'),(17,'TERRESTRIAL','Europe'),(18,'TERRESTRIAL','North America'),(19,'TERRESTRIAL','Pacific '),(20,'TERRESTRIAL','South America '),(21,'TERRESTRIAL','World/NA'),(22,'TERRESTRIAL','Arctic Ocean'),(23,'MARINE ','Indian Ocean'),(24,'MARINE ','North Atlantic: unknown'),(25,'MARINE ','North Atlantic: deep sea'),(26,'MARINE ','North Atlantic: shelf area & adjacent seas'),(27,'MARINE ','South Atlantic: unknown'),(28,'MARINE ','South Atlantic: deap sea'),(29,'MARINE ','South Atlantic: shelf area & adjacent seas'),(30,'MARINE ','North Pacific: unknown'),(31,'MARINE ','North Pacific: deep sea'),(32,'MARINE ','North Pacific: shelf area & adjacent seas'),(33,'MARINE ','South Pacific: unknown'),(34,'MARINE ','South Pacific: deep sea'),(35,'MARINE ','South Pacific: shelf area & adjacent seas'),(36,'MARINE ','Southern Ocean'),(37,'MARINE ','World/NA'),(38,'MARINE ',''); +/*!40000 ALTER TABLE `ecologicalcontext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `event` +-- + +DROP TABLE IF EXISTS `event`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `event` ( + `id` int NOT NULL, + `eventName` varchar(45) DEFAULT NULL, + `hasTemporalCoverage` int NOT NULL, + PRIMARY KEY (`id`), + KEY `fk_event_temporalCoverage1_idx` (`hasTemporalCoverage`), + CONSTRAINT `fk_event_temporalCoverage1` FOREIGN KEY (`hasTemporalCoverage`) REFERENCES `temporalcoverage` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `event` +-- + +LOCK TABLES `event` WRITE; +/*!40000 ALTER TABLE `event` DISABLE KEYS */; +INSERT INTO `event` VALUES (1,'collecting',1),(2,'collecting',2),(3,'collecting',3),(4,'collecting',4),(5,'collecting',5),(6,'collecting',6),(7,'collecting',7),(8,'collecting',8),(9,'collecting',9),(10,'collecting',10),(11,'collecting',11),(12,'collecting',12),(13,'collecting',13),(14,'collecting',14),(15,'collecting',15),(16,'collecting',16),(17,'collecting',17),(18,'collecting',18),(19,'collecting',19),(20,'collecting',20),(21,'collecting',21),(22,'collecting',22),(23,'collecting',23),(24,'collecting',24),(25,'collecting',25),(26,'collecting',26),(27,'collecting',27),(28,'collecting',28),(29,'collecting',29),(30,'collecting',30),(31,'collecting',31),(32,'collecting',32),(33,'collecting',33),(34,'collecting',34),(35,'collecting',35),(36,'collecting',36),(37,'collecting',37),(38,'collecting',38),(39,'collecting',39),(40,'collecting',40),(41,'collecting',41),(42,'collecting',42),(43,'collecting',43),(44,'collecting',44),(45,'collecting',45),(46,'collecting',46),(47,'collecting',47),(48,'collecting',48),(49,'collecting',49),(50,'collecting',50),(51,'collecting',51),(52,'collecting',52),(53,'collecting',53),(54,'collecting',54),(55,'collecting',55),(56,'collecting',56),(57,'collecting',57),(58,'collecting',58),(59,'collecting',59),(60,'collecting',60),(61,'collecting',61),(62,'collecting',62),(63,'collecting',63),(64,'collecting',64),(65,'collecting',65); +/*!40000 ALTER TABLE `event` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `geologicalcontext` +-- + +DROP TABLE IF EXISTS `geologicalcontext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `geologicalcontext` ( + `id` int NOT NULL, + `earliestEonOrLowestEonothem` varchar(255) DEFAULT NULL, + `latestEonOrHighestEonothem` varchar(255) DEFAULT NULL, + `earliestEraOrLowestErathem` varchar(255) DEFAULT NULL, + `latestEraOrHighestErathem` varchar(255) DEFAULT NULL, + `earliestPeriodOrLowestSystem` varchar(255) DEFAULT NULL, + `latestPeriodOrHighestSystem` varchar(255) DEFAULT NULL, + `earliestEpochOrLowestSeries` varchar(255) DEFAULT NULL, + `latestEpochOrHighestSeries` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `geologicalcontext` +-- + +LOCK TABLES `geologicalcontext` WRITE; +/*!40000 ALTER TABLE `geologicalcontext` DISABLE KEYS */; +INSERT INTO `geologicalcontext` VALUES (1,'Unspecified','Unspecified','','','','','',''),(2,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','','','',''),(3,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Quaternary','Quaternary','',''),(4,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Tertiary','Tertiary','',''),(5,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Neogene','Neogene','',''),(6,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Paleogene','Paleogene','Paelocene ','Paelocene '),(7,'Phanerozoic','Phanerozoic','Mesozoic','Mesozoic','','','',''),(8,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Carboniferous','Carboniferous','',''),(9,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Quaternary','Quaternary','Holocene','Holocene'),(10,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Quaternary','Quaternary','Pleistocene','Pleistocene'),(11,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Neogene','Neogene','Pliocene','Pliocene'),(12,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Neogene','Neogene','Miocene','Miocene'),(13,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Paleogene','Paleogene','',''),(14,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Paleogene','Paleogene','Oligocene','Oligocene'),(15,'Phanerozoic','Phanerozoic','Cenozoic','Cenozoic','Paleogene','Paleogene','Eocene','Eocene'),(16,'Phanerozoic','Phanerozoic','Mesozoic','Mesozoic','Cretaceous','Cretaceous','',''),(17,'Phanerozoic','Phanerozoic','Mesozoic','Mesozoic','Jurassic','Jurassic','',''),(18,'Phanerozoic','Phanerozoic','Mesozoic','Mesozoic','Triassic','Triassic','',''),(19,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','','','',''),(20,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Permian','Permian','',''),(21,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Devonian','Devonian','',''),(22,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Silurian','Silurian','',''),(23,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Ordovician','Ordovician','',''),(24,'Phanerozoic','Phanerozoic','Paleozoic','Paleozoic','Cambrian','Cambrian','',''),(25,'Proterozoic','Proterozoic','','','','','',''),(26,'Proterozoic','Proterozoic','Neo-proterozoic','Neo-proterozoic','','','',''),(27,'Proterozoic','Proterozoic','Paleo-proterozoic','Paleo-proterozoic','','','',''),(28,'Archean','Archean','Paleo-archean','Paleo-archean','','','',''); +/*!40000 ALTER TABLE `geologicalcontext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `identifier` +-- + +DROP TABLE IF EXISTS `identifier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `identifier` ( + `id` int NOT NULL, + `identifier` varchar(255) DEFAULT NULL, + `identifierType` mediumtext, + `ofOrganisationalUnit` int NOT NULL, + PRIMARY KEY (`id`), + KEY `fk_identifier_organisationalunit1_idx` (`ofOrganisationalUnit`), + CONSTRAINT `fk_identifier_organisationalunit1` FOREIGN KEY (`ofOrganisationalUnit`) REFERENCES `organisationalunit` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `identifier` +-- + +LOCK TABLES `identifier` WRITE; +/*!40000 ALTER TABLE `identifier` DISABLE KEYS */; +INSERT INTO `identifier` VALUES (1,'https://ror.org/00cv9y106','URI',7),(2,'https://www.wikidata.org/wiki/Q1137665','URI',7),(3,'https://ror.org/05f950310','URI',4),(4,'https://www.wikidata.org/wiki/Q833670','URI',4),(5,'https://ror.org/00j54wy13','URI',3),(6,'https://www.wikidata.org/wiki/Q2913980','URI',3),(7,'https://ror.org/05cjt1n05','URI',2),(8,'https://www.wikidata.org/wiki/Q2122449','URI',2),(9,'https://www.wikidata.org/wiki/Q2558850','URI',1),(10,'https://ror.org/01h1jbk91','URI',5),(11,'https://www.wikidata.org/wiki/Q3052500','URI',5),(12,'https://ror.org/001805t51','URI',6),(13,'https://www.wikidata.org/wiki/Q779703','URI',6); +/*!40000 ALTER TABLE `identifier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `measurementorfact` +-- + +DROP TABLE IF EXISTS `measurementorfact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `measurementorfact` ( + `id` int NOT NULL AUTO_INCREMENT, + `level` int DEFAULT NULL, + `measurementType` varchar(255) DEFAULT NULL, + `measurementUnit` varchar(255) DEFAULT NULL, + `measurementValue` int DEFAULT NULL, + `ofObjectGroup` int NOT NULL, + PRIMARY KEY (`id`), + KEY `fk_measurementorfacts_objectgroup1_idx` (`ofObjectGroup`), + CONSTRAINT `fk_measurementorfacts_objectgroup1` FOREIGN KEY (`ofObjectGroup`) REFERENCES `objectgroup` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=229 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `measurementorfact` +-- + +LOCK TABLES `measurementorfact` WRITE; +/*!40000 ALTER TABLE `measurementorfact` DISABLE KEYS */; +INSERT INTO `measurementorfact` VALUES (1,NULL,'# objects digitized','count',459,683),(2,NULL,'Object total','count',459,683),(3,NULL,'MIDS-1 (# objects)','count',459,683),(4,NULL,'# objects digitized','count',54,1),(5,NULL,'Object total','count',54,1),(6,NULL,'# objects digitized','count',39,2),(7,NULL,'Object total','count',39,2),(8,NULL,'# objects digitized','count',291,3),(9,NULL,'Object total','count',291,3),(10,NULL,'# objects digitized','count',75,4),(11,NULL,'Object total','count',75,4),(12,NULL,'# objects digitized','count',2215,684),(13,NULL,'Object total','count',2215,684),(14,NULL,'MIDS-1 (# objects)','count',2215,684),(15,NULL,'# objects digitized','count',93,5),(16,NULL,'Object total','count',93,5),(17,NULL,'# objects digitized','count',259,6),(18,NULL,'Object total','count',259,6),(19,NULL,'# objects digitized','count',2,7),(20,NULL,'Object total','count',2,7),(21,NULL,'# objects digitized','count',1705,8),(22,NULL,'Object total','count',1705,8),(23,NULL,'# objects digitized','count',148,9),(24,NULL,'Object total','count',148,9),(25,NULL,'# objects digitized','count',8,10),(26,NULL,'Object total','count',8,10),(27,NULL,'# objects digitized','count',280,685),(28,NULL,'Object total','count',280,685),(29,NULL,'MIDS-1 (# objects)','count',280,685),(30,NULL,'# objects digitized','count',91,11),(31,NULL,'Object total','count',91,11),(32,NULL,'# objects digitized','count',189,12),(33,NULL,'Object total','count',189,12),(34,NULL,'# objects digitized','count',22028,686),(35,NULL,'# objects not digitized\n(not documented)','count',200,686),(36,NULL,'Object total','count',22228,686),(37,NULL,'# objects with images','count',857,686),(38,NULL,'MIDS-3 (# objects)','count',22028,686),(39,NULL,'# objects digitized','count',74,13),(40,NULL,'Object total','count',74,13),(41,NULL,'# objects digitized','count',1,14),(42,NULL,'Object total','count',1,14),(43,NULL,'# objects digitized','count',1838,15),(44,NULL,'Object total','count',1838,15),(45,NULL,'# objects digitized','count',1,16),(46,NULL,'Object total','count',1,16),(47,NULL,'# objects digitized','count',19192,17),(48,NULL,'Object total','count',19192,17),(49,NULL,'# objects digitized','count',535,18),(50,NULL,'Object total','count',535,18),(51,NULL,'# objects digitized','count',77,19),(52,NULL,'Object total','count',77,19),(53,NULL,'# objects digitized','count',310,20),(54,NULL,'Object total','count',310,20),(55,NULL,'# objects digitized','count',598,687),(56,NULL,'Object total','count',598,687),(57,NULL,'# objects with images','count',346,687),(58,NULL,'MIDS-0 (# objects)','count',598,687),(59,NULL,'# objects digitized','count',27,21),(60,NULL,'Object total','count',27,21),(61,NULL,'# objects digitized','count',571,22),(62,NULL,'Object total','count',571,22),(63,NULL,'# objects digitized','count',66,688),(64,NULL,'Object total','count',66,688),(65,NULL,'MIDS-0 (# objects)','count',66,688),(66,NULL,'# objects digitized','count',66,23),(67,NULL,'Object total','count',66,23),(68,NULL,'# objects digitized','count',2470,689),(69,NULL,'Object total','count',2470,689),(70,NULL,'MIDS-0 (# objects)','count',2470,689),(71,NULL,'# objects digitized','count',320,24),(72,NULL,'Object total','count',320,24),(73,NULL,'# objects digitized','count',67,25),(74,NULL,'Object total','count',67,25),(75,NULL,'# objects digitized','count',61,26),(76,NULL,'Object total','count',61,26),(77,NULL,'# objects digitized','count',1873,27),(78,NULL,'Object total','count',1873,27),(79,NULL,'# objects digitized','count',31,28),(80,NULL,'Object total','count',31,28),(81,NULL,'# objects digitized','count',25,29),(82,NULL,'Object total','count',25,29),(83,NULL,'# objects digitized','count',93,30),(84,NULL,'Object total','count',93,30),(85,NULL,'# objects digitized','count',2458,690),(86,NULL,'Object total','count',2458,690),(87,NULL,'# objects digitized','count',2458,31),(88,NULL,'Object total','count',2458,31),(89,NULL,'# objects digitized','count',16,32),(90,NULL,'Object total','count',16,32),(91,NULL,'# objects digitized','count',92,691),(92,NULL,'Object total','count',92,691),(93,NULL,'MIDS-0 (# objects)','count',92,691),(94,NULL,'# objects digitized','count',71,33),(95,NULL,'Object total','count',71,33),(96,NULL,'# objects digitized','count',11,34),(97,NULL,'Object total','count',11,34),(98,NULL,'# objects digitized','count',3,35),(99,NULL,'Object total','count',3,35),(100,NULL,'# objects digitized','count',1,36),(101,NULL,'Object total','count',1,36),(102,NULL,'# objects digitized','count',4,37),(103,NULL,'Object total','count',4,37),(104,NULL,'# objects digitized','count',2,38),(105,NULL,'Object total','count',2,38),(106,NULL,'# objects digitized','count',1609,692),(107,NULL,'Object total','count',1609,692),(108,NULL,'MIDS-0 (# objects)','count',1610,692),(109,NULL,'# objects digitized','count',1610,39),(110,NULL,'Object total','count',1610,39),(111,NULL,'# objects digitized','count',98,693),(112,NULL,'Object total','count',98,693),(113,NULL,'MIDS-0 (# objects)','count',98,693),(114,NULL,'# objects digitized','count',60,40),(115,NULL,'Object total','count',60,40),(116,NULL,'# objects digitized','count',2,41),(117,NULL,'Object total','count',2,41),(118,NULL,'# objects digitized','count',5,42),(119,NULL,'Object total','count',5,42),(120,NULL,'# objects digitized','count',1,43),(121,NULL,'Object total','count',1,43),(122,NULL,'# objects digitized','count',4,44),(123,NULL,'Object total','count',4,44),(124,NULL,'# objects digitized','count',26,45),(125,NULL,'Object total','count',26,45),(126,NULL,'# objects digitized','count',6,694),(127,NULL,'Object total','count',6,694),(128,NULL,'# objects digitized','count',5,46),(129,NULL,'Object total','count',5,46),(130,NULL,'# objects digitized','count',1,47),(131,NULL,'Object total','count',1,47),(132,NULL,'# objects digitized','count',8,695),(133,NULL,'Object total','count',8,695),(134,NULL,'MIDS-0 (# objects)','count',8,695),(135,NULL,'# objects digitized','count',3,48),(136,NULL,'Object total','count',3,48),(137,NULL,'# objects digitized','count',2,49),(138,NULL,'Object total','count',2,49),(139,NULL,'# objects digitized','count',3,50),(140,NULL,'Object total','count',3,50),(141,NULL,'# objects digitized','count',106,696),(142,NULL,'Object total','count',106,696),(143,NULL,'MIDS-0 (# objects)','count',106,696),(144,NULL,'# objects digitized','count',106,51),(145,NULL,'Object total','count',106,51),(146,NULL,'# objects digitized','count',23,697),(147,NULL,'Object total','count',23,697),(148,NULL,'MIDS-0 (# objects)','count',23,697),(149,NULL,'# objects digitized','count',10,52),(150,NULL,'Object total','count',10,52),(151,NULL,'# objects digitized','count',4,53),(152,NULL,'Object total','count',4,53),(153,NULL,'# objects digitized','count',1,54),(154,NULL,'Object total','count',1,54),(155,NULL,'# objects digitized','count',1,55),(156,NULL,'Object total','count',1,55),(157,NULL,'# objects digitized','count',7,56),(158,NULL,'Object total','count',7,56),(159,NULL,'# objects digitized','count',56,698),(160,NULL,'Object total','count',56,698),(161,NULL,'MIDS-0 (# objects)','count',56,698),(162,NULL,'# objects digitized','count',36,57),(163,NULL,'Object total','count',36,57),(164,NULL,'# objects digitized','count',10,58),(165,NULL,'Object total','count',10,58),(166,NULL,'# objects digitized','count',6,59),(167,NULL,'Object total','count',6,59),(168,NULL,'# objects digitized','count',1,60),(169,NULL,'Object total','count',1,60),(170,NULL,'# objects digitized','count',1,61),(171,NULL,'Object total','count',1,61),(172,NULL,'# objects digitized','count',1,62),(173,NULL,'Object total','count',1,62),(174,NULL,'# objects digitized','count',3,699),(175,NULL,'Object total','count',3,699),(176,NULL,'MIDS-0 (# objects)','count',3,699),(177,NULL,'# objects digitized','count',3,63),(178,NULL,'Object total','count',3,63),(179,NULL,'# objects digitized','count',1,700),(180,NULL,'Object total','count',1,700),(181,NULL,'MIDS-0 (# objects)','count',1,700),(182,NULL,'# objects digitized','count',1,64),(183,NULL,'Object total','count',1,64),(184,NULL,'# objects digitized','count',3,701),(185,NULL,'Object total','count',3,701),(186,NULL,'MIDS-0 (# objects)','count',3,701),(187,NULL,'# objects digitized','count',1,65),(188,NULL,'Object total','count',1,65),(189,NULL,'# objects digitized','count',2,66),(190,NULL,'Object total','count',2,66),(191,NULL,'# objects digitized','count',3,702),(192,NULL,'Object total','count',3,702),(193,NULL,'MIDS-0 (# objects)','count',3,702),(194,NULL,'# objects digitized','count',3,67),(195,NULL,'Object total','count',3,67),(196,NULL,'# objects digitized','count',1,703),(197,NULL,'Object total','count',1,703),(198,NULL,'MIDS-0 (# objects)','count',1,703),(199,NULL,'# objects digitized','count',1,68),(200,NULL,'Object total','count',1,68),(201,NULL,'# objects digitized','count',13,704),(202,NULL,'Object total','count',13,704),(203,NULL,'MIDS-0 (# objects)','count',13,704),(204,NULL,'# objects digitized','count',13,69),(205,NULL,'Object total','count',13,69),(206,NULL,'# objects digitized','count',4,705),(207,NULL,'Object total','count',4,705),(208,NULL,'MIDS-0 (# objects)','count',4,705),(209,NULL,'# objects digitized','count',4,70),(210,NULL,'Object total','count',4,70),(211,NULL,'# objects digitized','count',2,706),(212,NULL,'Object total','count',2,706),(213,NULL,'MIDS-0 (# objects)','count',2,706),(214,NULL,'# objects digitized','count',2,71),(215,NULL,'Object total','count',2,71),(216,NULL,'# objects digitized','count',2,700),(217,NULL,'Object total','count',2,700),(218,NULL,'MIDS-0 (# objects)','count',2,700),(219,NULL,'# objects digitized','count',2,72),(220,NULL,'Object total','count',2,72),(221,NULL,'# objects digitized','count',182,702),(222,NULL,'Object total','count',182,702),(223,NULL,'MIDS-0 (# objects)','count',182,702),(224,NULL,'# objects digitized','count',182,73),(225,NULL,'Object total','count',182,73),(226,NULL,'# objects digitized','count',66,707),(227,NULL,'Object total','count',66,707),(228,NULL,'MIDS-0 (# objects)','count',66,707); +/*!40000 ALTER TABLE `measurementorfact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `objectclassification` +-- + +DROP TABLE IF EXISTS `objectclassification`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `objectclassification` ( + `id` int NOT NULL AUTO_INCREMENT, + `objectClassificationName` varchar(255) DEFAULT NULL, + `objectClassificationLevel` varchar(255) DEFAULT NULL, + `isTopParent` tinyint DEFAULT NULL, + `hasObjectClassification` int DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `fk_objectclassification_objectclassification1_idx` (`hasObjectClassification`), + CONSTRAINT `fk_objectclassification_objectclassification1` FOREIGN KEY (`hasObjectClassification`) REFERENCES `objectclassification` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `objectclassification` +-- + +LOCK TABLES `objectclassification` WRITE; +/*!40000 ALTER TABLE `objectclassification` DISABLE KEYS */; +INSERT INTO `objectclassification` VALUES (1,'Anthropology','discipline',1,NULL),(2,'Macroscopic algae, fungi, plants','discipline',1,NULL),(3,'Microbiology','discipline',1,NULL),(4,'Zoology vertebrates','discipline',1,NULL),(5,'Zoology invertebrates','discipline',1,NULL),(6,'Paleontology','discipline',1,NULL),(7,'Geology','discipline',1,NULL),(8,'Extraterrestrial','discipline',1,NULL),(9,'Multiple disciplines','discipline',1,NULL),(10,'Bio- and geodiversity other','discipline',1,NULL),(11,'Unspecified','category',NULL,1),(12,'Human Biology','category',NULL,1),(13,'Anthropology other','category',NULL,1),(14,'Unspecified','category',NULL,2),(15,'Macroalgae','category',NULL,2),(16,'Bryophytes','category',NULL,2),(17,'Fern & fern allies','category',NULL,2),(18,'Seed plants','category',NULL,2),(19,'Macrofungi/Lichens','category',NULL,2),(20,'Macroscopic algae, fungi, plants: other','category',NULL,2),(21,'Unspecified','category',NULL,3),(22,'Bacteria & Archaea','category',NULL,3),(23,'Chromista','category',NULL,3),(24,'Green algae','category',NULL,3),(25,'Phages','category',NULL,3),(26,'Plasmids','category',NULL,3),(27,'Protozoa','category',NULL,3),(28,'Virus - animal/human','category',NULL,3),(29,'Virus - plant','category',NULL,3),(30,'Yeast & funghi','category',NULL,3),(31,'Microbiology other','category',NULL,3),(32,'Unspecified','category',NULL,4),(33,'Fishes','category',NULL,4),(34,'Amphibians','category',NULL,4),(35,'Reptiles','category',NULL,4),(36,'Birds','category',NULL,4),(37,'Mammals','category',NULL,4),(38,'Vertebrates other','category',NULL,4),(39,'Unspecified','category',NULL,5),(40,'Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)','category',NULL,5),(41,'Arthropods - other insects','category',NULL,5),(42,'Arthropods - arachnids','category',NULL,5),(43,'Arthropods - crustaceans & myriapods','category',NULL,5),(44,'Porifera (sponges)','category',NULL,5),(45,'Mollusca (bivalves, gastropods, cephalopods)','category',NULL,5),(46,'Invertebrates other','category',NULL,5),(47,'Unspecified','category',NULL,6),(48,'Botany','category',NULL,6),(49,'Mycology','category',NULL,6),(50,'Invertebrates','category',NULL,6),(51,'Vertebrates','category',NULL,6),(52,'Trace fossils','category',NULL,6),(53,'Microfossils','category',NULL,6),(54,'Paleontology other','category',NULL,6),(55,'Unspecified','category',NULL,7),(56,'Rocks','category',NULL,7),(57,'Minerals','category',NULL,7),(58,'Sediment','category',NULL,7),(59,'Other','category',NULL,7),(60,'Unspecified','category',NULL,8),(61,'Collected in space','category',NULL,8),(62,'Collected on earth','category',NULL,8),(63,'Extraterrestrial other','category',NULL,8),(64,'Multiple taxonomic groups','category',NULL,9),(65,'Other','category',NULL,10); +/*!40000 ALTER TABLE `objectclassification` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `objectgroup` +-- + +DROP TABLE IF EXISTS `objectgroup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `objectgroup` ( + `id` int NOT NULL AUTO_INCREMENT, + `collectionName` varchar(255) DEFAULT NULL, + `description` varchar(1000) DEFAULT NULL, + `hasOrganisationalUnit` int NOT NULL, + `typeOfObjectGroup` varchar(255) DEFAULT NULL, + `preservationMethod` varchar(255) DEFAULT NULL, + `level` varchar(10) DEFAULT NULL, + `hasPersonRole` int DEFAULT NULL, + `collectionManagementSystem` varchar(255) DEFAULT NULL, + `hasMeasurementOrFact` json DEFAULT NULL, + `hasGeologicalContext` int DEFAULT NULL, + `hasEcologicalContext` int DEFAULT NULL, + `hasObjectClassification` int DEFAULT NULL, + `hasEvent` int DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `fk_objectgroup_GeologicalContext1_idx` (`hasGeologicalContext`), + KEY `fk_objectgroup_organisationalunit1_idx` (`hasOrganisationalUnit`), + KEY `fk_objectgroup_EcologicalContext1_idx` (`hasEcologicalContext`), + KEY `fk_objectgroup_objectclassification1_idx` (`hasObjectClassification`), + KEY `fk_objectgroup_event1_idx` (`hasEvent`), + KEY `fk_ObjectGroup_PersonRole1_idx` (`hasPersonRole`), + KEY `measures` ((cast(json_extract(`hasMeasurementOrFact`,_utf8mb4'$.MF') as unsigned array))), + CONSTRAINT `fk_objectgroup_EcologicalContext1` FOREIGN KEY (`hasEcologicalContext`) REFERENCES `ecologicalcontext` (`id`), + CONSTRAINT `fk_objectgroup_event1` FOREIGN KEY (`hasEvent`) REFERENCES `event` (`id`), + CONSTRAINT `fk_objectgroup_GeologicalContext1` FOREIGN KEY (`hasGeologicalContext`) REFERENCES `geologicalcontext` (`id`), + CONSTRAINT `fk_objectgroup_objectclassification1` FOREIGN KEY (`hasObjectClassification`) REFERENCES `objectclassification` (`id`), + CONSTRAINT `fk_objectgroup_organisationalunit1` FOREIGN KEY (`hasOrganisationalUnit`) REFERENCES `organisationalunit` (`id`), + CONSTRAINT `fk_ObjectGroup_PersonRole1` FOREIGN KEY (`hasPersonRole`) REFERENCES `personrole` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1072 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `objectgroup` +-- + +LOCK TABLES `objectgroup` WRITE; +/*!40000 ALTER TABLE `objectgroup` DISABLE KEYS */; +INSERT INTO `objectgroup` VALUES (1,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|REGION UNKNOWN|Unknown','',1,'Preserved','Dried','inventory',NULL,'','[4, 5, 6]',NULL,12,18,NULL),(2,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Asia Temperate','',1,'Preserved','Dried','inventory',NULL,'','[1, 2, 3]',NULL,15,18,NULL),(3,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Europe','',1,'Preserved','Dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(4,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|North America','',1,'Preserved','Dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(5,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(6,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,18,NULL),(7,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,18,NULL),(8,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Europe','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(9,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|North America','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(10,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|South America ','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,18,NULL),(11,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Other|REGION UNKNOWN|Unknown','',1,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,18,NULL),(12,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Other|TERRESTRIAL|Europe','',1,'Preserved','Other','inventory',NULL,'',NULL,NULL,18,18,NULL),(13,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|REGION UNKNOWN|Unknown','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,12,18,NULL),(14,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|Africa','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,13,18,NULL),(15,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|Asia Temperate','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,15,18,NULL),(16,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|Australasia','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,17,18,NULL),(17,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|Europe','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,18,18,NULL),(18,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|North America','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,19,18,NULL),(19,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|South America ','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,21,18,NULL),(20,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|World/NA','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,22,18,NULL),(21,'Macroscopic algae, fungi, plants|Seed plants|Living|Greenhouses|TERRESTRIAL|Asia Temperate','',2,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,15,18,NULL),(22,'Macroscopic algae, fungi, plants|Seed plants|Living|Greenhouses|TERRESTRIAL|World/NA','',2,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,22,18,NULL),(23,'Macroscopic algae, fungi, plants|Seed plants|Living|Crypreserved|TERRESTRIAL|World/NA','',2,'Living','Crypreserved','inventory',NULL,'',NULL,NULL,22,18,NULL),(24,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|Africa','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,13,22,NULL),(25,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|Asia Temperate','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,15,22,NULL),(26,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|Asia Tropical','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,16,22,NULL),(27,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|Europe','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,18,22,NULL),(28,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|North America','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,19,22,NULL),(29,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|South America ','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,21,22,NULL),(30,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|TERRESTRIAL|World/NA','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,22,22,NULL),(31,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Europe','',2,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,18,58,NULL),(32,'Zoology Invertebrates|Unspecified|Preserved|Unspecified|FRESHWATER|World/NA','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,11,11,NULL),(33,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|Africa','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,40,NULL),(34,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|Asia Temperate','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,15,40,NULL),(35,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|Asia Tropical','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,16,40,NULL),(36,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|North America','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,19,40,NULL),(37,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|South America ','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,40,NULL),(38,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,40,NULL),(39,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|FRESHWATER|World/NA','',2,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,11,40,NULL),(40,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|Africa','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,40,NULL),(41,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,40,NULL),(42,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,40,NULL),(43,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|North America','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,19,40,NULL),(44,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|South America ','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,40,NULL),(45,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,40,NULL),(46,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Microscope slides|TERRESTRIAL|Africa','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,40,NULL),(47,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,40,NULL),(48,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|TERRESTRIAL|Asia Temperate','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,15,41,NULL),(49,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|TERRESTRIAL|Europe','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,41,NULL),(50,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,41,NULL),(51,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|TERRESTRIAL|World/NA','',2,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,22,41,NULL),(52,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|TERRESTRIAL|Africa','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,41,NULL),(53,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,41,NULL),(54,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,41,NULL),(55,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|TERRESTRIAL|Europe','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,41,NULL),(56,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,41,NULL),(57,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|Africa','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,41,NULL),(58,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,41,NULL),(59,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,41,NULL),(60,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|Europe','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,41,NULL),(61,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|South America ','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,41,NULL),(62,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|TERRESTRIAL|World/NA','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,41,NULL),(63,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Unspecified|TERRESTRIAL|World/NA','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,42,NULL),(64,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,42,NULL),(65,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Microscope slides|TERRESTRIAL|Africa','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,42,NULL),(66,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Microscope slides|TERRESTRIAL|World/NA','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,42,NULL),(67,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,43,NULL),(68,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|DNA/RNA|TERRESTRIAL|South America ','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,45,NULL),(69,'Zoology Invertebrates|Invertebrates other|Unspecified|Unspecified|TERRESTRIAL|World/NA','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,22,46,NULL),(70,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,46,NULL),(71,'Zoology Vertebrates|Fishes|Preserved|Unspecified|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,27,33,NULL),(72,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,27,42,NULL),(73,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,27,43,NULL),(74,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Fluid preserved|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,27,45,NULL),(75,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,27,46,NULL),(76,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,27,33,NULL),(77,'Zoology Vertebrates|Fishes|Preserved|Frozen (not Biobank)|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,27,33,NULL),(78,'Zoology Vertebrates|Mammals|Biobank|DNA/RNA|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,27,37,NULL),(79,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Biobank|DNA/RNA|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,27,43,NULL),(80,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Unspecified|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,27,43,NULL),(81,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Frozen (not Biobank)|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,27,43,NULL),(82,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|Tissue (or matrix)|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,27,45,NULL),(83,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,27,45,NULL),(84,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Frozen (not Biobank)|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,27,45,NULL),(85,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,27,46,NULL),(86,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,27,46,NULL),(87,'Zoology Invertebrates|Invertebrates other|Preserved|Frozen (not Biobank)|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,27,46,NULL),(88,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,27,64,NULL),(89,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|TERRESTRIAL|Europe','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,64,NULL),(90,'Microbiology|Yeast & funghi|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,30,NULL),(91,'Microbiology|Yeast & funghi|Living|Cultures: frozen|TERRESTRIAL|Europe','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,18,30,NULL),(92,'Microbiology|Yeast & funghi|Living|Cultures: frozen|TERRESTRIAL|North America','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,19,30,NULL),(93,'Microbiology|Yeast & funghi|Living|Cultures: frozen|TERRESTRIAL|World/NA','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,22,30,NULL),(94,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|Africa','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,31,NULL),(95,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|Asia Temperate','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,15,31,NULL),(96,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|Asia Tropical','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,16,31,NULL),(97,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|Australasia','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,17,31,NULL),(98,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|Europe','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,31,NULL),(99,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|North America','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,19,31,NULL),(100,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|South America ','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,31,NULL),(101,'Microbiology|Microbiology other|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,31,NULL),(102,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|Africa','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,13,31,NULL),(103,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|Asia Temperate','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,15,31,NULL),(104,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|Asia Tropical','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,16,31,NULL),(105,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|Australasia','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,17,31,NULL),(106,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|Europe','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,18,31,NULL),(107,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|North America','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,19,31,NULL),(108,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|South America ','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,21,31,NULL),(109,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|TERRESTRIAL|World/NA','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,22,31,NULL),(110,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|Asia Temperate','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,15,46,NULL),(111,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|Asia Tropical','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,16,46,NULL),(112,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|Europe','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,18,46,NULL),(113,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|North America','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,19,46,NULL),(114,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|South America ','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,21,46,NULL),(115,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|TERRESTRIAL|World/NA','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,22,46,NULL),(116,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Africa','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,46,NULL),(117,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,46,NULL),(118,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,46,NULL),(119,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Europe','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,46,NULL),(120,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|South America ','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,46,NULL),(121,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|World/NA','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,46,NULL),(122,'Multiple disciplines|Multiple taxonomic groups|Biobank|Tissue (or matrix)|TERRESTRIAL|Europe','',2,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,18,64,NULL),(123,'Zoology Vertebrates|Fishes|Preserved|Dried - not assembled|MARINE |North Atlantic: shelf area & adjacent seas','',2,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,27,33,NULL),(124,'Geology|Sediment|NA|Sediment sample|REGION UNKNOWN|Unknown','',2,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,12,58,NULL),(125,'Geology|Sediment|NA|Sediment sample|MARINE |North Atlantic: unknown','',2,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,25,58,NULL),(126,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|TERRESTRIAL|Europe','',2,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,18,18,NULL),(127,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|TERRESTRIAL|World/NA','',2,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,22,18,NULL),(128,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Africa','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,22,NULL),(129,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Antarctica ','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,14,22,NULL),(130,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Asia Temperate','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,15,22,NULL),(131,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Australasia','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,17,22,NULL),(132,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Europe','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,22,NULL),(133,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|North America','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,19,22,NULL),(134,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|South America ','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,22,NULL),(135,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,22,NULL),(136,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|Africa','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,13,22,NULL),(137,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|Antarctica ','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,14,22,NULL),(138,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|Asia Temperate','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,15,22,NULL),(139,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|Australasia','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,17,22,NULL),(140,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|Europe','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,18,22,NULL),(141,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|North America','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,19,22,NULL),(142,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|South America ','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,21,22,NULL),(143,'Microbiology|Bacteria & Archaea|Preserved|Frozen|TERRESTRIAL|World/NA','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,22,22,NULL),(144,'Microbiology|Bacteria & Archaea|Living|Other|TERRESTRIAL|Europe','',2,'Living','Other','inventory',NULL,'',NULL,NULL,18,22,NULL),(145,'Microbiology|Bacteria & Archaea|Preserved|Unspecified|TERRESTRIAL|Africa','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,22,NULL),(146,'Microbiology|Bacteria & Archaea|Preserved|Unspecified|TERRESTRIAL|Europe','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,22,NULL),(147,'Microbiology|Bacteria & Archaea|Preserved|Unspecified|TERRESTRIAL|North America','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,22,NULL),(148,'Microbiology|Virus - plant|Unspecified|Unspecified|TERRESTRIAL|Africa','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,13,29,NULL),(149,'Microbiology|Virus - plant|Unspecified|Unspecified|TERRESTRIAL|Asia Temperate','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,15,29,NULL),(150,'Microbiology|Virus - plant|Unspecified|Unspecified|TERRESTRIAL|Europe','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,18,29,NULL),(151,'Microbiology|Virus - plant|Unspecified|Unspecified|TERRESTRIAL|World/NA','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,22,29,NULL),(152,'Microbiology|Virus - plant|Biobank|DNA/RNA|TERRESTRIAL|Africa','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,29,NULL),(153,'Microbiology|Virus - plant|Biobank|DNA/RNA|TERRESTRIAL|Europe','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,29,NULL),(154,'Microbiology|Virus - plant|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,29,NULL),(155,'Microbiology|Virus - plant|Active|Other|TERRESTRIAL|Africa','',2,'Active','Other','inventory',NULL,'',NULL,NULL,13,29,NULL),(156,'Microbiology|Virus - plant|Active|Other|TERRESTRIAL|World/NA','',2,'Active','Other','inventory',NULL,'',NULL,NULL,22,29,NULL),(157,'Microbiology|Virus - plant|Preserved|Frozen|TERRESTRIAL|Africa','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,13,29,NULL),(158,'Microbiology|Virus - plant|Preserved|Frozen|TERRESTRIAL|Asia Temperate','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,15,29,NULL),(159,'Microbiology|Virus - plant|Preserved|Frozen|TERRESTRIAL|Europe','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,18,29,NULL),(160,'Microbiology|Virus - plant|Preserved|Frozen|TERRESTRIAL|World/NA','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,22,29,NULL),(161,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,18,NULL),(162,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,22,NULL),(163,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|REGION UNKNOWN|Unknown','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,12,33,NULL),(164,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|FRESHWATER|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,7,33,NULL),(165,'Zoology Vertebrates|Amphibians|Biobank|DNA/RNA|REGION UNKNOWN|Unknown','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,12,34,NULL),(166,'Zoology Vertebrates|Reptiles|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,35,NULL),(167,'Zoology Vertebrates|Mammals|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,37,NULL),(168,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,40,NULL),(169,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,41,NULL),(170,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|DNA/RNA|TERRESTRIAL|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,45,NULL),(171,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|REGION UNKNOWN|Unknown','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,12,64,NULL),(172,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|FRESHWATER|Europe','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,7,64,NULL),(173,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (in the wild/in situ)|TERRESTRIAL|Europe','',3,'Living','Outdoors (in the wild/in situ)','inventory',NULL,'',NULL,NULL,18,18,NULL),(174,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|Europe','',3,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,18,18,NULL),(175,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|TERRESTRIAL|Europe','',3,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,18,18,NULL),(176,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Europe','',3,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,18,58,NULL),(177,'Geology|Minerals|NA|Unspecified|REGION UNKNOWN|Unknown','',4,'NA','Unspecified','inventory',NULL,'',NULL,NULL,12,57,NULL),(178,'Palaeontology|Botany|Fossil|Dry preserved: Mesofossils|REGION UNKNOWN|Unknown','',4,'Fossil','Dry preserved: Mesofossils','inventory',NULL,'',NULL,NULL,12,48,NULL),(179,'Palaeontology|Botany|Fossil|Dry preserved: Mesofossils|TERRESTRIAL|Europe','',4,'Fossil','Dry preserved: Mesofossils','inventory',NULL,'',NULL,NULL,18,48,NULL),(180,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|REGION UNKNOWN|Unknown','',4,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,12,50,NULL),(181,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Europe','',4,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,18,51,NULL),(182,'Palaeontology|Microfossils|Fossil|Microscope slides|TERRESTRIAL|Africa','',4,'Fossil','Microscope slides','inventory',NULL,'',NULL,NULL,13,53,NULL),(183,'Palaeontology|Microfossils|Fossil|Microscope slides|TERRESTRIAL|Europe','',4,'Fossil','Microscope slides','inventory',NULL,'',NULL,NULL,18,53,NULL),(184,'Geology|Sediment|NA|Soil monoliths|REGION UNKNOWN|Unknown','',4,'NA','Soil monoliths','inventory',NULL,'',NULL,NULL,12,58,NULL),(185,'Geology|Sediment|NA|Soil monoliths|TERRESTRIAL|Africa','',4,'NA','Soil monoliths','inventory',NULL,'',NULL,NULL,13,58,NULL),(186,'Geology|Sediment|NA|Soil monoliths|TERRESTRIAL|Asia Tropical','',4,'NA','Soil monoliths','inventory',NULL,'',NULL,NULL,16,58,NULL),(187,'Geology|Sediment|NA|Soil monoliths|TERRESTRIAL|Europe','',4,'NA','Soil monoliths','inventory',NULL,'',NULL,NULL,18,58,NULL),(188,'Anthropology |Human Biology|Preserved|Dried/skeletonized - assemblaged|REGION UNKNOWN|Unknown','',4,'Preserved','Dried/skeletonized - assemblaged','inventory',NULL,'',NULL,NULL,12,12,NULL),(189,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|REGION UNKNOWN|Unknown','',4,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,12,12,NULL),(190,'Anthropology |Human Biology|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',4,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,12,NULL),(191,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(192,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,18,NULL),(193,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,19,NULL),(194,'Macroscopic algae, fungi, plants|Macroscopic algae, fungi, plants: other|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,20,NULL),(195,'Zoology Vertebrates|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(196,'Zoology Vertebrates|Fishes|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,33,NULL),(197,'Zoology Vertebrates|Amphibians|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,34,NULL),(198,'Zoology Vertebrates|Reptiles|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,35,NULL),(199,'Zoology Vertebrates|Birds|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,36,NULL),(200,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',4,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,36,NULL),(201,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|TERRESTRIAL|Asia Temperate','',4,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,15,36,NULL),(202,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|TERRESTRIAL|Europe','',4,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,18,36,NULL),(203,'Zoology Vertebrates|Mammals|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,37,NULL),(204,'Zoology Vertebrates|Vertebrates other|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,38,NULL),(205,'Zoology Invertebrates|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(206,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,40,NULL),(207,'Zoology Invertebrates|Arthropods - other insects|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,41,NULL),(208,'Zoology Invertebrates|Arthropods - arachnids|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,42,NULL),(209,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,43,NULL),(210,'Zoology Invertebrates|Porifera (sponges)|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,44,NULL),(211,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,45,NULL),(212,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|REGION UNKNOWN|Unknown','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,46,NULL),(213,'Palaeontology|Botany|Fossil|Unspecified|REGION UNKNOWN|Unknown','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,48,NULL),(214,'Palaeontology|Invertebrates|Fossil|Unspecified|REGION UNKNOWN|Unknown','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,50,NULL),(215,'Palaeontology|Vertebrates|Fossil|Unspecified|REGION UNKNOWN|Unknown','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,51,NULL),(216,'Palaeontology|Microfossils|Fossil|Unspecified|REGION UNKNOWN|Unknown','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,53,NULL),(217,'Geology|Minerals|NA|Macro-object|REGION UNKNOWN|Unknown','',4,'NA','Macro-object','inventory',NULL,'',NULL,NULL,12,57,NULL),(218,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(219,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,15,NULL),(220,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,15,NULL),(221,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,15,NULL),(222,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|TERRESTRIAL|Australasia','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,17,15,NULL),(223,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|TERRESTRIAL|Europe','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,15,NULL),(224,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Dried|REGION UNKNOWN|Unknown','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,15,NULL),(225,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,15,NULL),(226,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Fluid preserved|TERRESTRIAL|Africa','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,15,NULL),(227,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,15,NULL),(228,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Microscope slides|TERRESTRIAL|Europe','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,15,NULL),(229,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,15,NULL),(230,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|Africa','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,15,NULL),(231,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|Antarctica ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,14,15,NULL),(232,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,15,NULL),(233,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,15,NULL),(234,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|Europe','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,15,NULL),(235,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|North America','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,15,NULL),(236,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|TERRESTRIAL|South America ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,15,NULL),(237,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,16,NULL),(238,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,16,NULL),(239,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Unspecified|TERRESTRIAL|North America','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,16,NULL),(240,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Unspecified|TERRESTRIAL|South America ','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,16,NULL),(241,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|REGION UNKNOWN|Unknown','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,16,NULL),(242,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|TERRESTRIAL|Africa','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,13,16,NULL),(243,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|TERRESTRIAL|Europe','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,18,16,NULL),(244,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,16,NULL),(245,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Fluid preserved|TERRESTRIAL|Africa','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,16,NULL),(246,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Microscope slides|TERRESTRIAL|Africa','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,16,NULL),(247,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,16,NULL),(248,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Africa','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,16,NULL),(249,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Antarctica ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,14,16,NULL),(250,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,16,NULL),(251,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,16,NULL),(252,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,16,NULL),(253,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|Europe','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,16,NULL),(254,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|North America','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,16,NULL),(255,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|TERRESTRIAL|South America ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,16,NULL),(256,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,17,NULL),(257,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,17,NULL),(258,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Unspecified|TERRESTRIAL|North America','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,17,NULL),(259,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Dried|REGION UNKNOWN|Unknown','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,17,NULL),(260,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Dried|TERRESTRIAL|Africa','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,13,17,NULL),(261,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Dried|TERRESTRIAL|South America ','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,21,17,NULL),(262,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,17,NULL),(263,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Fluid preserved|TERRESTRIAL|Africa','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,17,NULL),(264,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,17,NULL),(265,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Africa','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,17,NULL),(266,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Antarctica ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,14,17,NULL),(267,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,17,NULL),(268,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,17,NULL),(269,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,17,NULL),(270,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|Europe','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,17,NULL),(271,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|North America','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,17,NULL),(272,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|TERRESTRIAL|South America ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,17,NULL),(273,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,18,NULL),(274,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,18,NULL),(275,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|Asia Temperate','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,15,18,NULL),(276,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,18,NULL),(277,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|Australasia','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,17,18,NULL),(278,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|Europe','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,18,NULL),(279,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|North America','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,18,NULL),(280,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|TERRESTRIAL|South America ','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,18,NULL),(281,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|REGION UNKNOWN|Unknown','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(282,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Africa','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,13,18,NULL),(283,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Asia Temperate','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,15,18,NULL),(284,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,16,18,NULL),(285,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Australasia','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,17,18,NULL),(286,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Europe','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(287,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|North America','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(288,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|South America ','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,21,18,NULL),(289,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,18,NULL),(290,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|Africa','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,18,NULL),(291,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,18,NULL),(292,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|Australasia','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,17,18,NULL),(293,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|Europe','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,18,NULL),(294,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|North America','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,19,18,NULL),(295,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|South America ','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,18,NULL),(296,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,18,NULL),(297,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Africa','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,18,NULL),(298,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Antarctica ','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,14,18,NULL),(299,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,18,NULL),(300,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,18,NULL),(301,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Australasia','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,17,18,NULL),(302,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Europe','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,18,NULL),(303,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|North America','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,19,18,NULL),(304,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|South America ','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,18,NULL),(305,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(306,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Africa','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,18,NULL),(307,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Antarctica ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,14,18,NULL),(308,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,18,NULL),(309,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,18,NULL),(310,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,18,NULL),(311,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Europe','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(312,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|North America','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(313,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|South America ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,18,NULL),(314,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,19,NULL),(315,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,19,NULL),(316,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|Asia Temperate','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,15,19,NULL),(317,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,19,NULL),(318,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|Australasia','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,17,19,NULL),(319,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|Europe','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,19,NULL),(320,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|TERRESTRIAL|South America ','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,19,NULL),(321,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Dried|REGION UNKNOWN|Unknown','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,19,NULL),(322,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Dried|TERRESTRIAL|Africa','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,13,19,NULL),(323,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,19,NULL),(324,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|Africa','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,19,NULL),(325,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,19,NULL),(326,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|Australasia','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,17,19,NULL),(327,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|Europe','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,19,NULL),(328,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|North America','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,19,19,NULL),(329,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|TERRESTRIAL|South America ','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,19,NULL),(330,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,19,NULL),(331,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|Africa','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,19,NULL),(332,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,19,NULL),(333,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|Europe','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,19,NULL),(334,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|North America','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,19,19,NULL),(335,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|South America ','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,19,NULL),(336,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,19,NULL),(337,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Africa','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,19,NULL),(338,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Antarctica ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,14,19,NULL),(339,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,19,NULL),(340,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,19,NULL),(341,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,19,NULL),(342,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|Europe','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,19,NULL),(343,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|North America','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,19,NULL),(344,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|TERRESTRIAL|South America ','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,19,NULL),(345,'Microbiology|Green algae|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,24,NULL),(346,'Microbiology|Green algae|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,24,NULL),(347,'Microbiology|Green algae|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,24,NULL),(348,'Microbiology|Green algae|Preserved|Unspecified|TERRESTRIAL|Europe','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,24,NULL),(349,'Microbiology|Green algae|Preserved|Other|REGION UNKNOWN|Unknown','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,24,NULL),(350,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|Africa','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,13,24,NULL),(351,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|Asia Temperate','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,15,24,NULL),(352,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|Asia Tropical','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,16,24,NULL),(353,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|Australasia','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,17,24,NULL),(354,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|Europe','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,18,24,NULL),(355,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|North America','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,19,24,NULL),(356,'Microbiology|Green algae|Preserved|Other|TERRESTRIAL|South America ','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,21,24,NULL),(357,'Microbiology|Yeast & funghi|Preserved|Unspecified|REGION UNKNOWN|Unknown','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,30,NULL),(358,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|Africa','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,30,NULL),(359,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|Asia Temperate','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,15,30,NULL),(360,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,30,NULL),(361,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|Australasia','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,17,30,NULL),(362,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|Europe','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,30,NULL),(363,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|North America','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,30,NULL),(364,'Microbiology|Yeast & funghi|Preserved|Unspecified|TERRESTRIAL|South America ','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,30,NULL),(365,'Microbiology|Yeast & funghi|Preserved|Microscope slides|TERRESTRIAL|Africa','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,30,NULL),(366,'Microbiology|Yeast & funghi|Preserved|Microscope slides|TERRESTRIAL|Europe','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,30,NULL),(367,'Microbiology|Yeast & funghi|Preserved|Microscope slides|TERRESTRIAL|North America','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,19,30,NULL),(368,'Microbiology|Yeast & funghi|Preserved|Other|REGION UNKNOWN|Unknown','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,30,NULL),(369,'Microbiology|Yeast & funghi|Preserved|Other|TERRESTRIAL|Europe','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,18,30,NULL),(370,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|TERRESTRIAL|Africa','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,40,NULL),(371,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,40,NULL),(372,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|TERRESTRIAL|Africa','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,13,40,NULL),(373,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|TERRESTRIAL|Asia Temperate','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,15,40,NULL),(374,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|TERRESTRIAL|Asia Tropical','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,16,40,NULL),(375,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|TERRESTRIAL|Europe','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,18,40,NULL),(376,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|TERRESTRIAL|Africa','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,13,41,NULL),(377,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,42,NULL),(378,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,42,NULL),(379,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,42,NULL),(380,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,42,NULL),(381,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|TERRESTRIAL|Europe','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,42,NULL),(382,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,43,NULL),(383,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,43,NULL),(384,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,43,NULL),(385,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|TERRESTRIAL|Europe','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,43,NULL),(386,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Microscope slides|TERRESTRIAL|Africa','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,43,NULL),(387,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Other|TERRESTRIAL|Africa','',6,'Preserved','Other','inventory',NULL,'',NULL,NULL,13,43,NULL),(388,'Zoology Invertebrates|Porifera (sponges)|Preserved|Dried - not assembled|TERRESTRIAL|Africa','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,13,44,NULL),(389,'Zoology Invertebrates|Porifera (sponges)|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,44,NULL),(390,'Zoology Invertebrates|Porifera (sponges)|Preserved|Microscope slides|TERRESTRIAL|Africa','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,44,NULL),(391,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|REGION UNKNOWN|Unknown','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,45,NULL),(392,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|TERRESTRIAL|Africa','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,45,NULL),(393,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|TERRESTRIAL|Europe','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,45,NULL),(394,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|TERRESTRIAL|South America ','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,45,NULL),(395,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|REGION UNKNOWN|Unknown','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,46,NULL),(396,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Africa','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,46,NULL),(397,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Antarctica ','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,14,46,NULL),(398,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Asia Temperate','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,15,46,NULL),(399,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,46,NULL),(400,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Australasia','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,17,46,NULL),(401,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Europe','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,46,NULL),(402,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|North America','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,46,NULL),(403,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|Pacific ','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,20,46,NULL),(404,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|TERRESTRIAL|South America ','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,46,NULL),(405,'Zoology Vertebrates|Fishes|Preserved|Unspecified|FRESHWATER|Africa','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,2,33,NULL),(406,'Zoology Vertebrates|Fishes|Preserved|Dried - assembled|FRESHWATER|Africa','',6,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,2,33,NULL),(407,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,33,NULL),(408,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,2,33,NULL),(409,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|Asia Temperate','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,4,33,NULL),(410,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|Asia Tropical','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,5,33,NULL),(411,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|Europe','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,7,33,NULL),(412,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|North America','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,8,33,NULL),(413,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|Pacific ','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,9,33,NULL),(414,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|FRESHWATER|South America ','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,10,33,NULL),(415,'Zoology Vertebrates|Fishes|Preserved|Frozen (not Biobank)|FRESHWATER|Africa','',6,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,2,33,NULL),(416,'Zoology Vertebrates|Fishes|Preserved|Other (fin clips in ethanol)|FRESHWATER|Africa','',6,'Preserved','Other (fin clips in ethanol)','inventory',NULL,'',NULL,NULL,2,33,NULL),(417,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,34,NULL),(418,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,34,NULL),(419,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,34,NULL),(420,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,34,NULL),(421,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|Europe','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,34,NULL),(422,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|North America','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,19,34,NULL),(423,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|South America ','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,34,NULL),(424,'Zoology Vertebrates|Reptiles|Preserved|Dried - not assembled|TERRESTRIAL|Africa','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,13,35,NULL),(425,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,35,NULL),(426,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,35,NULL),(427,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,35,NULL),(428,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|Asia Tropical','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,16,35,NULL),(429,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|Europe','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,35,NULL),(430,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|North America','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,19,35,NULL),(431,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|South America ','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,35,NULL),(432,'Zoology Vertebrates|Reptiles|Preserved|Frozen (not Biobank)|TERRESTRIAL|Africa','',6,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,13,35,NULL),(433,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|REGION UNKNOWN|Unknown','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,12,36,NULL),(434,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|Africa','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,13,36,NULL),(435,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|Asia Temperate','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,15,36,NULL),(436,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|Asia Tropical','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,16,36,NULL),(437,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|Australasia','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,17,36,NULL),(438,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|Europe','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,18,36,NULL),(439,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|South America ','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,21,36,NULL),(440,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|MARINE |World/NA','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,38,36,NULL),(441,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|TERRESTRIAL|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,13,36,NULL),(442,'Zoology Vertebrates|Mammals|Preserved|Unspecified|REGION UNKNOWN|Unknown','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,37,NULL),(443,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|Africa','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,13,37,NULL),(444,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|Asia Temperate','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,15,37,NULL),(445,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|Asia Tropical','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,16,37,NULL),(446,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|Europe','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,18,37,NULL),(447,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|North America','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,19,37,NULL),(448,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|South America ','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,21,37,NULL),(449,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|REGION UNKNOWN|Unknown','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(450,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Africa','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,13,18,NULL),(451,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Asia Temperate','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,15,18,NULL),(452,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Asia Tropical','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,16,18,NULL),(453,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Australasia','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,17,18,NULL),(454,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Europe','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(455,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|North America','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(456,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|Pacific ','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,20,18,NULL),(457,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|TERRESTRIAL|South America ','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,21,18,NULL),(458,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|FRESHWATER|Africa','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,2,18,NULL),(459,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|FRESHWATER|Africa','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,2,18,NULL),(460,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,18,NULL),(461,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Africa','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,18,NULL),(462,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,18,NULL),(463,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,18,NULL),(464,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Australasia','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,17,18,NULL),(465,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Europe','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,18,NULL),(466,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|North America','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,19,18,NULL),(467,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|Pacific ','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,20,18,NULL),(468,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|South America ','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,18,NULL),(469,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|FRESHWATER|Africa','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,2,18,NULL),(470,'Macroscopic algae, fungi, plants|Fern & fern allies|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|World/NA','',7,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,22,17,NULL),(471,'Macroscopic algae, fungi, plants|Fern & fern allies|Living|Greenhouses|TERRESTRIAL|World/NA','',7,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,22,17,NULL),(472,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|TERRESTRIAL|World/NA','',7,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,22,18,NULL),(473,'Macroscopic algae, fungi, plants|Seed plants|Living|Greenhouses|TERRESTRIAL|World/NA','',7,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,22,18,NULL),(474,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|REGION UNKNOWN|Unknown','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,12,19,NULL),(475,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|Africa','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,19,NULL),(476,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|Asia Tropical','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,16,19,NULL),(477,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|Australasia','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,17,19,NULL),(478,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|Europe','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,19,NULL),(479,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|North America','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,19,19,NULL),(480,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|South America ','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,19,NULL),(481,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|TERRESTRIAL|World/NA','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,22,19,NULL),(482,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|TERRESTRIAL|Africa','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,18,NULL),(483,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|TERRESTRIAL|Asia Tropical','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,16,18,NULL),(484,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|TERRESTRIAL|Australasia','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,17,18,NULL),(485,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|TERRESTRIAL|South America ','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,18,NULL),(486,'Macroscopic algae, fungi, plants|Seed plants|Biobank|Tissue (or matrix)|TERRESTRIAL|South America ','',7,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,21,18,NULL),(487,'Macroscopic algae, fungi, plants|Seed plants|Biobank|Tissue (or matrix)|TERRESTRIAL|World/NA','',7,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,22,18,NULL),(488,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Biobank|DNA/RNA|TERRESTRIAL|Europe','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,43,NULL),(489,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|REGION UNKNOWN|Unknown','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,12,46,NULL),(490,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|TERRESTRIAL|Africa','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,13,46,NULL),(491,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|TERRESTRIAL|Asia Tropical','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,16,46,NULL),(492,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|TERRESTRIAL|Europe','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,18,46,NULL),(493,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|MARINE |North Pacific: deep sea','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,32,46,NULL),(494,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|FRESHWATER|World/NA','',7,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,11,31,NULL),(495,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|MARINE |World/NA','',7,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,38,31,NULL),(496,'Zoology Vertebrates|Fishes|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,33,NULL),(497,'Zoology Invertebrates|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(498,'Geology|Sediment|NA|Sediment sample|REGION UNKNOWN|Unknown','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,12,58,NULL),(499,'Zoology Vertebrates|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(500,'Zoology Vertebrates|Fishes|Preserved|Microscope slides|MARINE |World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,38,33,NULL),(501,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,33,NULL),(502,'Zoology Vertebrates|Fishes|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,33,NULL),(503,'Zoology Vertebrates|Amphibians|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,34,NULL),(504,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|Europe','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,35,NULL),(505,'Zoology Vertebrates|Reptiles|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,35,NULL),(506,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|TERRESTRIAL|Europe','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,36,NULL),(507,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|TERRESTRIAL|South America ','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,21,36,NULL),(508,'Zoology Vertebrates|Birds|Preserved|Microscope slides|TERRESTRIAL|Europe','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,36,NULL),(509,'Zoology Vertebrates|Birds|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,36,NULL),(510,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|TERRESTRIAL|Asia Temperate','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,15,46,NULL),(511,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Asia Temperate','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,15,46,NULL),(512,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Europe','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,18,46,NULL),(513,'Geology|Unspecified|NA|Unspecified|REGION UNKNOWN|Unknown','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(514,'Geology|Rocks|NA|Microscope slides|REGION UNKNOWN|Unknown','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,12,56,NULL),(515,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|Africa','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,13,56,NULL),(516,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|Asia Temperate','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,15,56,NULL),(517,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|Asia Tropical','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,16,56,NULL),(518,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|Australasia','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,17,56,NULL),(519,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|Europe','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,18,56,NULL),(520,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|North America','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,19,56,NULL),(521,'Geology|Rocks|NA|Microscope slides|TERRESTRIAL|South America ','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,21,56,NULL),(522,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Africa','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,13,58,NULL),(523,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Antarctica ','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,14,58,NULL),(524,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Asia Temperate','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,15,58,NULL),(525,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Asia Tropical','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,16,58,NULL),(526,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Australasia','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,17,58,NULL),(527,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|Europe','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,18,58,NULL),(528,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|North America','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,19,58,NULL),(529,'Geology|Sediment|NA|Sediment sample|TERRESTRIAL|South America ','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,21,58,NULL),(530,'Palaeontology|Unspecified|Fossil|Unspecified|TERRESTRIAL|Europe','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,18,11,NULL),(531,'Palaeontology|Botany|Fossil|Unspecified|TERRESTRIAL|Europe','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,18,48,NULL),(532,'Palaeontology|Invertebrates|Fossil|Unspecified|REGION UNKNOWN|Unknown','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,50,NULL),(533,'Geology|Rocks|NA|Unspecified|REGION UNKNOWN|Unknown','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,12,56,NULL),(534,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|Africa','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,13,56,NULL),(535,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|Asia Temperate','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,15,56,NULL),(536,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|Asia Tropical','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,16,56,NULL),(537,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|Europe','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,18,56,NULL),(538,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|North America','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,19,56,NULL),(539,'Geology|Rocks|NA|Unspecified|TERRESTRIAL|South America ','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,21,56,NULL),(540,'Geology|Minerals|NA|Unspecified|REGION UNKNOWN|Unknown','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,12,57,NULL),(541,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|Africa','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,13,57,NULL),(542,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|Asia Temperate','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,15,57,NULL),(543,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|Asia Tropical','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,16,57,NULL),(544,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|Australasia','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,17,57,NULL),(545,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|Europe','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,18,57,NULL),(546,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|North America','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,19,57,NULL),(547,'Geology|Minerals|NA|Unspecified|TERRESTRIAL|South America ','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,21,57,NULL),(548,'Geology|Sediment|NA|Sediment core|TERRESTRIAL|Africa','',7,'NA','Sediment core','inventory',NULL,'',NULL,NULL,13,58,NULL),(549,'Geology|Sediment|NA|Unspecified|REGION UNKNOWN|Unknown','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,12,58,NULL),(550,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|Africa','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,13,12,NULL),(551,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|Asia Temperate','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,15,12,NULL),(552,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|Asia Tropical','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,16,12,NULL),(553,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|Europe','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,18,12,NULL),(554,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|North America','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,19,12,NULL),(555,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,22,12,NULL),(556,'Palaeontology|Unspecified|Fossil|Unspecified|REGION UNKNOWN|Unknown','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(557,'Palaeontology|Botany|Fossil|Unspecified|REGION UNKNOWN|Unknown','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,48,NULL),(558,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|REGION UNKNOWN|Unknown','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,12,48,NULL),(559,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Africa','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,13,48,NULL),(560,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Asia Temperate','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,15,48,NULL),(561,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Asia Tropical','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,16,48,NULL),(562,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Australasia','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,17,48,NULL),(563,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Europe','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,18,48,NULL),(564,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|North America','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,19,48,NULL),(565,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|South America ','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,21,48,NULL),(566,'Palaeontology|Invertebrates|Fossil|Unspecified|TERRESTRIAL|Europe','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,18,50,NULL),(567,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|REGION UNKNOWN|Unknown','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,12,50,NULL),(568,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Africa','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,13,50,NULL),(569,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Europe','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,18,50,NULL),(570,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|North America','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,19,50,NULL),(571,'Palaeontology|Vertebrates|Fossil|Unspecified|REGION UNKNOWN|Unknown','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,51,NULL),(572,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|REGION UNKNOWN|Unknown','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,12,51,NULL),(573,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Africa','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,13,51,NULL),(574,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Asia Temperate','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,15,51,NULL),(575,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Europe','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,18,51,NULL),(576,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|North America','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,19,51,NULL),(577,'Palaeontology|Trace fossils|Fossil|Unspecified|REGION UNKNOWN|Unknown','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,12,52,NULL),(578,'Palaeontology|Trace fossils|Fossil|Unspecified|TERRESTRIAL|Europe','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,18,52,NULL),(579,'Palaeontology|Trace fossils|Fossil|Dry preserved: Macrofossils|REGION UNKNOWN|Unknown','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,12,52,NULL),(580,'Palaeontology|Trace fossils|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Africa','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,13,52,NULL),(581,'Palaeontology|Trace fossils|Fossil|Dry preserved: Macrofossils|TERRESTRIAL|Europe','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,18,52,NULL),(582,'Palaeontology|Microfossils|Fossil|Dry preserved: Microfossils|TERRESTRIAL|Africa','',7,'Fossil','Dry preserved: Microfossils','inventory',NULL,'',NULL,NULL,13,53,NULL),(583,'Palaeontology|Microfossils|Fossil|Dry preserved: Microfossils|TERRESTRIAL|Europe','',7,'Fossil','Dry preserved: Microfossils','inventory',NULL,'',NULL,NULL,18,53,NULL),(584,'Geology|Rocks|NA|Macro-object|REGION UNKNOWN|Unknown','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,12,56,NULL),(585,'Geology|Rocks|NA|Macro-object|TERRESTRIAL|Europe','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,18,56,NULL),(586,'Geology|Minerals|NA|Macro-object|TERRESTRIAL|Asia Tropical','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,16,57,NULL),(587,'Geology|Minerals|NA|Macro-object|TERRESTRIAL|Europe','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,18,57,NULL),(588,'Geology|Sediment|NA|Sediment core|TERRESTRIAL|Europe','',7,'NA','Sediment core','inventory',NULL,'',NULL,NULL,18,58,NULL),(589,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(590,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,12,36,NULL),(591,'Zoology Vertebrates|Mammals|Preserved|Dried - not assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,12,37,NULL),(592,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,40,NULL),(593,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,45,NULL),(594,'Geology|Rocks|NA|Macro-object|TERRESTRIAL|South America ','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,21,56,NULL),(595,'Zoology Vertebrates|Mammals|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,37,NULL),(596,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,18,NULL),(597,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|TERRESTRIAL|World/NA','',7,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,22,18,NULL),(598,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Dried|TERRESTRIAL|World/NA','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,22,19,NULL),(599,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,19,NULL),(600,'Geology|Minerals|NA|Hazardous material/objects|REGION UNKNOWN|Unknown','',7,'NA','Hazardous material/objects','inventory',NULL,'',NULL,NULL,12,57,NULL),(601,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,15,NULL),(602,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|TERRESTRIAL|World/NA','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,22,16,NULL),(603,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|REGION UNKNOWN|Unknown','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(604,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,18,NULL),(605,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,18,NULL),(606,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Africa','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,13,18,NULL),(607,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Asia Temperate','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,15,18,NULL),(608,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Asia Tropical','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,16,18,NULL),(609,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Australasia','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,17,18,NULL),(610,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Europe','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,18,18,NULL),(611,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|North America','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,19,18,NULL),(612,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|Pacific ','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,20,18,NULL),(613,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|South America ','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,21,18,NULL),(614,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|TERRESTRIAL|World/NA','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,22,18,NULL),(615,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,19,NULL),(616,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|REGION UNKNOWN|Unknown','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,12,19,NULL),(617,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Spore print|REGION UNKNOWN|Unknown','',7,'Preserved','Spore print','inventory',NULL,'',NULL,NULL,12,19,NULL),(618,'Zoology Vertebrates|Fishes|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,33,NULL),(619,'Zoology Vertebrates|Fishes|Preserved|Dried - not assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,12,33,NULL),(620,'Zoology Vertebrates|Reptiles|Preserved|Dried - assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,22,35,NULL),(621,'Zoology Vertebrates|Reptiles|Preserved|Dried - not assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,22,35,NULL),(622,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,22,36,NULL),(623,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,22,36,NULL),(624,'Zoology Vertebrates|Mammals|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,37,NULL),(625,'Zoology Vertebrates|Mammals|Preserved|Dried - assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,22,37,NULL),(626,'Zoology Vertebrates|Mammals|Preserved|Dried - not assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,22,37,NULL),(627,'Zoology Vertebrates|Unspecified|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,11,NULL),(628,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,35,NULL),(629,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,36,NULL),(630,'Zoology Vertebrates|Mammals|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,37,NULL),(631,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|TERRESTRIAL|South America ','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,21,46,NULL),(632,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,46,NULL),(633,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Africa','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,13,46,NULL),(634,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|Asia Tropical','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,16,46,NULL),(635,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|TERRESTRIAL|South America ','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,21,46,NULL),(636,'Microbiology|Protozoa|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,27,NULL),(637,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Microscope slides|REGION UNKNOWN|Unknown','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,12,42,NULL),(638,'Zoology Invertebrates|Invertebrates other|Preserved|Dried - not assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,12,46,NULL),(639,'Anthropology |Human Biology|Preserved|Fluid preserved|TERRESTRIAL|Europe','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,18,12,NULL),(640,'Microbiology|Unspecified|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(641,'Microbiology|Unspecified|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(642,'Microbiology|Protozoa|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,27,NULL),(643,'Microbiology|Protozoa|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,27,NULL),(644,'Microbiology|Microbiology other|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,31,NULL),(645,'Microbiology|Microbiology other|Preserved|Microscope slides|TERRESTRIAL|World/NA','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,22,31,NULL),(646,'Zoology Vertebrates|Unspecified|Unspecified|Unspecified|REGION UNKNOWN|Unknown','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,12,11,NULL),(647,'Zoology Vertebrates|Fishes|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,33,NULL),(648,'Zoology Vertebrates|Fishes|Preserved|Other|TERRESTRIAL|North America','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,19,33,NULL),(649,'Zoology Vertebrates|Amphibians|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,34,NULL),(650,'Zoology Vertebrates|Amphibians|Preserved|Dried - assembled|TERRESTRIAL|World/NA','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,22,34,NULL),(651,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|TERRESTRIAL|World/NA','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,22,34,NULL),(652,'Zoology Vertebrates|Amphibians|Preserved|Other|TERRESTRIAL|World/NA','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,22,34,NULL),(653,'Zoology Vertebrates|Reptiles|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,35,NULL),(654,'Zoology Vertebrates|Reptiles|Preserved|Other|TERRESTRIAL|World/NA','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,22,35,NULL),(655,'Zoology Vertebrates|Birds|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,36,NULL),(656,'Zoology Vertebrates|Birds|Preserved|Other|TERRESTRIAL|World/NA','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,22,36,NULL),(657,'Zoology Vertebrates|Mammals|Preserved|Unspecified|TERRESTRIAL|World/NA','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,22,37,NULL),(658,'Zoology Vertebrates|Mammals|Preserved|Other|TERRESTRIAL|World/NA','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,22,37,NULL),(659,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,40,NULL),(660,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,40,NULL),(661,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,40,NULL),(662,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,40,NULL),(663,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,41,NULL),(664,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,41,NULL),(665,'Zoology Invertebrates|Arthropods - other insects|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,41,NULL),(666,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,42,NULL),(667,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,42,NULL),(668,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,42,NULL),(669,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,43,NULL),(670,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,43,NULL),(671,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,43,NULL),(672,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,43,NULL),(673,'Zoology Invertebrates|Porifera (sponges)|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,44,NULL),(674,'Zoology Invertebrates|Porifera (sponges)|Preserved|Dried - assembled|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,12,44,NULL),(675,'Zoology Invertebrates|Porifera (sponges)|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,44,NULL),(676,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,45,NULL),(677,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,45,NULL),(678,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,45,NULL),(679,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|REGION UNKNOWN|Unknown','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,12,46,NULL),(680,'Zoology Invertebrates|Invertebrates other|Preserved|Dried - pinned|REGION UNKNOWN|Unknown','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,12,46,NULL),(681,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|REGION UNKNOWN|Unknown','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,12,46,NULL),(682,'Zoology Invertebrates|Invertebrates other|Preserved|Other|REGION UNKNOWN|Unknown','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,12,46,NULL),(683,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',1,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(684,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',1,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(685,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',1,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,18,NULL),(686,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|ALL REGIONS (TOTAL)|All regions (total)','',1,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,1,18,NULL),(687,'Macroscopic algae, fungi, plants|Seed plants|Living|Greenhouses|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,1,18,NULL),(688,'Macroscopic algae, fungi, plants|Seed plants|Living|Crypreserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Crypreserved','inventory',NULL,'',NULL,NULL,1,18,NULL),(689,'Microbiology|Bacteria & Archaea|Living|Cultures: frozen|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,1,22,NULL),(690,'Geology|Sediment|NA|Sediment sample|ALL REGIONS (TOTAL)|All regions (total)','',2,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,1,58,NULL),(691,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,40,NULL),(692,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,40,NULL),(693,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,40,NULL),(694,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,40,NULL),(695,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,41,NULL),(696,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,41,NULL),(697,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,41,NULL),(698,'Zoology Invertebrates|Arthropods - other insects|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,41,NULL),(699,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,42,NULL),(700,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,42,NULL),(701,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,42,NULL),(702,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,43,NULL),(703,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,45,NULL),(704,'Zoology Invertebrates|Invertebrates other|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,46,NULL),(705,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,46,NULL),(706,'Zoology Vertebrates|Fishes|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,33,NULL),(707,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,45,NULL),(708,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,33,NULL),(709,'Zoology Vertebrates|Fishes|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,33,NULL),(710,'Zoology Vertebrates|Mammals|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,37,NULL),(711,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,43,NULL),(712,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,43,NULL),(713,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,43,NULL),(714,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|Tissue (or matrix)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,1,45,NULL),(715,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,45,NULL),(716,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,45,NULL),(717,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,46,NULL),(718,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,46,NULL),(719,'Zoology Invertebrates|Invertebrates other|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,46,NULL),(720,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,64,NULL),(721,'Microbiology|Yeast & funghi|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,30,NULL),(722,'Microbiology|Yeast & funghi|Living|Cultures: frozen|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Cultures: frozen','inventory',NULL,'',NULL,NULL,1,30,NULL),(723,'Microbiology|Microbiology other|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,31,NULL),(724,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,1,31,NULL),(725,'Zoology Invertebrates|Invertebrates other|Living|In vivo (not the wild/in zoos/ex situ)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','In vivo (not the wild/in zoos/ex situ)','inventory',NULL,'',NULL,NULL,1,46,NULL),(726,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,46,NULL),(727,'Zoology Vertebrates|Fishes|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,33,NULL),(728,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,1,18,NULL),(729,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,22,NULL),(730,'Microbiology|Bacteria & Archaea|Preserved|Frozen|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,1,22,NULL),(731,'Microbiology|Bacteria & Archaea|Living|Other|ALL REGIONS (TOTAL)|All regions (total)','',2,'Living','Other','inventory',NULL,'',NULL,NULL,1,22,NULL),(732,'Microbiology|Bacteria & Archaea|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,22,NULL),(733,'Microbiology|Virus - plant|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',2,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,29,NULL),(734,'Microbiology|Virus - plant|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',2,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,29,NULL),(735,'Microbiology|Virus - plant|Active|Other|ALL REGIONS (TOTAL)|All regions (total)','',2,'Active','Other','inventory',NULL,'',NULL,NULL,1,29,NULL),(736,'Microbiology|Virus - plant|Preserved|Frozen|ALL REGIONS (TOTAL)|All regions (total)','',2,'Preserved','Frozen','inventory',NULL,'',NULL,NULL,1,29,NULL),(737,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,18,NULL),(738,'Microbiology|Bacteria & Archaea|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,22,NULL),(739,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,33,NULL),(740,'Zoology Vertebrates|Amphibians|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,34,NULL),(741,'Zoology Vertebrates|Reptiles|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,35,NULL),(742,'Zoology Vertebrates|Mammals|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,37,NULL),(743,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,40,NULL),(744,'Zoology Invertebrates|Arthropods - other insects|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,41,NULL),(745,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,45,NULL),(746,'Multiple disciplines|Multiple taxonomic groups|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',3,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,64,NULL),(747,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (in the wild/in situ)|ALL REGIONS (TOTAL)|All regions (total)','',3,'Living','Outdoors (in the wild/in situ)','inventory',NULL,'',NULL,NULL,1,18,NULL),(748,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|ALL REGIONS (TOTAL)|All regions (total)','',3,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,1,18,NULL),(749,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|ALL REGIONS (TOTAL)|All regions (total)','',3,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,1,18,NULL),(750,'Geology|Sediment|NA|Sediment sample|ALL REGIONS (TOTAL)|All regions (total)','',3,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,1,58,NULL),(751,'Geology|Minerals|NA|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'NA','Unspecified','inventory',NULL,'',NULL,NULL,1,57,NULL),(752,'Palaeontology|Botany|Fossil|Dry preserved: Mesofossils|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Dry preserved: Mesofossils','inventory',NULL,'',NULL,NULL,1,48,NULL),(753,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,50,NULL),(754,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,51,NULL),(755,'Palaeontology|Microfossils|Fossil|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Microscope slides','inventory',NULL,'',NULL,NULL,1,53,NULL),(756,'Geology|Sediment|NA|Soil monoliths|ALL REGIONS (TOTAL)|All regions (total)','',4,'NA','Soil monoliths','inventory',NULL,'',NULL,NULL,1,58,NULL),(757,'Anthropology |Human Biology|Preserved|Dried/skeletonized - assemblaged|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Dried/skeletonized - assemblaged','inventory',NULL,'',NULL,NULL,1,12,NULL),(758,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,1,12,NULL),(759,'Anthropology |Human Biology|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,12,NULL),(760,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(761,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,18,NULL),(762,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,19,NULL),(763,'Macroscopic algae, fungi, plants|Macroscopic algae, fungi, plants: other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,20,NULL),(764,'Zoology Vertebrates|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(765,'Zoology Vertebrates|Fishes|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,33,NULL),(766,'Zoology Vertebrates|Amphibians|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,34,NULL),(767,'Zoology Vertebrates|Reptiles|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,35,NULL),(768,'Zoology Vertebrates|Birds|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,36,NULL),(769,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,36,NULL),(770,'Zoology Vertebrates|Mammals|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,37,NULL),(771,'Zoology Vertebrates|Vertebrates other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,38,NULL),(772,'Zoology Invertebrates|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(773,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,40,NULL),(774,'Zoology Invertebrates|Arthropods - other insects|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,41,NULL),(775,'Zoology Invertebrates|Arthropods - arachnids|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,42,NULL),(776,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,43,NULL),(777,'Zoology Invertebrates|Porifera (sponges)|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,44,NULL),(778,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,45,NULL),(779,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,46,NULL),(780,'Palaeontology|Botany|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,48,NULL),(781,'Palaeontology|Invertebrates|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,50,NULL),(782,'Palaeontology|Vertebrates|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,51,NULL),(783,'Palaeontology|Microfossils|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',4,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,53,NULL),(784,'Geology|Minerals|NA|Macro-object|ALL REGIONS (TOTAL)|All regions (total)','',4,'NA','Macro-object','inventory',NULL,'',NULL,NULL,1,57,NULL),(785,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(786,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,15,NULL),(787,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,15,NULL),(788,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,15,NULL),(789,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,15,NULL),(790,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,15,NULL),(791,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,16,NULL),(792,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,16,NULL),(793,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,16,NULL),(794,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,16,NULL),(795,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,16,NULL),(796,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,17,NULL),(797,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,17,NULL),(798,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,17,NULL),(799,'Macroscopic algae, fungi, plants|Fern & fern allies|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,17,NULL),(800,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,18,NULL),(801,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(802,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,18,NULL),(803,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,18,NULL),(804,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(805,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,19,NULL),(806,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,19,NULL),(807,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,19,NULL),(808,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,19,NULL),(809,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,19,NULL),(810,'Microbiology|Green algae|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,24,NULL),(811,'Microbiology|Green algae|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,24,NULL),(812,'Microbiology|Yeast & funghi|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,30,NULL),(813,'Microbiology|Yeast & funghi|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,30,NULL),(814,'Microbiology|Yeast & funghi|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',5,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,30,NULL),(815,'Zoology Vertebrates|Mammals|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',6,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,37,NULL),(816,'Zoology Vertebrates|Mammals|Biobank|Tissue (or matrix)|ALL REGIONS (TOTAL)|All regions (total)','',6,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,1,37,NULL),(817,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',6,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,40,NULL),(818,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Biobank|Tissue (or matrix)|ALL REGIONS (TOTAL)|All regions (total)','',6,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,1,40,NULL),(819,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,40,NULL),(820,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,40,NULL),(821,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,41,NULL),(822,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,42,NULL),(823,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,43,NULL),(824,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,43,NULL),(825,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,43,NULL),(826,'Zoology Invertebrates|Porifera (sponges)|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,44,NULL),(827,'Zoology Invertebrates|Porifera (sponges)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,44,NULL),(828,'Zoology Invertebrates|Porifera (sponges)|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,44,NULL),(829,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,45,NULL),(830,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,46,NULL),(831,'Zoology Vertebrates|Fishes|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',6,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,33,NULL),(832,'Zoology Vertebrates|Fishes|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,33,NULL),(833,'Zoology Vertebrates|Fishes|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,33,NULL),(834,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,33,NULL),(835,'Zoology Vertebrates|Fishes|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,33,NULL),(836,'Zoology Vertebrates|Fishes|Preserved|Other (fin clips in ethanol)|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Other (fin clips in ethanol)','inventory',NULL,'',NULL,NULL,1,33,NULL),(837,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,34,NULL),(838,'Zoology Vertebrates|Reptiles|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,35,NULL),(839,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,35,NULL),(840,'Zoology Vertebrates|Reptiles|Preserved|Frozen (not Biobank)|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Frozen (not Biobank)','inventory',NULL,'',NULL,NULL,1,35,NULL),(841,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,36,NULL),(842,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,36,NULL),(843,'Zoology Vertebrates|Mammals|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,37,NULL),(844,'Zoology Vertebrates|Mammals|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,37,NULL),(845,'Zoology Vertebrates|Mammals|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,37,NULL),(846,'Zoology Vertebrates|Mammals|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,37,NULL),(847,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(848,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',6,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,18,NULL),(849,'Macroscopic algae, fungi, plants|Fern & fern allies|Living|Outdoors (not in the wild/ex situ)|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,1,17,NULL),(850,'Macroscopic algae, fungi, plants|Fern & fern allies|Living|Greenhouses|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,1,17,NULL),(851,'Macroscopic algae, fungi, plants|Seed plants|Living|Outdoors (not in the wild/ex situ)|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Outdoors (not in the wild/ex situ)','inventory',NULL,'',NULL,NULL,1,18,NULL),(852,'Macroscopic algae, fungi, plants|Seed plants|Living|Greenhouses|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Greenhouses','inventory',NULL,'',NULL,NULL,1,18,NULL),(853,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,19,NULL),(854,'Macroscopic algae, fungi, plants|Seed plants|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,18,NULL),(855,'Macroscopic algae, fungi, plants|Seed plants|Biobank|Tissue (or matrix)|ALL REGIONS (TOTAL)|All regions (total)','',7,'Biobank','Tissue (or matrix)','inventory',NULL,'',NULL,NULL,1,18,NULL),(856,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,43,NULL),(857,'Zoology Invertebrates|Invertebrates other|Biobank|DNA/RNA|ALL REGIONS (TOTAL)|All regions (total)','',7,'Biobank','DNA/RNA','inventory',NULL,'',NULL,NULL,1,46,NULL),(858,'Microbiology|Microbiology other|Living|Cultures: active other (not frozen, not freeze-dried)|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Cultures: active other (not frozen, not freeze-dried)','inventory',NULL,'',NULL,NULL,1,31,NULL),(859,'Zoology Vertebrates|Fishes|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,33,NULL),(860,'Zoology Invertebrates|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(861,'Geology|Sediment|NA|Sediment sample|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Sediment sample','inventory',NULL,'',NULL,NULL,1,58,NULL),(862,'Zoology Vertebrates|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(863,'Zoology Vertebrates|Fishes|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,33,NULL),(864,'Zoology Vertebrates|Fishes|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,33,NULL),(865,'Zoology Vertebrates|Amphibians|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,34,NULL),(866,'Zoology Vertebrates|Reptiles|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,35,NULL),(867,'Zoology Vertebrates|Reptiles|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,35,NULL),(868,'Zoology Vertebrates|Birds|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,36,NULL),(869,'Zoology Vertebrates|Birds|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,36,NULL),(870,'Zoology Invertebrates|Invertebrates other|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,46,NULL),(871,'Zoology Invertebrates|Invertebrates other|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,46,NULL),(872,'Geology|Unspecified|NA|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(873,'Geology|Rocks|NA|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Microscope slides','inventory',NULL,'',NULL,NULL,1,56,NULL),(874,'Palaeontology|Unspecified|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(875,'Palaeontology|Botany|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,48,NULL),(876,'Palaeontology|Invertebrates|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,50,NULL),(877,'Geology|Rocks|NA|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,1,56,NULL),(878,'Geology|Minerals|NA|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,1,57,NULL),(879,'Geology|Sediment|NA|Sediment core|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Sediment core','inventory',NULL,'',NULL,NULL,1,58,NULL),(880,'Geology|Sediment|NA|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Unspecified','inventory',NULL,'',NULL,NULL,1,58,NULL),(881,'Anthropology |Human Biology|Preserved|Dried/skeletonized - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried/skeletonized - not assembled','inventory',NULL,'',NULL,NULL,1,12,NULL),(882,'Palaeontology|Botany|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,48,NULL),(883,'Palaeontology|Invertebrates|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,50,NULL),(884,'Palaeontology|Vertebrates|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,51,NULL),(885,'Palaeontology|Vertebrates|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,51,NULL),(886,'Palaeontology|Trace fossils|Fossil|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Unspecified','inventory',NULL,'',NULL,NULL,1,52,NULL),(887,'Palaeontology|Trace fossils|Fossil|Dry preserved: Macrofossils|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Dry preserved: Macrofossils','inventory',NULL,'',NULL,NULL,1,52,NULL),(888,'Palaeontology|Microfossils|Fossil|Dry preserved: Microfossils|ALL REGIONS (TOTAL)|All regions (total)','',7,'Fossil','Dry preserved: Microfossils','inventory',NULL,'',NULL,NULL,1,53,NULL),(889,'Geology|Rocks|NA|Macro-object|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,1,56,NULL),(890,'Geology|Minerals|NA|Macro-object|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Macro-object','inventory',NULL,'',NULL,NULL,1,57,NULL),(891,'Macroscopic algae, fungi, plants|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(892,'Zoology Vertebrates|Birds|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,36,NULL),(893,'Zoology Vertebrates|Mammals|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,37,NULL),(894,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,40,NULL),(895,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,45,NULL),(896,'Zoology Vertebrates|Mammals|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,37,NULL),(897,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,18,NULL),(898,'Macroscopic algae, fungi, plants|Seed plants|Living|Seeds/spores (in Seed bank)|ALL REGIONS (TOTAL)|All regions (total)','',7,'Living','Seeds/spores (in Seed bank)','inventory',NULL,'',NULL,NULL,1,18,NULL),(899,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,19,NULL),(900,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,19,NULL),(901,'Geology|Minerals|NA|Hazardous material/objects|ALL REGIONS (TOTAL)|All regions (total)','',7,'NA','Hazardous material/objects','inventory',NULL,'',NULL,NULL,1,57,NULL),(902,'Macroscopic algae, fungi, plants|Macroalgae|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,15,NULL),(903,'Macroscopic algae, fungi, plants|Bryophytes|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,16,NULL),(904,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Dried|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(905,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,18,NULL),(906,'Macroscopic algae, fungi, plants|Seed plants|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,18,NULL),(907,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Pressed and dried|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Pressed and dried','inventory',NULL,'',NULL,NULL,1,19,NULL),(908,'Macroscopic algae, fungi, plants|Macrofungi/Lichens|Preserved|Spore print|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Spore print','inventory',NULL,'',NULL,NULL,1,19,NULL),(909,'Zoology Vertebrates|Fishes|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,33,NULL),(910,'Zoology Vertebrates|Fishes|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,33,NULL),(911,'Zoology Vertebrates|Reptiles|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,35,NULL),(912,'Zoology Vertebrates|Reptiles|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,35,NULL),(913,'Zoology Vertebrates|Birds|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,36,NULL),(914,'Zoology Vertebrates|Mammals|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,37,NULL),(915,'Zoology Vertebrates|Mammals|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,37,NULL),(916,'Microbiology|Protozoa|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,27,NULL),(917,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,42,NULL),(918,'Zoology Invertebrates|Invertebrates other|Preserved|Dried - not assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - not assembled','inventory',NULL,'',NULL,NULL,1,46,NULL),(919,'Anthropology |Human Biology|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,12,NULL),(920,'Microbiology|Unspecified|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(921,'Microbiology|Unspecified|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(922,'Microbiology|Protozoa|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,27,NULL),(923,'Microbiology|Protozoa|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,27,NULL),(924,'Microbiology|Microbiology other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,31,NULL),(925,'Microbiology|Microbiology other|Preserved|Microscope slides|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Microscope slides','inventory',NULL,'',NULL,NULL,1,31,NULL),(926,'Zoology Vertebrates|Unspecified|Unspecified|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Unspecified','Unspecified','inventory',NULL,'',NULL,NULL,1,11,NULL),(927,'Zoology Vertebrates|Fishes|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,33,NULL),(928,'Zoology Vertebrates|Amphibians|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,34,NULL),(929,'Zoology Vertebrates|Amphibians|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,34,NULL),(930,'Zoology Vertebrates|Amphibians|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,34,NULL),(931,'Zoology Vertebrates|Amphibians|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,34,NULL),(932,'Zoology Vertebrates|Reptiles|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,35,NULL),(933,'Zoology Vertebrates|Reptiles|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,35,NULL),(934,'Zoology Vertebrates|Birds|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,36,NULL),(935,'Zoology Vertebrates|Birds|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,36,NULL),(936,'Zoology Vertebrates|Mammals|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,37,NULL),(937,'Zoology Vertebrates|Mammals|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,37,NULL),(938,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,40,NULL),(939,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,40,NULL),(940,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,40,NULL),(941,'Zoology Invertebrates|Arthropods - insects (Lepidoptera, Diptera, Hymenoptera, Coleoptera)|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,40,NULL),(942,'Zoology Invertebrates|Arthropods - other insects|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,41,NULL),(943,'Zoology Invertebrates|Arthropods - other insects|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,41,NULL),(944,'Zoology Invertebrates|Arthropods - other insects|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,41,NULL),(945,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,42,NULL),(946,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,42,NULL),(947,'Zoology Invertebrates|Arthropods - arachnids|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,42,NULL),(948,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,43,NULL),(949,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,43,NULL),(950,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,43,NULL),(951,'Zoology Invertebrates|Arthropods - crustaceans & myriapods|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,43,NULL),(952,'Zoology Invertebrates|Porifera (sponges)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,44,NULL),(953,'Zoology Invertebrates|Porifera (sponges)|Preserved|Dried - assembled|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - assembled','inventory',NULL,'',NULL,NULL,1,44,NULL),(954,'Zoology Invertebrates|Porifera (sponges)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,44,NULL),(955,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,45,NULL),(956,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Fluid preserved|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Fluid preserved','inventory',NULL,'',NULL,NULL,1,45,NULL),(957,'Zoology Invertebrates|Mollusca (bivalves, gastropods, cephalopods)|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,45,NULL),(958,'Zoology Invertebrates|Invertebrates other|Preserved|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Unspecified','inventory',NULL,'',NULL,NULL,1,46,NULL),(959,'Zoology Invertebrates|Invertebrates other|Preserved|Dried - pinned|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Dried - pinned','inventory',NULL,'',NULL,NULL,1,46,NULL),(960,'Zoology Invertebrates|Invertebrates other|Preserved|Other|ALL REGIONS (TOTAL)|All regions (total)','',7,'Preserved','Other','inventory',NULL,'',NULL,NULL,1,46,NULL),(961,'Geology|Sediment|NA|Sediment core|ALL REGIONS (TOTAL)|All regions (total)','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,1,58,NULL),(962,'Geology|Sediment|NA|Sediment core|REGION UNKNOWN|Unknown','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,12,58,NULL),(963,'Geology|Sediment|NA|Sediment core|MARINE |Indian Ocean','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,24,58,NULL),(964,'Geology|Sediment|NA|Sediment core|MARINE |North Atlantic: deep sea','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,26,58,NULL),(965,'Geology|Sediment|NA|Sediment core|MARINE |North Atlantic: shelf area & adjacent seas','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,27,58,NULL),(966,'Geology|Sediment|NA|Sediment core|MARINE |South Atlantic: deep sea','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,29,58,NULL),(967,'Geology|Sediment|NA|Sediment core|MARINE |North Pacific: deep sea','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,32,58,NULL),(968,'Geology|Sediment|NA|Sediment core|MARINE |South Pacific: shelf area & adjacent seas','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,36,58,NULL),(969,'Geology|Sediment|NA|Sediment core|MARINE |Southern Ocean','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,37,58,NULL),(970,'Geology|Sediment|NA|Sediment core|MARINE |World/NA','',8,'NA','Sediment core','inventory',NULL,'',NULL,NULL,38,58,NULL),(971,'Macroscopic algae, fungi, plants|Unspecified|Living|Unspecified|ALL REGIONS (TOTAL)|All regions (total)','',5,'Living','Unspecified','inventory',NULL,'',NULL,NULL,1,14,NULL),(972,'Macroscopic algae, fungi, plants|Unspecified|Living|Unspecified|REGION UNKNOWN|Unknown','',5,'Living','Unspecified','inventory',NULL,'',NULL,NULL,12,14,NULL),(973,'Paleontology & Anthropology | Unspecified stratigraphy','',4,'','','paleo',NULL,'',NULL,1,NULL,NULL,NULL),(974,'Paleontology & Anthropology | Cenozoic, any period','',4,'','','paleo',NULL,'',NULL,2,NULL,NULL,NULL),(975,'Paleontology & Anthropology | Cenozoic, Quaternary','',4,'','','paleo',NULL,'',NULL,3,NULL,NULL,NULL),(976,'Paleontology & Anthropology | Cenozoic, Tertiary','',4,'','','paleo',NULL,'',NULL,4,NULL,NULL,NULL),(977,'Paleontology & Anthropology | Cenozoic, Neogene','',4,'','','paleo',NULL,'',NULL,5,NULL,NULL,NULL),(978,'Paleontology & Anthropology | Cenozoic, Paleogene, Paleocene','',4,'','','paleo',NULL,'',NULL,6,NULL,NULL,NULL),(979,'Paleontology & Anthropology | Mesozoic','',4,'','','paleo',NULL,'',NULL,7,NULL,NULL,NULL),(980,'Paleontology & Anthropology | Paleozoic, Carboniferous','',4,'','','paleo',NULL,'',NULL,8,NULL,NULL,NULL),(981,'Paleontology & Anthropology | Unspecified stratigraphy','',7,'','','paleo',NULL,'',NULL,1,NULL,NULL,NULL),(982,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Quaternary','',7,'','','paleo',NULL,'',NULL,3,NULL,NULL,NULL),(983,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Quaternary, Holocene','',7,'','','paleo',NULL,'',NULL,9,NULL,NULL,NULL),(984,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Quaternary, Pleistocene','',7,'','','paleo',NULL,'',NULL,10,NULL,NULL,NULL),(985,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Neogene','',7,'','','paleo',NULL,'',NULL,5,NULL,NULL,NULL),(986,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Neogene, Pliocene','',7,'','','paleo',NULL,'',NULL,11,NULL,NULL,NULL),(987,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Neogene, Miocene','',7,'','','paleo',NULL,'',NULL,12,NULL,NULL,NULL),(988,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Paleogene','',7,'','','paleo',NULL,'',NULL,13,NULL,NULL,NULL),(989,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Paleogene, Oligocene','',7,'','','paleo',NULL,'',NULL,14,NULL,NULL,NULL),(990,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Paleogene, Eocene','',7,'','','paleo',NULL,'',NULL,15,NULL,NULL,NULL),(991,'Paleontology & Anthropology | Phanerozoic, Cenozoic, Paleogene, Paleocene','',7,'','','paleo',NULL,'',NULL,6,NULL,NULL,NULL),(992,'Paleontology & Anthropology | Phanerozoic, Mesozoic, Cretacious','',7,'','','paleo',NULL,'',NULL,16,NULL,NULL,NULL),(993,'Paleontology & Anthropology | Phanerozoic, Mesozoic, Jurassic','',7,'','','paleo',NULL,'',NULL,17,NULL,NULL,NULL),(994,'Paleontology & Anthropology | Phanerozoic, Mesozoic, Triassic','',7,'','','paleo',NULL,'',NULL,18,NULL,NULL,NULL),(995,'Paleontology & Anthropology | Phanerozoic, Paleozoic','',7,'','','paleo',NULL,'',NULL,19,NULL,NULL,NULL),(996,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Permian','',7,'','','paleo',NULL,'',NULL,20,NULL,NULL,NULL),(997,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Carboniferous','',7,'','','paleo',NULL,'',NULL,8,NULL,NULL,NULL),(998,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Devonian','',7,'','','paleo',NULL,'',NULL,21,NULL,NULL,NULL),(999,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Silurian','',7,'','','paleo',NULL,'',NULL,22,NULL,NULL,NULL),(1000,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Ordovician','',7,'','','paleo',NULL,'',NULL,23,NULL,NULL,NULL),(1001,'Paleontology & Anthropology | Phanerozoic, Paleozoic, Cambrian','',7,'','','paleo',NULL,'',NULL,24,NULL,NULL,NULL),(1002,'Paleontology & Anthropology | Proterozoic','',7,'','','paleo',NULL,'',NULL,25,NULL,NULL,NULL),(1003,'Paleontology & Anthropology | Proterozoic, Neo-proterozoic','',7,'','','paleo',NULL,'',NULL,26,NULL,NULL,NULL),(1004,'Paleontology & Anthropology | Proterozoic, Paleo-proterozoic','',7,'','','paleo',NULL,'',NULL,27,NULL,NULL,NULL),(1005,'Paleontology & Anthropology | Archean, Paleo-archean','',7,'','','paleo',NULL,'',NULL,28,NULL,NULL,NULL),(1006,'Xylarium','With its 80,000 wood samples from 13,600 different botanical species, the RMCA\'s xylarium is the third largest wood collection in the world. Its specimens come from all over the world.',6,'','','department',1,'Excel',NULL,NULL,NULL,NULL,1),(1007,'Zoology vertebrates','The collection contains almost 1,5 million specimens of fish, mammals, birds, amphibians and repriles, represented by skins, specimens preserved in alcohol, skulls and skeletons. Most specimens come from Africa. ',6,'','','department',2,'Darwin',NULL,NULL,NULL,NULL,2),(1008,'Zoology invertebrates','The collection includes more then 6,5 million of insects, spiders, molluscs and other invertebrates. The majoirity of specimens comes from Africa and represents histrorical and reference collections. ',6,'','','department',2,'Darwin, Data Perfect, Excel',NULL,NULL,NULL,NULL,3),(1009,'Biobank','',6,'','','department',3,'Excel',NULL,NULL,NULL,NULL,NULL),(1010,'VLIZ Core Database','VLIZ has a core repository (dimensions 12 x 6 x 3 m) at the Marine Station Ostend (MSO) with a capacity of about 600 D-tubes with a width of 9 cm. All cores are stocked in shelves with individual corecells which gives the opportunity to take each core directly out of the shelves. The cold store is maintained at a temperature of 7°C and is equipped with a control that generates an alarm when the temperature deviates more than two degrees from the target temperature. Most of the cores are divided longitudinal into two cores: one is the ‘workcore’ and is used to investigate the sample and perform analyses. These cores can be recognized by a black cover. The other core is used as a back-up and stays untouched (can be recognized by a red cover). The Core Database represents an inventory - with associated metadata - of each core within the VLIZ core repository.',8,'','','department',4,'',NULL,NULL,NULL,NULL,4),(1011,'Herbarium','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,5),(1012,'Zoology','',7,'','','department',NULL,'Access',NULL,NULL,NULL,NULL,6),(1013,'GWET - Bishopric (Bisdom)','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,7),(1014,'CeMoFe - Botany','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,8),(1015,'CeMoFe - Mycology','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,9),(1016,'GWET - Cranial skeletal material','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,10),(1017,'GWET - Paraffine tissue blocks','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,11),(1018,'GWET - Galapagos rocks','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,12),(1019,'GWET - Phanérogames Fr. Sigmund','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,13),(1020,'GWET - Van Der Stricht','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,14),(1021,'GWET - Van Bambeke','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,15),(1022,'GWET - Seeds','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,16),(1023,'GWET - Microscope slides Mammalia','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,17),(1024,'UGHAN - Fetusses','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,18),(1025,'Bodem_Bio-ing','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,19),(1026,'MuMo - Embyological collection','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,20),(1027,'MuMo - Skeletal collection','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,21),(1028,'MuMo - Veterinary pathology','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,22),(1029,'Geology - Paleontology','',7,'','','department',NULL,'IRUP (Inventory Reserach Unit Paleontology)',NULL,NULL,NULL,NULL,23),(1030,'Geology - MinPet - Microscope Slides Rocks','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,24),(1031,'Geology - MinPet - Microscope Slides Soil Science','',7,'','','department',NULL,'Access',NULL,NULL,NULL,NULL,25),(1032,'Geology - MinPet - Collection Paul De Paepe','',7,'','','department',NULL,'PDF',NULL,NULL,NULL,NULL,26),(1033,'Geology - MinPet - Museum collection rocks & minerals','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,27),(1034,'Geology - MinPet - Reserach collection soil samples','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,28),(1035,'Geology - MinPet - Stray collections of rocks and minerals','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,29),(1036,'Evolutionary Developmental Biology','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,30),(1037,'GWET - Radioactive minerals','',7,'','','department',NULL,'Axiell Collections',NULL,NULL,NULL,NULL,31),(1038,'Evolutionary Developmental Biology - Historical collection','',7,'','','department',NULL,'None',NULL,NULL,NULL,NULL,32),(1039,'Evolutionary Morphology','',7,'','','department',NULL,'Google Spreadsheats',NULL,NULL,NULL,NULL,33),(1040,'Nematology','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,34),(1041,'Parasitology','',7,'','','department',NULL,'Excel/PDF',NULL,NULL,NULL,NULL,35),(1042,'EMBRC - Marine Biology','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,36),(1043,'CeMoFe - EMBRC - Marine Biology','',7,'','','department',NULL,'Barcode of Life Data System',NULL,NULL,NULL,NULL,37),(1044,'Botanic Garden','',7,'','','department',NULL,'Excel',NULL,NULL,NULL,NULL,38),(1045,'Herbarium','15th largest herbarium in the world with a very important reference collection for Central Africa (Congo DR, Rwanda and Burundi) and Belgium. Contains historical collections of Martius and Van Heurck',5,'','','department',5,'BGBase',NULL,NULL,NULL,NULL,39),(1046,'Living collection','',5,'','','department',6,'BGBase',NULL,NULL,NULL,NULL,40),(1047,'Seed bank','Largest official seed bank in Belgium with a focus on the wild Belgian flora, cupper flora of Katanga and CWR of beans (Phaseoleae) and bananas (Musa)',5,'','','department',7,'BGBase',NULL,NULL,NULL,NULL,41),(1048,'Mineralogy','',7,'','','department',NULL,'No CMS yet: digitisation of collection in CollectiveAccess will start in 2022',NULL,NULL,NULL,NULL,42),(1049,'Paleontology','',7,'','','department',NULL,'No CMS yet: digitisation of collection in CollectiveAccess will start in 2022',NULL,NULL,NULL,NULL,43),(1050,'Soil Monoliths','',7,'','','department',NULL,'No CMS yet: digitisation of collection in CollectiveAccess will start in 2022; Description of 82 soil monoliths is available via website https://ees.kuleuven.be/soil-monoliths/ ',NULL,NULL,NULL,NULL,44),(1051,'Zoology Museum','',7,'','','department',NULL,'No CMS yet: digitisation of collection in CollectiveAccess will start in 2022',NULL,NULL,NULL,NULL,45),(1052,'INBO DNA collectie','A collection of DNA samples generated during INBO research activities.',3,'','','department',NULL,'Labware LIMS, Gsheets',NULL,NULL,NULL,NULL,46),(1053,'INBO Bodemarchief','A collection of soil samples generated during INBO research activities.',3,'','','department',NULL,'INBOdem (INBO) databank, Gsheets',NULL,NULL,NULL,NULL,47),(1054,'INBO Genenbronnen Bosbouw collectie','A collection of living plants and seeds generated during INBO research activities.',3,'','','department',NULL,'Genbos (INBO) databank, Gsheets',NULL,NULL,NULL,NULL,48),(1055,'Otholiths collection','Collection of fish otoliths',2,'','','department',8,'MS Excel, MS Access and in-house database',NULL,NULL,NULL,NULL,49),(1056,'Bacteria collection','Collection of strains of plant pathenogenic bacteria',2,'','','department',9,'MS Excel',NULL,NULL,NULL,NULL,50),(1057,'Marine DNA collection','Collection of DNA, eDNA and metabarcoding samples',2,'','','department',10,'MS Excel',NULL,NULL,NULL,NULL,51),(1058,'Nematode metabarcoding collection','Collection of metabarcoding samples (DNA)',2,'','','department',11,'MS Excel',NULL,NULL,NULL,NULL,52),(1059,'Macrobenthos collection','Collection of reference specimens for macrobenthos',2,'','','department',12,'In-house database',NULL,NULL,NULL,NULL,53),(1060,'Sediment samples collection','Collection of marine sediment samples',2,'','','department',13,'MS Excel',NULL,NULL,NULL,NULL,54),(1061,'Fungi collection','Collection of plant-pathenogenic fungi',2,'','','department',14,'MS Excel',NULL,NULL,NULL,NULL,55),(1062,'Culture collection (food related)','Collection of bacteria and fungi isolated from food related sources',2,'','','department',15,'MS Excel',NULL,NULL,NULL,NULL,56),(1063,'Azalea collection','Collection of (cultivars) of azalea specimens',2,'','','department',16,'MS Access',NULL,NULL,NULL,NULL,57),(1064,'Soil collection','Collection of (agricultural) soil samples',2,'','','department',17,'MS Excel',NULL,NULL,NULL,NULL,58),(1065,'Plant-pathenogenic nematode collection','Collection of reference material of plant-pathenogenic nematodes',2,'','','department',18,'MS Excel',NULL,NULL,NULL,NULL,59),(1066,'Seed collection','Collection of seeds of agricultural varieties',2,'','','department',19,'MS Excel',NULL,NULL,NULL,NULL,60),(1067,'Virology collection','Collection of viruses and phloem bacteria',2,'','','department',20,'MS Excel',NULL,NULL,NULL,NULL,61),(1068,'Entomology collection','Collection of reference material of plant-pathenogenic insects and mites',2,'','','department',21,'MS Excel',NULL,NULL,NULL,NULL,62),(1069,'Bacterial communities (metabarcoding)','Collection of bacterial communities DNA (metabarcoding)',2,'','','department',22,'MS Excel',NULL,NULL,NULL,NULL,63),(1070,'Database ARWESP','Accessions of trees and shrubs in our collection',1,'','','department',NULL,'Access',NULL,NULL,NULL,NULL,64),(1071,'Herbarium','Accessions of our herbarium vouchers ',1,'','','department',NULL,'Access',NULL,NULL,NULL,NULL,65); +/*!40000 ALTER TABLE `objectgroup` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `organisationalunit` +-- + +DROP TABLE IF EXISTS `organisationalunit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `organisationalunit` ( + `id` int NOT NULL AUTO_INCREMENT, + `hasIdentifier` int DEFAULT NULL, + `organisationalUnitName` varchar(255) DEFAULT NULL, + `hasPersonRole` int DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `organisationalunit` +-- + +LOCK TABLES `organisationalunit` WRITE; +/*!40000 ALTER TABLE `organisationalunit` DISABLE KEYS */; +INSERT INTO `organisationalunit` VALUES (1,NULL,'Arboretum Wespelaar',NULL),(2,NULL,'Flanders Research Institute for Agriculture, Fisheries and Food (ILVO)',NULL),(3,NULL,'Research Institute for Nature and Forest (INBO)',NULL),(4,NULL,'KULeuven',NULL),(5,NULL,'Meise Botanic Garden (MBG)',NULL),(6,NULL,'Royal Museum for Central Africa (RMCA)',NULL),(7,NULL,'Ghent University',NULL),(8,NULL,'Flanders Marine Institute (VLIZ)',NULL); +/*!40000 ALTER TABLE `organisationalunit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `person` +-- + +DROP TABLE IF EXISTS `person`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `person` ( + `id` int NOT NULL AUTO_INCREMENT, + `givenName` varchar(255) DEFAULT NULL, + `familyName` varchar(255) DEFAULT NULL, + `fullName` varchar(255) DEFAULT NULL, + `hasContactDetail` int DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `person` +-- + +LOCK TABLES `person` WRITE; +/*!40000 ALTER TABLE `person` DISABLE KEYS */; +INSERT INTO `person` VALUES (1,'Hans','Beeckman','Hans Beeckman',1),(2,'Didier','Van den Spiegel','Didier Van den Spiegel',2),(3,'Nathalie ','Smitz','Nathalie Smitz',3),(4,'Thomas','Vandorpe','Thomas Vandorpe',4),(5,'Ann','Bogaerts','Ann Bogaerts',5),(6,'Elke','Bellefroid','Elke Bellefroid',6),(7,'Filip','Vandelook','Filip Vandelook',7),(8,'Karen','Bekaert','Karen Bekaert',8),(9,'Bart','Cottyn','Bart Cottyn',9),(10,'Sofie','Derycke','Sofie Derycke',10),(11,'Lieven','Waeyenberghe','Lieven Waeyenberghe',11),(12,'Jan','Wittoeck','Jan Wittoeck',12),(13,'Bavo','Dewitte','Bavo Dewitte',13),(14,'Kris','Van Poucke','Kris Van Poucke',14),(15,'Ann','Vanhee','Ann Vanhee',15),(16,'Evelien','Calsyn','Evelien Calsyn',16),(17,'Tommy','D\'Hose','Tommy D\'Hose',17),(18,'Nicole','Viaene','Nicole Viaene',18),(19,'Tim','Vleugels','Tim Vleugels',19),(20,'Kris','De Jonge','Kris De Jonge',20),(21,'Johan','Witters','Johan Witters',21),(22,'Jane','Debode','Jane Debode',22); +/*!40000 ALTER TABLE `person` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `personrole` +-- + +DROP TABLE IF EXISTS `personrole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `personrole` ( + `id` int NOT NULL, + `hasPerson` int DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `fk_personRole_person1_idx` (`hasPerson`), + CONSTRAINT `fk_personRole_person1` FOREIGN KEY (`hasPerson`) REFERENCES `person` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `personrole` +-- + +LOCK TABLES `personrole` WRITE; +/*!40000 ALTER TABLE `personrole` DISABLE KEYS */; +INSERT INTO `personrole` VALUES (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(10,10),(11,11),(12,12),(13,13),(14,14),(15,15),(16,16),(17,17),(18,18),(19,19),(20,20),(21,21),(22,22); +/*!40000 ALTER TABLE `personrole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `temporalcoverage` +-- + +DROP TABLE IF EXISTS `temporalcoverage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `temporalcoverage` ( + `id` int NOT NULL, + `temporalCoverageStartDate` varchar(45) DEFAULT NULL, + `temporalCoverageEndDate` varchar(45) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `temporalcoverage` +-- + +LOCK TABLES `temporalcoverage` WRITE; +/*!40000 ALTER TABLE `temporalcoverage` DISABLE KEYS */; +INSERT INTO `temporalcoverage` VALUES (2,'1888','2021'),(3,'1862','2021'),(4,'1999','2019'),(5,'unknown',NULL),(6,'unknown',NULL),(7,'1700','1950'),(8,'unknown',NULL),(9,'unknown',NULL),(10,'1965','1994'),(11,'unknown','unknown'),(12,'1962','1962'),(13,'unknown','2019'),(14,'unknown','unknown'),(15,'unknown','unknown'),(16,'unknown','unknown'),(17,'unknown','unknown'),(18,'unknown',NULL),(19,'2014',NULL),(20,'1980','2014'),(21,'1933',NULL),(22,'unknown','unknown'),(23,'unknown',NULL),(24,'1948','1995'),(25,'1949','2018'),(26,'unknown','unknown'),(27,'unknown','unknown'),(28,'2015',NULL),(29,'unknown','unknown'),(30,'unknown',NULL),(31,'unknown','unknown'),(32,'unknown','unknown'),(33,'2006',NULL),(34,'unknown',NULL),(35,'unknown',NULL),(36,'unknown',NULL),(37,'unknown',NULL),(38,'1902',NULL),(39,'1724',NULL),(40,'1907',NULL),(41,'1966',NULL),(42,'late 19th century','\"unknown\"'),(43,'late 19th century','2020'),(44,'unknown','unknown'),(45,'unknown','unknown'),(46,'2009',NULL),(47,'1991',NULL),(48,'1978',NULL),(49,'1969',NULL),(50,'1972',NULL),(51,'2015',NULL),(52,'2018',NULL),(53,'2011',NULL),(54,'2002',NULL),(55,'1961',NULL),(56,'1997',NULL),(57,'1848',NULL),(58,'2012',NULL),(59,'unknown',NULL),(60,'1986',NULL),(61,'2008',NULL),(62,'unknown',NULL),(63,'unknown',NULL),(64,'1960',NULL),(65,'2002',NULL); +/*!40000 ALTER TABLE `temporalcoverage` 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 2023-08-04 14:20:16