changeset 6:ded3bccf2cf9

(none)
author jurzua
date Wed, 29 Oct 2014 14:07:24 +0000
parents 6e7188e9479b
children 764f47286679
files docs/caseTimeModification.txt docs/db/openmind_schema_2014.04.14.sql docs/db/openmind_schema_2014.04.15.sql docs/db/openmind_schema_2014.05.06.sql docs/db/openmind_schema_public_tables_2014.05.06.sql docs/diagrams/EDM_plus_ismi_problem.graphml docs/diagrams/EDM_plus_ismi_problem.png docs/diagrams/class_dia_Codex.graphml docs/diagrams/class_dia_Events.graphml docs/diagrams/class_dia_Events.png docs/diagrams/class_dia_Text.graphml docs/diagrams/class_dia_Witness.graphml docs/diagrams/digitalization_datamodel_01.graphml docs/diagrams/digitalization_datamodel_02.graphml docs/diagrams/echo-schema.graphml docs/diagrams/ismi_meta_data.graphml docs/diagrams/ismi_meta_data.png docs/diagrams/ismi_public_objects.graphml docs/diagrams/ismi_public_objects.png docs/diagrams/ismi_text_witness_codex.graphml docs/diagrams/ismi_text_witness_codex.png docs/diagrams/mpiwg_place.graphml docs/diagrams/mpiwg_place_class_dia.graphml docs/diagrams/public_viewer_diagram.graphml docs/docs/2013.09.13_pending_list.docx docs/docs/Normalization/Equivalence_of_transliteration_systems_latein.docx docs/docs/Normalization/diacrits_to_ignore_for_searching_arabic.doc docs/docs/Public_Transliteration/library_of_congress_rules.pdf docs/docs/Transliteration/ASCII_map.docx docs/docs/Transliteration/Arabic_2.2.pdf docs/docs/Transliteration/Arabic_Latin_conversion.doc docs/docs/Transliteration/Arabic_Latin_conversion_2014.04.05.doc docs/docs/Transliteration/Arabic_Latin_conversion_chantal.doc docs/docs/Transliteration/Arabic_Latin_conversion_duplication.doc docs/docs/Transliteration/Transliteration_convertion_table.docx docs/docs/Transliteration/romanization-issues.txt docs/docs/Transliteration/romanized_Arabic_into_Arabic.docx docs/docs/Transliteration/transliteration.pdf docs/docs/Transliteration/verdoppelung_examples.txt docs/echo/ahlwardt_no_ismi-db_2014.05.28.tab docs/echo/archiv_id_ismi_online-110412.fp7 docs/echo/archiv_id_ismi_online_2014.05.20.tab docs/echo/archiv_id_ismi_online_2014.05.23.tab docs/echo/ismi_ralf_list.tab docs/echo/ismi_ralf_list_2014.05.26.xlsx docs/echo/scans_list0.html docs/echo/scans_list0.txt docs/encoding_problem.txt docs/info.txt docs/migration.odt docs/publicView/Stabi's Codices to put online_April2014.docx docs/publicView/dynamic_page_queries.txt docs/publicView/map_codex_digitalization.txt docs/publicView/public_codices_ids.txt docs/publicView/public_viewer_diagram.png docs/publicView/stabi_codices.txt docs/springer/Author_list.txt docs/springer/Author_list.xlsx docs/springer/Result_Abbās Wasīm Efendi.html docs/springer/Result_Abbās Wasīm Efendi_files/spdi-header.css docs/springer/Result_Abbās Wasīm Efendi_files/spdi-pam.css docs/springer/registration_successful_api_keys.pdf docs/test.html
diffstat 62 files changed, 10181 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/caseTimeModification.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,5 @@
+Examples:
+297238
+
+Ok:
+58453
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/db/openmind_schema_2014.04.14.sql	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,225 @@
+-- MySQL dump 10.11
+--
+-- Host: localhost    Database: openmind
+-- ------------------------------------------------------
+-- Server version	5.0.90-log
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `join_group_role`
+--
+
+DROP TABLE IF EXISTS `join_group_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_group_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `ROLE_NAME` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_group`
+--
+
+DROP TABLE IF EXISTS `join_user_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_group` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_role`
+--
+
+DROP TABLE IF EXISTS `join_user_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `ROLE_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node`
+--
+
+DROP TABLE IF EXISTS `node`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node` (
+  `node_type` varchar(31) NOT NULL,
+  `row_id` bigint(20) NOT NULL auto_increment,
+  `binary_value` tinyblob,
+  `content_type` varchar(255) default NULL,
+  `id` bigint(20) default NULL,
+  `long_value` bigint(20) default NULL,
+  `modification_time` bigint(20) default NULL,
+  `normalized_own_value` mediumtext character set utf8,
+  `normalized_arabic_own_value` mediumtext character set utf8,
+  `object_class` varchar(255) character set utf8 default NULL,
+  `own_value` mediumtext character set utf8,
+  `status` varchar(255) default NULL,
+  `system_status` varchar(255) default NULL,
+  `type` varchar(255) default NULL,
+  `version` bigint(20) default NULL,
+  `source_id` bigint(20) default NULL,
+  `source_modif` bigint(20) default NULL,
+  `source_obj_class` varchar(255) character set utf8 default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modif` bigint(20) default NULL,
+  `target_obj_class` varchar(255) character set utf8 default NULL,
+  `user` varchar(255) default NULL,
+  `possible_value` mediumtext,
+  `public` bit(1) default b'0',
+  PRIMARY KEY  (`row_id`),
+  KEY `om_id` (`id`),
+  KEY `source_id` (`source_id`),
+  KEY `target_id` (`target_id`),
+  KEY `system_status` (`system_status`),
+  KEY `source_mod` (`source_modif`),
+  KEY `target_modif` (`target_modif`),
+  KEY `obj_class` (`object_class`)
+) ENGINE=MyISAM AUTO_INCREMENT=1414697 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node_join`
+--
+
+DROP TABLE IF EXISTS `node_join`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node_join` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `source_id` bigint(20) default NULL,
+  `source_modification_time` bigint(20) default NULL,
+  `source_sys_status` varchar(255) default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modification_time` bigint(20) default NULL,
+  `target_sys_status` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `role_permission`
+--
+
+DROP TABLE IF EXISTS `role_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `role_permission` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `permission_name` varchar(255) default NULL,
+  `role_name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `row_sequence`
+--
+
+DROP TABLE IF EXISTS `row_sequence`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `row_sequence` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `last_value` bigint(20) default NULL,
+  `name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_group`
+--
+
+DROP TABLE IF EXISTS `sys_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_group` (
+  `group_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`group_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_permission`
+--
+
+DROP TABLE IF EXISTS `sys_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_permission` (
+  `perm_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`perm_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_role`
+--
+
+DROP TABLE IF EXISTS `sys_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role` (
+  `role_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`role_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_user`
+--
+
+DROP TABLE IF EXISTS `sys_user`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `email` varchar(255) character set utf8 default NULL,
+  `first_name` varchar(255) character set utf8 default NULL,
+  `last_name` varchar(255) character set utf8 default NULL,
+  `password` varchar(255) character set utf8 default NULL,
+  `user_name` varchar(255) character set utf8 default NULL,
+  `role` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+/*!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 2014-04-14 13:07:36
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/db/openmind_schema_2014.04.15.sql	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,263 @@
+-- MySQL dump 10.11
+--
+-- Host: localhost    Database: openmind
+-- ------------------------------------------------------
+-- Server version	5.0.90-log
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `join_group_role`
+--
+
+DROP TABLE IF EXISTS `join_group_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_group_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `ROLE_NAME` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_group`
+--
+
+DROP TABLE IF EXISTS `join_user_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_group` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_role`
+--
+
+DROP TABLE IF EXISTS `join_user_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `ROLE_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node`
+--
+
+DROP TABLE IF EXISTS `node`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node` (
+  `node_type` varchar(31) NOT NULL,
+  `row_id` bigint(20) NOT NULL auto_increment,
+  `binary_value` tinyblob,
+  `content_type` varchar(255) default NULL,
+  `id` bigint(20) default NULL,
+  `long_value` bigint(20) default NULL,
+  `modification_time` bigint(20) default NULL,
+  `normalized_own_value` mediumtext character set utf8,
+  `normalized_arabic_own_value` mediumtext,
+  `object_class` varchar(255) character set utf8 default NULL,
+  `own_value` mediumtext character set utf8,
+  `status` varchar(255) default NULL,
+  `system_status` varchar(255) default NULL,
+  `type` varchar(255) default NULL,
+  `version` bigint(20) default NULL,
+  `source_id` bigint(20) default NULL,
+  `source_modif` bigint(20) default NULL,
+  `source_obj_class` varchar(255) character set utf8 default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modif` bigint(20) default NULL,
+  `target_obj_class` varchar(255) character set utf8 default NULL,
+  `user` varchar(255) default NULL,
+  `possible_value` mediumtext,
+  `public` bit(1) default b'0',
+  PRIMARY KEY  (`row_id`),
+  KEY `om_id` (`id`),
+  KEY `source_id` (`source_id`),
+  KEY `target_id` (`target_id`),
+  KEY `system_status` (`system_status`),
+  KEY `source_mod` (`source_modif`),
+  KEY `target_modif` (`target_modif`),
+  KEY `obj_class` (`object_class`)
+) ENGINE=MyISAM AUTO_INCREMENT=1414697 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node_join`
+--
+
+DROP TABLE IF EXISTS `node_join`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node_join` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `source_id` bigint(20) default NULL,
+  `source_modification_time` bigint(20) default NULL,
+  `source_sys_status` varchar(255) default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modification_time` bigint(20) default NULL,
+  `target_sys_status` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `role_permission`
+--
+
+DROP TABLE IF EXISTS `role_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `role_permission` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `permission_name` varchar(255) default NULL,
+  `role_name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `row_sequence`
+--
+
+DROP TABLE IF EXISTS `row_sequence`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `row_sequence` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `last_value` bigint(20) default NULL,
+  `name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_group`
+--
+
+DROP TABLE IF EXISTS `sys_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_group` (
+  `group_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`group_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_permission`
+--
+
+DROP TABLE IF EXISTS `sys_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_permission` (
+  `perm_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`perm_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_role`
+--
+
+DROP TABLE IF EXISTS `sys_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role` (
+  `role_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`role_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_user`
+--
+
+DROP TABLE IF EXISTS `sys_user`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `email` varchar(255) character set utf8 default NULL,
+  `first_name` varchar(255) character set utf8 default NULL,
+  `last_name` varchar(255) character set utf8 default NULL,
+  `password` varchar(255) character set utf8 default NULL,
+  `user_name` varchar(255) character set utf8 default NULL,
+  `role` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `viewer_attribute`
+--
+
+DROP TABLE IF EXISTS `viewer_attribute`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_attribute` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `page` bigint(20) default NULL,
+  `label` varchar(255) default NULL,
+  `query` varchar(255) default NULL,
+  `user` varchar(255) character set utf8 default NULL,
+  `position` int(11) default NULL,
+  `display_mode` int(11) default NULL,
+  `created` datetime default NULL,
+  `updated` datetime default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `viewer_page`
+--
+
+DROP TABLE IF EXISTS `viewer_page`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_page` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `label` varchar(255) character set utf8 default NULL,
+  `updated` datetime default NULL,
+  `created` datetime default NULL,
+  `user` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+/*!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 2014-04-16 17:13:06
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/db/openmind_schema_2014.05.06.sql	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,264 @@
+-- MySQL dump 10.11
+--
+-- Host: localhost    Database: openmind
+-- ------------------------------------------------------
+-- Server version	5.0.90-log
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `join_group_role`
+--
+
+DROP TABLE IF EXISTS `join_group_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_group_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `ROLE_NAME` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_group`
+--
+
+DROP TABLE IF EXISTS `join_user_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_group` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `GROUP_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `join_user_role`
+--
+
+DROP TABLE IF EXISTS `join_user_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `join_user_role` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `EMAIL_USER` varchar(255) default NULL,
+  `ROLE_NAME` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node`
+--
+
+DROP TABLE IF EXISTS `node`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node` (
+  `node_type` varchar(31) NOT NULL,
+  `row_id` bigint(20) NOT NULL auto_increment,
+  `binary_value` tinyblob,
+  `content_type` varchar(255) default NULL,
+  `id` bigint(20) default NULL,
+  `long_value` bigint(20) default NULL,
+  `modification_time` bigint(20) default NULL,
+  `normalized_own_value` mediumtext character set utf8,
+  `normalized_arabic_own_value` mediumtext character set utf8,
+  `object_class` varchar(255) character set utf8 default NULL,
+  `own_value` mediumtext character set utf8,
+  `status` varchar(255) default NULL,
+  `system_status` varchar(255) default NULL,
+  `type` varchar(255) default NULL,
+  `version` bigint(20) default NULL,
+  `source_id` bigint(20) default NULL,
+  `source_modif` bigint(20) default NULL,
+  `source_obj_class` varchar(255) character set utf8 default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modif` bigint(20) default NULL,
+  `target_obj_class` varchar(255) character set utf8 default NULL,
+  `user` varchar(255) default NULL,
+  `possible_value` mediumtext,
+  `public` bit(1) default b'0',
+  PRIMARY KEY  (`row_id`),
+  KEY `om_id` (`id`),
+  KEY `source_id` (`source_id`),
+  KEY `target_id` (`target_id`),
+  KEY `system_status` (`system_status`),
+  KEY `source_mod` (`source_modif`),
+  KEY `target_modif` (`target_modif`),
+  KEY `obj_class` (`object_class`)
+) ENGINE=MyISAM AUTO_INCREMENT=1417373 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `node_join`
+--
+
+DROP TABLE IF EXISTS `node_join`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `node_join` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `source_id` bigint(20) default NULL,
+  `source_modification_time` bigint(20) default NULL,
+  `source_sys_status` varchar(255) default NULL,
+  `target_id` bigint(20) default NULL,
+  `target_modification_time` bigint(20) default NULL,
+  `target_sys_status` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `role_permission`
+--
+
+DROP TABLE IF EXISTS `role_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `role_permission` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `permission_name` varchar(255) default NULL,
+  `role_name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `row_sequence`
+--
+
+DROP TABLE IF EXISTS `row_sequence`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `row_sequence` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `last_value` bigint(20) default NULL,
+  `name` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_group`
+--
+
+DROP TABLE IF EXISTS `sys_group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_group` (
+  `group_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`group_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_permission`
+--
+
+DROP TABLE IF EXISTS `sys_permission`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_permission` (
+  `perm_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`perm_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_role`
+--
+
+DROP TABLE IF EXISTS `sys_role`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role` (
+  `role_name` varchar(255) NOT NULL,
+  `description` varchar(255) default NULL,
+  PRIMARY KEY  (`role_name`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `sys_user`
+--
+
+DROP TABLE IF EXISTS `sys_user`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `email` varchar(255) character set utf8 default NULL,
+  `first_name` varchar(255) character set utf8 default NULL,
+  `last_name` varchar(255) character set utf8 default NULL,
+  `password` varchar(255) character set utf8 default NULL,
+  `user_name` varchar(255) character set utf8 default NULL,
+  `role` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `viewer_attribute`
+--
+
+DROP TABLE IF EXISTS `viewer_attribute`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_attribute` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `page` bigint(20) default NULL,
+  `label` varchar(255) default NULL,
+  `query` varchar(255) default NULL,
+  `user` varchar(255) character set utf8 default NULL,
+  `position` int(11) default NULL,
+  `display_mode` int(11) default NULL,
+  `created` datetime default NULL,
+  `updated` datetime default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `viewer_page`
+--
+
+DROP TABLE IF EXISTS `viewer_page`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_page` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `label` varchar(255) character set utf8 default NULL,
+  `updated` datetime default NULL,
+  `created` datetime default NULL,
+  `user` varchar(255) default NULL,
+  `definition` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+/*!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 2014-05-06 11:01:15
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/db/openmind_schema_public_tables_2014.05.06.sql	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,63 @@
+-- MySQL dump 10.11
+--
+-- Host: localhost    Database: openmind
+-- ------------------------------------------------------
+-- Server version	5.0.90-log
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+
+DROP TABLE IF EXISTS `viewer_attribute`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_attribute` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `page` bigint(20) default NULL,
+  `label` varchar(255) default NULL,
+  `query` varchar(255) default NULL,
+  `user` varchar(255) character set utf8 default NULL,
+  `position` int(11) default NULL,
+  `display_mode` int(11) default NULL,
+  `created` datetime default NULL,
+  `updated` datetime default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `viewer_page`
+--
+
+DROP TABLE IF EXISTS `viewer_page`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `viewer_page` (
+  `id` bigint(20) NOT NULL auto_increment,
+  `label` varchar(255) character set utf8 default NULL,
+  `updated` datetime default NULL,
+  `created` datetime default NULL,
+  `user` varchar(255) default NULL,
+  `definition` varchar(255) default NULL,
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+/*!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 2014-05-06 11:01:15
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/EDM_plus_ismi_problem.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,393 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="30.0" x="265.0" y="133.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="11.587890625" x="9.2060546875" y="5.93359375">1<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="rectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="648.0" width="215.0" x="148.0" y="105.0"/>
+          <y:Fill color="#99CCFF" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="27.712890625" x="93.6435546875" y="16.93359375">ISMI<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="-0.5" nodeRatioX="0.0" nodeRatioY="-0.47386791087962965" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="rectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="175.0" y="193.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.19140625" x="24.404296875" y="5.93359375">TEXT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="175.0" y="405.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="53.60546875" x="14.197265625" y="5.93359375">WITNESS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="175.0" y="617.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="44.62890625" x="18.685546875" y="5.93359375">CODEX</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="75.0" width="181.0" x="571.5" y="383.0"/>
+          <y:Fill color="#FF6600" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="168.056640625" x="6.4716796875" y="21.3671875">ProvidedCHO
+rdf:type=edm:PhysicalThing<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="75.0" width="181.0" x="571.5" y="171.0"/>
+          <y:Fill color="#FF6600" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="152.986328125" x="14.0068359375" y="21.3671875">ProvidedCHO
+rdf:type=edm:Manuscript<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="76.0" x="279.0" y="126.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="26.599609375" x="24.7001953125" y="5.93359375">title<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="76.0" x="483.0" y="126.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="26.599609375" x="24.7001953125" y="5.93359375">title<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="76.0" x="483.0" y="323.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="26.599609375" x="24.7001953125" y="5.93359375">title<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n10">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="75.0" width="181.0" x="571.5" y="595.0"/>
+          <y:Fill color="#FF6600" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="116.04296875" x="32.478515625" y="21.3671875">ProvidedCHO
+rdf:type=edm:XXX?<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n3" target="n4">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="84.30859375" x="2.0" y="74.88330078125">is_part_of
+[many to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n4" target="n4">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="216.0" y="632.5"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="0.0" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n4" target="n4">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="31.83333333333337" ty="0.0">
+            <y:Point x="231.91665649414062" y="624.5416870117188"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="7.958332061767578" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n3" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="2.0" y="-107.14892578125">is_exemplar_of
+[many to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n3" target="n5">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="white_delta"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.2265625" x="131.6136474609375" y="20.93359375">to_EDM+<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5705146925890386" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n2" target="n6">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="white_delta"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.2265625" x="111.8070068359375" y="20.93359375">to_EDM+<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n7" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-33.17474365234375" y="24.171228389928842"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n8" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="19.190351019965306" y="13.101777421667236"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n9" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="28.020530007102252" y="20.73542883041057"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n7" target="n8">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="white_delta"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.2265625" x="35.38671875" y="-9.06640625">to_EDM+<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n7" target="n9">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="white_delta"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.2265625" x="102.85783628836623" y="117.8934564270237">to_EDM+<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.8049291886868655" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e11" source="n4" target="n10">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="white_delta"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.2265625" x="132.8070068359375" y="20.93359375">to_EDM+<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5747632358463015" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e12" source="n5" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="19.1875" x="2.0" y="-77.56787109375">???</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e13" source="n5" target="n10">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="19.1875" x="2.0" y="59.43505859375">???</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/diagrams/EDM_plus_ismi_problem.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/class_dia_Codex.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,324 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="359.0" y="233.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="50.75048828125" x="24.624755859375" y="3.0">CODEX<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="137.0" y="178.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="90.125" x="4.9375" y="3.0">COLLECTION<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="210.0" y="87.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="359.0" y="79.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="557.0" y="110.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="88.75390625" x="5.623046875" y="3.0">REPOSITORY<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="137.0" y="278.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="190.0" y="378.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="79.88623046875" x="10.056884765625" y="3.0">REFERENCE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="359.0" y="400.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="42.44140625" x="28.779296875" y="3.0">ALIAS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n3">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="90.58984375" x="24.705078125" y="-120.97607421875">had_patron
+owned_by
+was_copied_by
+was_owned_by<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="70.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n0" target="n1">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="thead" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-111.876220703125" y="-47.84989420572916">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n0" target="n4">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="93.04416563452742" y="-56.5577392578125">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n0" target="n2">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="ttail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="30.501953125" x="-89.59592218268403" y="-107.884521484375">is_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n5" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-36.43228494323273" y="-38.468693003520684">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.0" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n6" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.9375" x="25.368056615524267" y="-31.327166025027793">is_reference_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="29.5571849112717" distanceToCenter="true" position="right" ratio="0.10180195705385159" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n0" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="514.0" y="254.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.677734375" x="49.24102783203125" y="-4.376668294270814">is_alias_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n7" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="stail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="104.482421875" x="2.0" y="-28.273193359375">is_alias_identifier</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/class_dia_Events.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,545 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="75.0" width="150.0" x="294.0" y="-19.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="123.32958984375" x="13.335205078125" y="3.0">TRANSFER_EVENT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel>date
+notes
+options_for_transfer</y:AttributeLabel>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="319.0" y="147.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="54.0" y="4.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="88.75390625" x="5.623046875" y="3.0">REPOSITORY<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="319.0" y="280.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="91.02001953125" x="4.489990234375" y="3.0">COPY_EVENT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="577.0" y="235.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="577.0" y="327.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="319.0" y="383.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="94.0" y="280.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="88.75390625" x="5.623046875" y="3.0">REPOSITORY<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="577.0" y="4.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="120.0" x="309.0" y="454.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="99.36083984375" x="10.319580078125" y="3.0">STUDY_EVENT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n10">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="94.0" y="454.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="88.75390625" x="5.623046875" y="3.0">REPOSITORY<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n11">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="577.0" y="494.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n12">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="319.0" y="538.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n13">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="577.0" y="419.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n14">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="54.0" y="147.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n2">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="130.6328125" x="-135.7999267578125" y="-46.132812500000014">was_transferred_to
+was_transferred_from<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n0" target="n1">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="130.6328125" x="-146.31640625" y="29.955478702284864">was_transferred_to
+was_transferred_from<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="81.0" distanceToCenter="true" position="right" ratio="0.5114326545194713" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n3" target="n7">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="87.68359375" x="-106.3265380859375" y="-39.06640625">was_copied_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n3" target="n6">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="87.68359375" x="-109.841796875" y="28.427001953125">was_copied_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="66.0" distanceToCenter="true" position="right" ratio="0.5" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n3" target="n4">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="stail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="151.03515625" x="120.83859049479167" y="-20.7276611328125">has_person_copying_text</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n3" target="n5">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="77.3359375" x="75.682861328125" y="42.25867531314981">is_a_copy_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n0" target="n8">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="89.4765625" x="88.274169921875" y="20.933593749999986">is_a_tranfer_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n9" target="n11">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="81.87109375" x="61.132568359375" y="37.11652198210061">is_a_study_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n9" target="n12">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.21875" x="-76.109375" y="18.947265625">was_studied_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n9" target="n10">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.21875" x="-103.5965576171875" y="-39.06640625">was_studied_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n9" target="n13">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="95.125" x="47.878662109375" y="-52.28864233223351">was_studied_by<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e11" source="n0" target="n14">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="head" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="130.6328125" x="-245.98318642064146" y="28.686934561099648">was_transferred_to
+was_transferred_from</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/diagrams/class_dia_Events.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/class_dia_Text.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,280 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="304.0" y="154.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="38.4169921875" x="30.79150390625" y="3.0">TEXT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="90.0" y="154.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="518.0" y="154.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="150.0" y="294.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="60.66552734375" x="19.667236328125" y="3.0">SUBJECT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="376.0" y="391.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="42.44140625" x="28.779296875" y="3.0">ALIAS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="219.0" y="391.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.0480259486607143" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d4"/>
+      <data key="d5"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="448.0" y="281.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="79.88623046875" x="10.056884765625" y="3.0">REFERENCE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.0480259486607143" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n2">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.001953125" x="10.973388671875" y="2.0">was_created_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n0" target="n1">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="six_pos" modelPosition="stail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="106.609375" x="-110.279052734375" y="2.0">had_patron
+was_dedicated_to
+was_created_by</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n0" target="n3">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="72.279296875" x="-137.47363183793593" y="83.05539684130542">has_subject<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="62.0" distanceToCenter="true" position="center" ratio="0.9306616949871536" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n0" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="363.0" y="47.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="112.755859375" x="-34.331562389027" y="-81.25584411621094">is_commentary_on
+is_translation_of
+is_version_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n4" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="six_pos" modelPosition="stail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="112.31640625" x="-1.0839967365506595" y="-56.5499267578125">is_alias_explicit_of
+is_alias_incipit_of
+is_alias_title_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n5" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="stail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="12.144158858287199" y="-28.2843017578125">is_exemplar_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n6" target="n0">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.9375" x="-43.864511564960594" y="-58.582763671875">is_reference_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/class_dia_Witness.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,244 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="181.0" y="130.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="61.68115234375" x="19.159423828125" y="3.0">WITNESS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="-58.0" y="130.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="56.86962890625" x="21.565185546875" y="3.0">PERSON<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="181.0" y="-61.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="42.44140625" x="28.779296875" y="3.0">ALIAS<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="404.0" y="7.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="38.4169921875" x="30.79150390625" y="3.0">TEXT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="404.0" y="130.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="50.75048828125" x="24.624755859375" y="3.0">CODEX<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d4"/>
+      <data key="d6">
+        <y:UMLClassNode>
+          <y:Geometry height="28.0" width="100.0" x="181.0" y="290.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.310546875" modelName="custom" textColor="#000000" visible="true" width="46.173828125" x="26.9130859375" y="3.0">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="-0.03703090122767855" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:UML clipContent="true" constraint="" omitDetails="false" stereotype="" use3DEffect="true">
+            <y:AttributeLabel/>
+            <y:MethodLabel/>
+          </y:UML>
+        </y:UMLClassNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n1">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="95.125" x="-117.0860595703125" y="-0.265625">had_patron
+was_copied_by
+was_created_by
+was_studied_by<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n0" target="n2">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="133.9609375" x="-145.98046875" y="-101.596923828125">has_author_written_as
+has_title_written_as<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="79.0" distanceToCenter="true" position="left" ratio="0.5331305810793322" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n0" target="n3">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="322.0" y="21.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="75.69143131499908" y="-99.91252917528904">is_exemplar_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="9.063789184085959" distanceToCenter="false" position="right" ratio="0.9999351101981476" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n0" target="n4">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="31.0201416015625" y="20.93359375">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n0" target="n5">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="white_diamond" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.001953125" x="16.9990234375" y="72.04641597644627">was_copied_in
+was_created_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="63.0" distanceToCenter="true" position="left" ratio="0.7474265405698348" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/digitalization_datamodel_01.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yEd 3.12-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="491.5" y="307.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="81.7421875" x="15.12890625" y="10.43359375">Digitalization<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="741.0" y="307.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="41.271484375" x="35.3642578125" y="10.43359375">Codex<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="910.0" y="190.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="48.58984375" x="31.705078125" y="10.43359375">Witness<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="910.0" y="388.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="30.12109375" x="40.939453125" y="10.43359375">Text<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="46.0" width="47.0" x="1098.0" y="140.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="32.34765625" x="7.326171875" y="6.8671875">start
+page<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="46.0" width="47.0" x="1104.0" y="232.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="32.34765625" x="7.326171875" y="6.8671875">end
+page<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="46.0" width="47.0" x="1157.0" y="186.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="38.23046875" x="4.384765625" y="13.93359375">Folios<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="113.67578125" x="11.90252685546875" y="20.93359375">is_digitalization_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n2" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-127.0054755288088" y="21.27551185934783">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n2" target="n3">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="-15.9306640625" y="70.45263671875">is_exemplar_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n4" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n5" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n6" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/digitalization_datamodel_02.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,250 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yEd 3.12-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="491.5" y="307.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="81.7421875" x="15.12890625" y="10.43359375">Digitalization<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="741.0" y="307.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="41.271484375" x="35.3642578125" y="10.43359375">Codex<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="910.0" y="190.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="48.58984375" x="31.705078125" y="10.43359375">Witness<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="910.0" y="388.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="30.12109375" x="40.939453125" y="10.43359375">Text<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="46.0" width="47.0" x="481.0" y="52.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="32.34765625" x="7.326171875" y="6.8671875">start
+page<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="46.0" width="47.0" x="567.0" y="52.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="custom" textColor="#000000" visible="true" width="32.34765625" x="7.326171875" y="6.8671875">end
+page<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="ellipse"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="39.0" width="112.0" x="491.5" y="195.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="69.73046875" x="21.134765625" y="10.43359375">Blank Node<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="113.67578125" x="11.90252685546875" y="20.93359375">is_digitalization_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n2" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-127.0054755288088" y="21.27551185934783">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n2" target="n3">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="-15.9306640625" y="70.45263671875">is_exemplar_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n4" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n5" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n0" target="n6">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="142.5859375" x="-149.29296875" y="-41.5703125">has_metadata/has_view<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="78.0" distanceToCenter="true" position="left" ratio="0.4108479888559986" segment="-1"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n2" target="n6">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="55.802734375" x="-181.1351318359375" y="-37.23779777860122">has_view<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/echo-schema.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1847 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0" yfiles.foldertype="group">
+      <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-chinese-text.rnc]]></data>
+      <data key="d5"><![CDATA[echo-chinese-text]]></data>
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                  <y:Geometry height="132.85509736540666" width="236.0" x="15.1279296875" y="1020.0"/>
+                  <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                  <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="112.556640625" x="61.7216796875" y="110.72228486540644">echo-chinese-text<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:StyleProperties>
+                    <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                  </y:StyleProperties>
+                  <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                  <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                  <y:BorderInsets bottom="13" bottomF="12.855097365406664" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GenericGroupNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 15</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n0:">
+        <node id="n0::n0">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="206.0" x="30.1279296875" y="1035.0"/>
+              <y:Fill color="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="202.71484375" x="1.642578125" y="5.93359375">block: head type ti, p indent, p ics<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n0::n1">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="206.0" x="30.1279296875" y="1065.0"/>
+              <y:Fill color="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="197.39453125" x="4.302734375" y="5.93359375">milestone: pb ics, lb type halfline<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n0::n2">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="206.0" x="30.1279296875" y="1095.0"/>
+              <y:Fill color="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="142.005859375" x="31.9970703125" y="5.93359375">metadata: font-families<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n1" yfiles.foldertype="group">
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+              <y:Geometry height="230.0" width="577.84955433736" x="0.0" y="757.5"/>
+              <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" textColor="#000000" visible="true" width="4.0" x="286.92477716868" y="222.0">
+                <y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:StyleProperties>
+                <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+              </y:StyleProperties>
+              <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+              <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+              <y:BorderInsets bottom="35" bottomF="35.0" left="15" leftF="15.1279296875" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GenericGroupNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n1:">
+        <node id="n1::n0" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-import-mathml.rnc]]></data>
+          <data key="d5"><![CDATA[echo-import-mathml]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="97.5" width="206.0" x="356.84955433736" y="840.0"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#C1F780" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="128.96875" x="38.515625" y="75.3671875">echo-import-mathml<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="8" bottomF="7.5" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 13</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n1::n0:">
+            <node id="n1::n0::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="176.0" x="371.84955433736" y="855.0"/>
+                  <y:Fill color="#FEFD8C" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="156.841796875" x="9.5791015625" y="5.93359375">block-scholarly: p-set-off<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n1::n0::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="176.0" x="371.84955433736" y="885.0"/>
+                  <y:Fill color="#FEFD8C" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="96.6015625" x="39.69921875" y="5.93359375">float: float.class<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n1::n1" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-gis.rnc]]></data>
+          <data key="d5"><![CDATA[echo-gis]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="70.82245131729667" width="220.5" x="121.34955433736002" y="851.6775486827033"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#C1F780" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="55.662109375" x="82.4189453125" y="48.68963881729667">echo-gis<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="11" bottomF="10.822451317296668" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 14</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n1::n1:">
+            <node id="n1::n1::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="190.5" x="136.34955433736002" y="866.6775486827033"/>
+                  <y:Fill color="#FEFD8C" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="164.142578125" x="13.1787109375" y="5.93359375">metadata: spatial, temporal<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n1::n2">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-gap.rnc]]></data>
+          <data key="d5"><![CDATA[echo-gap]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="76.22162464986002" x="30.1279296875" y="772.5"/>
+              <y:Fill color="#30D643" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="60.255859375" x="7.982882637430009" y="5.93359375">echo-gap<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n1::n3">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-de.rnc]]></data>
+          <data key="d5"><![CDATA[echo-de]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="76.22162464986002" x="30.1279296875" y="832.5"/>
+              <y:Fill color="#30D643" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="52.83203125" x="11.69479669993001" y="5.93359375">echo-de<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n1::n4">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-content-scholarly.rnc]]></data>
+          <data key="d5"><![CDATA[echo-content-scholarly]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="34.7005042016807" width="150.0" x="128.23874201243" y="772.5"/>
+              <y:Fill color="#BFF57F" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="141.4375" x="4.28125" y="8.283845850840407">echo-content-scholarly<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n1::n5">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-mathematics.rnc]]></data>
+          <data key="d5"><![CDATA[echo-mathematics]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="141.0" x="300.1279296875" y="772.5"/>
+              <y:Fill color="#C1F780" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="113.095703125" x="13.9521484375" y="5.93359375">echo-mathematics<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n2" yfiles.foldertype="group">
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+              <y:Geometry height="466.81373713746655" width="345.7392578125001" x="619.861773785384" y="429.8638115452367"/>
+              <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" textColor="#000000" visible="true" width="4.0" x="170.86962890625" y="458.81373713746655">
+                <y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:StyleProperties>
+                <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+              </y:StyleProperties>
+              <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+              <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+              <y:BorderInsets bottom="1" bottomF="1.3272965818629245" left="0" leftF="0.0" right="15" rightF="14.8681640625" top="0" topF="0.0"/>
+            </y:GenericGroupNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 3</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n2:">
+        <node id="n2::n0" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-handwritten.rnc]]></data>
+          <data key="d5"><![CDATA[echo-handwritten]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="110.5" width="181.1464843750001" x="754.4545472228839" y="769.8502521008403"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="108.40234375" x="36.372070312500114" y="88.3671875">echo-handwritten<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="21" bottomF="20.5" left="15" leftF="15.000000000000114" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 12</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n2::n0:">
+            <node id="n2::n0::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="135.0000000000001" x="785.027789410384" y="784.8502521008403"/>
+                  <y:Fill color="#FFFFFF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="136.146484375" x="-0.5732421875" y="5.93359375">content: emph type hd<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n2::n0::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="135.0000000000001" x="785.027789410384" y="814.8502521008403"/>
+                  <y:Fill color="#C6E8FF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="87.1796875" x="23.91015625" y="5.93359375">flexible model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n2::n1" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-figure.rnc]]></data>
+          <data key="d5"><![CDATA[echo-figure]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="107.3502521008403" width="165.0000000000001" x="770.027789410384" y="632.5000000000001"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="73.0" x="46.0" y="85.2174396008403">echo-figure<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="17" bottomF="17.350252100840294" left="16" leftF="16.410156250000114" right="14" rightF="13.58984375" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 11</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n2::n1:">
+            <node id="n2::n1::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="801.4379456603841" y="647.5000000000001"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="39.466796875" x="32.7666015625" y="5.93359375">image<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n2::n1::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="801.4379456603841" y="677.5000000000001"/>
+                  <y:Fill color="#C6E8FF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="76.064453125" x="14.4677734375" y="5.93359375">inline model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n2::n2" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/xhtml/echo-import-xhtml.rnc]]></data>
+          <data key="d5"><![CDATA[echo-import-xhtml]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="77.5" width="162.1796875000001" x="772.848101910384" y="540.0000000000001"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="118.498046875" x="21.8408203125" y="55.3671875">echo-import-xhtml<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="18" bottomF="17.5" left="14" leftF="14.294921875000114" right="14" rightF="14.294921875" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="73.2431640625" x="-11.62158203125" y="0.0">Folder 10</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n2::n2:">
+            <node id="n2::n2::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="103.58984375" x="802.1430237853841" y="555.0000000000001"/>
+                  <y:Fill color="#C6E8FF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="87.1796875" x="8.205078125" y="5.93359375">flexible model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n2::n3" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-note.rnc]]></data>
+          <data key="d5"><![CDATA[echo-note]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="75.27237690952666" width="163.5898437500001" x="772.143023785384" y="444.8638115452367"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="64.5859375" x="49.501953125" y="53.139564409526656">echo-note<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="15" bottomF="15.272376909526656" left="14" leftF="14.294921875000114" right="14" rightF="14.294921875" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 9</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n2::n3:">
+            <node id="n2::n3::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="801.4379456603841" y="459.8638115452367"/>
+                  <y:Fill color="#C6E8FF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="87.1796875" x="8.91015625" y="5.93359375">flexible model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n2::n4">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-float.rnc]]></data>
+          <data key="d5"><![CDATA[echo-float]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="34.7005042016807" width="76.22162464986002" x="634.861773785384" y="612.6497478991597"/>
+              <y:Fill color="#30D643" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="64.9609375" x="5.630343574930066" y="8.283845850840294">echo-float<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n3" yfiles.foldertype="group">
+      <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-block-scholarly.rnc]]></data>
+      <data key="d5"><![CDATA[echo-block-scholarly]]></data>
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                  <y:Geometry height="86.80549828178698" width="198.0000000000001" x="619.861773785384" y="202.5"/>
+                  <y:Fill color="#C1F780" color2="#C1F780" transparent="false"/>
+                  <y:BorderStyle color="#C1F780" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#BFF57F" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="128.916015625" x="34.5419921875" y="64.67268578178698">echo-block-scholarly<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:StyleProperties>
+                    <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                  </y:StyleProperties>
+                  <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                  <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                  <y:BorderInsets bottom="19" bottomF="19.30549828178698" left="0" leftF="0.0" right="0" rightF="1.1368683772161603E-13" top="0" topF="0.0"/>
+                </y:GenericGroupNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 8</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n3:">
+        <node id="n3::n0">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="37.5" width="167.99999999999994" x="634.861773785384" y="217.5"/>
+              <y:Fill color="#FEFD8C" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="82.97265625" x="42.513671875" y="9.68359375">block: p.class<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n4" yfiles.foldertype="group">
+      <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-textflows.rnc]]></data>
+      <data key="d5"><![CDATA[echo-textflows]]></data>
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                  <y:Geometry height="105.0" width="266.85795904030635" x="619.861773785384" y="82.5"/>
+                  <y:Fill color="#BFF57F" color2="#BFF57F" transparent="false"/>
+                  <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="92.23046875" x="87.31374514515323" y="82.8671875">echo-textflows<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:StyleProperties>
+                    <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                  </y:StyleProperties>
+                  <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                  <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                  <y:BorderInsets bottom="15" bottomF="15.0" left="3" leftF="3.070788364475902" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GenericGroupNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 7</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n4:">
+        <node id="n4::n0">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="233.78717067583034" x="637.93256214986" y="97.5"/>
+              <y:Fill color="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="143.1953125" x="45.29592908791517" y="5.93359375">block: head flow, p flow<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n4::n1">
+          <data key="d5"/>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="233.78717067583045" x="637.9325621498599" y="127.5"/>
+              <y:Fill color="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="215.037109375" x="9.375030650415283" y="5.93359375">milestone: pb flow, lb label, cb label<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n5" yfiles.foldertype="group">
+      <data key="d6">
+        <y:ProxyAutoBoundsNode>
+          <y:Realizers active="0">
+            <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+              <y:Geometry height="655.5" width="411.166015625" x="89.93256214986002" y="0.0"/>
+              <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+              <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" textColor="#000000" visible="true" width="4.0" x="203.5830078125" y="647.5">
+                <y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" textColor="#000000" visible="true" width="4.0" x="203.5830078125" y="325.75">
+                <y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:StyleProperties>
+                <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+              </y:StyleProperties>
+              <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+              <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+              <y:BorderInsets bottom="47" bottomF="47.0" left="58" leftF="58.1669921875" right="11" rightF="11.166015625" top="28" topF="28.0"/>
+            </y:GenericGroupNode>
+            <y:GroupNode>
+              <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+              <y:Fill color="#F5F5F5" transparent="false"/>
+              <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+              <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 1</y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+              <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+              <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+              <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+            </y:GroupNode>
+          </y:Realizers>
+        </y:ProxyAutoBoundsNode>
+      </data>
+      <graph edgedefault="directed" id="n5:">
+        <node id="n5::n0" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-text.rnc]]></data>
+          <data key="d5"><![CDATA[echo-text]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                  <y:Geometry height="105.0" width="165.0" x="309.93256214986" y="135.0"/>
+                  <y:Fill color="#C1F780" color2="#C1F780" transparent="false"/>
+                  <y:BorderStyle color="#C1F780" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#BFF57F" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="61.615234375" x="51.6923828125" y="82.8671875">echo-text<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:StyleProperties>
+                    <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#bff57f"/>
+                    <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                  </y:StyleProperties>
+                  <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                  <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                  <y:BorderInsets bottom="15" bottomF="15.0" left="18" leftF="18.1669921875" right="12" rightF="11.8330078125" top="0" topF="0.0"/>
+                </y:GenericGroupNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 4</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n5::n0:">
+            <node id="n5::n0::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="343.09955433736" y="150.0"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="98.470703125" x="3.2646484375" y="5.93359375">logical structure<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n5::n0::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="343.09955433736" y="180.0"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="89.541015625" x="7.7294921875" y="5.93359375">content blocks<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n5::n1" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-block.rnc]]></data>
+          <data key="d5"><![CDATA[echo-block]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="110.5" width="135.0" x="324.93256214986" y="287.0"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="70.146484375" x="32.4267578125" y="88.3671875">echo-block<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="21" bottomF="20.5" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 6</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n5::n1:">
+            <node id="n5::n1::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="339.93256214986" y="302.0"/>
+                  <y:Fill color="#C6E8FF" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="76.064453125" x="14.4677734375" y="5.93359375">inline model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n5::n1::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="339.93256214986" y="332.0"/>
+                  <y:Fill color="#C1F780" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="74.916015625" x="15.0419921875" y="5.93359375">exception: s<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n5::n2" yfiles.foldertype="group">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-content.rnc]]></data>
+          <data key="d5"><![CDATA[echo-content]]></data>
+          <data key="d6">
+            <y:ProxyAutoBoundsNode>
+              <y:Realizers active="0">
+                <y:ProxyAutoBoundsNode>
+                  <y:Realizers active="0">
+                    <y:GenericGroupNode configuration="com.yworks.bpmn.Artifact.withShadow">
+                      <y:Geometry height="141.0" width="157.0" x="294.93256214986" y="452.5"/>
+                      <y:Fill color="#FFFFFF" color2="#FFFFFF" transparent="false"/>
+                      <y:BorderStyle color="#FFFFFF" type="line" width="1.0"/>
+                      <y:NodeLabel alignment="center" autoSizePolicy="content" backgroundColor="#30D643" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="82.66796875" x="37.166015625" y="118.8671875">echo-content<y:LabelModel>
+                          <y:SmartNodeLabelModel distance="4.0"/>
+                        </y:LabelModel>
+                        <y:ModelParameter>
+                          <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.5" nodeRatioX="0.0" nodeRatioY="0.5" offsetX="0.0" offsetY="-4.0" upX="0.0" upY="-1.0"/>
+                        </y:ModelParameter>
+                      </y:NodeLabel>
+                      <y:StyleProperties>
+                        <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_GROUP"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.line.color" value="#000000"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+                        <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#d4d4d4"/>
+                      </y:StyleProperties>
+                      <y:State autoResize="true" closed="false" closedHeight="80.0" closedWidth="100.0"/>
+                      <y:Insets bottom="15" bottomF="15.0" left="15" leftF="15.0" right="15" rightF="15.0" top="15" topF="15.0"/>
+                      <y:BorderInsets bottom="21" bottomF="21.0" left="15" leftF="15.0" right="7" rightF="7.0" top="0" topF="0.0"/>
+                    </y:GenericGroupNode>
+                    <y:GroupNode>
+                      <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                      <y:Fill color="#F5F5F5" transparent="false"/>
+                      <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                      <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 2</y:NodeLabel>
+                      <y:Shape type="roundrectangle"/>
+                      <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                      <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                      <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                    </y:GroupNode>
+                  </y:Realizers>
+                </y:ProxyAutoBoundsNode>
+                <y:GroupNode>
+                  <y:Geometry height="50.0" width="50.0" x="0.0" y="60.0"/>
+                  <y:Fill color="#F5F5F5" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="dashed" width="1.0"/>
+                  <y:NodeLabel alignment="right" autoSizePolicy="node_width" backgroundColor="#EBEBEB" borderDistance="0.0" fontFamily="Dialog" fontSize="15" fontStyle="plain" hasLineColor="false" height="21.666015625" modelName="internal" modelPosition="t" textColor="#000000" visible="true" width="63.75830078125" x="-6.879150390625" y="0.0">Folder 5</y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                  <y:State closed="true" closedHeight="50.0" closedWidth="50.0" innerGraphDisplayEnabled="false"/>
+                  <y:Insets bottom="5" bottomF="5.0" left="5" leftF="5.0" right="5" rightF="5.0" top="5" topF="5.0"/>
+                  <y:BorderInsets bottom="0" bottomF="0.0" left="0" leftF="0.0" right="0" rightF="0.0" top="0" topF="0.0"/>
+                </y:GroupNode>
+              </y:Realizers>
+            </y:ProxyAutoBoundsNode>
+          </data>
+          <graph edgedefault="directed" id="n5::n2:">
+            <node id="n5::n2::n0">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="324.93256214986" y="467.5"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="95.6640625" x="4.66796875" y="5.93359375">plaintext model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n5::n2::n1">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="324.93256214986" y="497.5"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="76.064453125" x="14.4677734375" y="5.93359375">inline model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+            <node id="n5::n2::n2">
+              <data key="d5"/>
+              <data key="d6">
+                <y:ShapeNode>
+                  <y:Geometry height="30.0" width="105.0" x="324.93256214986" y="527.5"/>
+                  <y:Fill color="#FC938D" transparent="false"/>
+                  <y:BorderStyle color="#000000" type="line" width="1.0"/>
+                  <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="87.1796875" x="8.91015625" y="5.93359375">flexible model<y:LabelModel>
+                      <y:SmartNodeLabelModel distance="4.0"/>
+                    </y:LabelModel>
+                    <y:ModelParameter>
+                      <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                    </y:ModelParameter>
+                  </y:NodeLabel>
+                  <y:Shape type="roundrectangle"/>
+                </y:ShapeNode>
+              </data>
+            </node>
+          </graph>
+        </node>
+        <node id="n5::n3">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-start.rnc]]></data>
+          <data key="d5"><![CDATA[echo-start]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="105.0" x="264.43256214986" y="43.0"/>
+              <y:Fill color="#BFF57F" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="65.224609375" x="19.8876953125" y="5.93359375">echo-start<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n5::n4">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-metadata.rnc]]></data>
+          <data key="d5"><![CDATA[echo-metadata]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="105.0" x="163.09955433736002" y="150.0"/>
+              <y:Fill color="#BFF57F" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="92.892578125" x="6.0537109375" y="5.93359375">echo-metadata<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n5::n5">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-attribute.rnc]]></data>
+          <data key="d5"><![CDATA[echo-attribute]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="105.0" x="179.09955433736002" y="280.0"/>
+              <y:Fill color="#BFF57F" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="88.75" x="8.125" y="5.93359375">echo-attribute<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+        <node id="n5::n6">
+          <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-datatype.rnc]]></data>
+          <data key="d5"><![CDATA[echo-datatype]]></data>
+          <data key="d6">
+            <y:ShapeNode>
+              <y:Geometry height="30.0" width="105.0" x="179.09955433736002" y="360.0"/>
+              <y:Fill color="#BFF57F" transparent="false"/>
+              <y:BorderStyle color="#000000" type="line" width="1.0"/>
+              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="88.884765625" x="8.0576171875" y="5.93359375">echo-datatype<y:LabelModel>
+                  <y:SmartNodeLabelModel distance="4.0"/>
+                </y:LabelModel>
+                <y:ModelParameter>
+                  <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+                </y:ModelParameter>
+              </y:NodeLabel>
+              <y:Shape type="roundrectangle"/>
+            </y:ShapeNode>
+          </data>
+        </node>
+      </graph>
+    </node>
+    <node id="n6">
+      <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-div.rnc]]></data>
+      <data key="d5"><![CDATA[echo-div]]></data>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="92.0" x="619.861773785384" y="31.941686736550366"/>
+          <y:Fill color="#C1F780" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="55.826171875" x="18.0869140625" y="5.93359375">echo-div<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d4"><![CDATA[https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-content/browser/trunk/schema/schema/echo/modules/echo-milestone.rnc]]></data>
+      <data key="d5"><![CDATA[echo-milestone]]></data>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="116.0" x="619.861773785384" y="332.0"/>
+          <y:Fill color="#30D643" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="95.529296875" x="10.2353515625" y="5.93359375">echo-milestone<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <edge id="n5::e0" source="n5::n3" target="n5::n4">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="dotted" width="2.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-71.97958700655707" y="28.264292527807">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_DIRECTED_ASSOCIATION"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n5::e1" source="n5::n3" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="dotted" width="2.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-16.29911636738524" y="33.03725412140935">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_DIRECTED_ASSOCIATION"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n5::e2" source="n5::n2" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="dotted" width="2.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="34.06618494184039" y="-108.26715087890625">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_DIRECTED_ASSOCIATION"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e0" source="n7" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-75.3881763514047" y="-77.3761353002875">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n7" target="n5::n1">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-78.20236362004198" y="-33.27228346795209">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n7" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-123.68181100852348" y="33.69531576005693">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n6" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-101.61701557115657" y="15.477143469425457">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n4" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-74.4659301769093" y="-21.773018824682424">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n3" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-74.44401855581555" y="-45.43762125238533">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n2::e0" source="n2::n3" target="n2::n4">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-89.52242670828014" y="30.634346358860967">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n2::e1" source="n2::n2" target="n2::n4">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="66.396484375" x="-87.28476012013812" y="-24.92879060957989">tables lists<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n2::e2" source="n2::n1" target="n2::n4">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-30.536546508950437" y="-42.36180936550659">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n2::e3" source="n2::n0" target="n2::n4">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-29.878371439017656" y="-78.96922338092145">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n2::n4" target="n5::n0">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="113.833984375" x="-140.14674578123322" y="-196.37382475077197">div float float.class<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n2::n4" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="43.94921875" x="-94.87952205964189" y="-66.96567954589477">anchor<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="n1::e0" source="n1::n3" target="n1::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="28.000002998758134" y="-16.970703125">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n1::n2" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="126.40262584684913" y="-73.58293941430361">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n1::n4" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="87.74451001940656" y="-86.9220897349353">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n1::n5" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="28.950544670728277" y="-91.48626708984375">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e11" source="n1::n1::n0" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="83.46787411523013" y="-136.55499269476104">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+    <edge id="e12" source="n1::n0::n0" target="n5::n2">
+      <data key="d10">
+        <y:GenericEdge configuration="com.yworks.bpmn.Connection">
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-3.6675276099658163" y="-132.83765462612598">
+            <y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:StyleProperties>
+            <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="CONNECTION_TYPE_SEQUENCE_FLOW"/>
+          </y:StyleProperties>
+        </y:GenericEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/ismi_meta_data.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,373 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode3">
+          <y:Geometry height="33.0" width="82.0" x="138.5" y="197.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="49.375" x="16.3125" y="7.43359375">PERSON</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="419.5" y="106.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.19140625" x="24.404296875" y="5.93359375">TEXT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="419.5" y="199.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="53.60546875" x="14.197265625" y="5.93359375">WITNESS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="199.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="44.62890625" x="18.685546875" y="5.93359375">CODEX</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="323.75"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="78.4609375" x="1.76953125" y="5.93359375">COLLECTION</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="448.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="75.94140625" x="3.029296875" y="5.93359375">REPOSITORY</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="583.5" y="537.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="40.1171875" x="20.94140625" y="5.93359375">PLACE</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="-15.5" y="197.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.8125" x="24.09375" y="5.93359375">ROLE</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="626.5" y="106.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="51.806640625" x="15.0966796875" y="5.93359375">SUBJECT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="217.5" y="-41.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="36.876953125" x="22.5615234375" y="5.93359375">ALIAS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n2" target="n3">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="81.549560546875" y="2.0">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n3" target="n4">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="38.29351806640625">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n4" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="38.29351806640625">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n5" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="30.501953125" x="-30.57893148700839" y="20.419189453125">is_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n0" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="304.5" y="443.75"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="76.1875" x="212.8563232421875" y="274.0346984863281">died_in
+lived_in
+was_born_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n0" target="n0">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="179.5" y="118.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="head" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="112.57421875" x="-150.71783447265625" y="-60.46308898925781">was_student_of
+was_influenced_by</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n0" target="n7">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="52.626953125" x="-62.29443359375" y="1.9058362292005029">has_role</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n2" target="n0">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="95.125" x="-147.0718994140625" y="2.0">had_patron
+was_copied_by
+was_created_by
+was_studied_by
+</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n2" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.001953125" x="84.54910291843612" y="138.11773681640625">was_created_in
+was_copied_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n2" target="n9">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="ttail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="118.26953125" x="-151.06669302640984" y="-200.37310791015625">has_title_written_as</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n0" target="n9">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="163.74661254882812" y="75.60023498535156"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="standard" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="thead" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="101.640625" x="-57.915624291582134" y="-198.83953857421875">is_alias_name_of</y:EdgeLabel>
+          <y:Arc height="58.157981872558594" ratio="0.918975293636322" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e11" source="n9" target="n1">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="396.5" y="-3.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="105.71875" x="129.45504809766408" y="68.19319152832031">is_alias_incipit_of</y:EdgeLabel>
+          <y:Arc height="62.603912353515625" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e12" source="n9" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.27734375" x="44.93871473094896" y="94.85400390624997">is_alias_title_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e13" source="n1" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="72.279296875" x="26.3494873046875" y="-39.066406250000014">has_subject<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e14" source="n8" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="662.5" y="56.5"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-30.02262287830763" y="-69.16787407962659">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="31.0" distanceToCenter="true" position="right" ratio="7.75" segment="-2"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e15" source="n3" target="n3">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="766.5" y="214.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="0.0" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e16" source="n3" target="n3">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="31.83333333333337" ty="0.0">
+            <y:Point x="782.4166259765625" y="206.0416717529297"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="7.9583282470703125" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e17" source="n2" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="2.0" y="-40.276123046875">is_exemplar_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e18" source="n3" target="n3">
+      <data key="d8"/>
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="766.5" y="174.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="standard" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.677734375" x="-17.293212890625" y="-26.127487182617188">is_alias_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/diagrams/ismi_meta_data.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/ismi_public_objects.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,373 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode3">
+          <y:Geometry height="33.0" width="82.0" x="138.5" y="197.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="49.375" x="16.3125" y="7.43359375">PERSON</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="419.5" y="106.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.19140625" x="24.404296875" y="5.93359375">TEXT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="419.5" y="199.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="53.60546875" x="14.197265625" y="5.93359375">WITNESS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="199.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="44.62890625" x="18.685546875" y="5.93359375">CODEX</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="301.25"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="78.4609375" x="1.76953125" y="5.93359375">COLLECTION</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="725.5" y="403.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="75.94140625" x="3.029296875" y="5.93359375">REPOSITORY</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="419.5" y="403.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="40.1171875" x="20.94140625" y="5.93359375">PLACE</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="-15.5" y="197.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.8125" x="24.09375" y="5.93359375">ROLE</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="626.5" y="106.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="51.806640625" x="15.0966796875" y="5.93359375">SUBJECT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="217.5" y="-41.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="36.876953125" x="22.5615234375" y="5.93359375">ALIAS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n2" target="n3">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="74.265625" x="74.890380859375" y="2.0">is_part_of
+[one to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n3" target="n4">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="27.0306396484375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n4" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="27.0306396484375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n5" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="30.501953125" x="-127.274169921875" y="2.0">is_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n0" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="304.5" y="378.75"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="six_pos" modelPosition="thead" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="85.2578125" x="132.0897216796875" y="104.83897282527045">lived_in [date]
+died_in
+born_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n0" target="n0">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="179.5" y="118.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="head" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="112.57421875" x="-150.71783447265625" y="-60.46308898925781">was_student_of
+was_influenced_by</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n0" target="n7">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="52.626953125" x="-62.29443359375" y="1.9058362292005029">has_role</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n2" target="n0">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="95.125" x="-147.0718994140625" y="2.0">had_patron
+was_copied_by
+was_created_by
+was_studied_by
+</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n2" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.001953125" x="2.0" y="71.0892333984375">was_created_in
+was_copied_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n2" target="n9">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="ttail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="118.26953125" x="-151.06669302640984" y="-200.37310791015625">has_title_written_as</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n0" target="n9">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="163.74661254882812" y="75.60023498535156"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="standard" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="thead" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="101.640625" x="-57.915624291582134" y="-198.83953857421875">is_alias_name_of</y:EdgeLabel>
+          <y:Arc height="58.157981872558594" ratio="0.918975293636322" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e11" source="n9" target="n1">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="396.5" y="-3.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="105.71875" x="129.45504809766408" y="68.19319152832031">is_alias_incipit_of</y:EdgeLabel>
+          <y:Arc height="62.603912353515625" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e12" source="n9" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.27734375" x="44.93871473094896" y="94.85400390624997">is_alias_title_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e13" source="n1" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="72.279296875" x="26.3494873046875" y="-39.066406250000014">has_subject<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e14" source="n8" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="662.5" y="56.5"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-30.02262287830763" y="-69.16787407962659">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="31.0" distanceToCenter="true" position="right" ratio="7.75" segment="-2"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e15" source="n3" target="n3">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="766.5" y="214.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="0.0" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e16" source="n3" target="n3">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="31.83333333333337" ty="0.0">
+            <y:Point x="782.4166259765625" y="206.0416717529297"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="7.9583282470703125" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e17" source="n2" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="2.0" y="-47.342529296875">is_exemplar_of
+[many to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e18" source="n3" target="n3">
+      <data key="d8"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="766.5" y="174.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="standard" target="none"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.677734375" x="-17.293212890625" y="-26.127487182617188">is_alias_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/diagrams/ismi_public_objects.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/ismi_text_witness_codex.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="445.0" y="132.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="33.19140625" x="24.404296875" y="5.93359375">TEXT</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="445.0" y="224.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="53.60546875" x="14.197265625" y="5.93359375">WITNESS</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="751.0" y="224.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="44.62890625" x="18.685546875" y="5.93359375">CODEX</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="751.0" y="326.75"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="78.4609375" x="1.76953125" y="5.93359375">COLLECTION</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="751.0" y="429.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="75.94140625" x="3.029296875" y="5.93359375">REPOSITORY</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="30.0" width="82.0" x="445.0" y="429.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="40.1171875" x="20.94140625" y="5.93359375">PLACE</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n1" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="84.30859375" x="69.868896484375" y="2.0">is_part_of
+[many to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n2" target="n3">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="27.0306396484375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n3" target="n4">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="2.0" y="27.0306396484375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n4" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="30.501953125" x="-127.274169921875" y="2.0">is_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n2" target="n2">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="792.0" y="239.5"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="0.0" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n2" target="n2">
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="31.83333333333337" ty="0.0">
+            <y:Point x="807.9166259765625" y="231.5416717529297"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:Arc height="7.9583282470703125" ratio="1.0" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n1" target="n0">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="91.861328125" x="2.0" y="-47.342529296875">is_exemplar_of
+[many to one]</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/diagrams/ismi_text_witness_codex.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/mpiwg_place.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,290 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7">
+    <default/>
+  </key>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <node id="n0">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="129.0" x="110.0" y="248.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="84.689453125" x="22.1552734375" y="24.80078125">PLACE
+type: institute
+name: MPIWG</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="210.0" x="69.5" y="108.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="187.28125" x="11.359375" y="17.734375">SPATIAL_TEMPORAL_LOCATION
+time_space: from 1998
+latitude: 52.445208
+longitude: 13.27775
+</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="210.0" x="69.5" y="389.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="74.6640625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="187.28125" x="11.359375" y="10.66796875">SPATIAL_TEMPORAL_LOCATION
+time_space: 
+from 1994 until 1998
+latitude: 52.512631
+longitude: 13.309851
+</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="149.0" x="364.0" y="316.5"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="132.185546875" x="8.4072265625" y="24.80078125">PLACE
+type: district
+name: Charlottenburg</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="149.0" x="364.0" y="157.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="87.9765625" x="30.51171875" y="24.80078125">PLACE
+type: district
+name: Dahlem</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="210.0" x="333.5" y="484.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="187.28125" x="11.359375" y="17.734375">SPATIAL_TEMPORAL_LOCATION
+time_space: from 1705
+latitude: 52.512631
+longitude: 13.309851
+</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="210.0" x="333.5" y="12.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="187.28125" x="11.359375" y="17.734375">SPATIAL_TEMPORAL_LOCATION
+time_space: from 1275
+latitude: 52.457683
+longitude: 13.285904
+</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="149.0" x="694.0" y="126.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="76.439453125" x="36.2802734375" y="24.80078125">PLACE
+type: city
+name: Berlin</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="210.0" x="609.0" y="263.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="187.28125" x="11.359375" y="17.734375">SPATIAL_TEMPORAL_LOCATION
+time_space: from 1192
+latitude: 52.522906
+longitude: 13.418427
+</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="174.0" x="-180.0" y="108.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="152.037109375" x="10.9814453125" y="24.80078125">TEMPORAL_ATTRIBUTE
+name: type_of_institution
+value: name_xx</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n10">
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="96.0" width="174.0" x="-180.0" y="389.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="left" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="152.037109375" x="10.9814453125" y="24.80078125">TEMPORAL_ATTRIBUTE
+name: type_of_institution
+value: name_yy</y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n1" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="202.0" y="60.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="44.450439453125" y="-45.953125">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n2" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="207.0" y="532.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="44.289306640625" y="48.98974609375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n0" target="n1">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="2.0" y="-31.3282470703125">is_located_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n0" target="n2">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="2.0" y="13.1954345703125">is_located_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n4" target="n6">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="2.0" y="-33.598876953125">is_located_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n3" target="n5">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="2.0" y="26.7154541015625">is_located_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e6" source="n6" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="97.0025826868308" y="68.4212646484375">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e7" source="n5" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="91.22380928971643" y="-71.5733642578125">is_part_of</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e8" source="n7" target="n8">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="-2.549663014655607" y="11.436767578125">is_located_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n1" target="n9">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="head" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="80.34765625" x="-77.94183349609375" y="-20.1328125">has_attribute</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e10" source="n2" target="n10">
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="head" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="80.34765625" x="-77.94183349609375" y="-20.1328125">has_attribute</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/mpiwg_place_class_dia.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yFiles for Java 2.9-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode3">
+          <y:Geometry height="42.0" width="95.0" x="252.49999999999994" y="82.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="40.1171875" x="27.44140625" y="11.93359375">PLACE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="42.0" width="220.33333333333337" x="189.83333333333326" y="196.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="187.28125" x="16.526041666666686" y="11.93359375">SPATIAL_TEMPORAL_LOCATION<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="42.0" width="110.16666666666663" x="244.91666666666663" y="310.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="67.80859375" x="21.179036458333314" y="11.93359375">ATTRIBUTE<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d5"/>
+      <data key="d6">
+        <y:GenericNode configuration="BevelNode2">
+          <y:Geometry height="42.0" width="110.16666666666663" x="543.5" y="196.0"/>
+          <y:Fill color="#FF9900" transparent="false"/>
+          <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" textColor="#000000" visible="true" width="33.19140625" x="38.48763020833326" y="11.93359375">TEXT<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+        </y:GenericNode>
+      </data>
+    </node>
+    <edge id="e0" source="n0" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="78.841796875" x="4.579101562499943" y="25.92041015625">is_located_in<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="44.0" distanceToCenter="true" position="left" ratio="0.4772039180765806" segment="-1"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n1" target="n2">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="24.19140625" x="17.904296874999943" y="26.92041015625">has<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.5" segment="0"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n1" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="177.99999999999994" y="217.0"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.947265625" x="-184.68954467773443" y="12.919128417968523">is_part_of<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="6.283185307179586" distance="0.9999999999997726" distanceToCenter="true" position="left" ratio="36.0" segment="-2"/>
+            </y:ModelParameter>
+          </y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n3" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="six_pos" modelPosition="tail" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="92.001953125" x="-112.67777506510419" y="2.0">was_created_in</y:EdgeLabel>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/diagrams/public_viewer_diagram.graphml	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,315 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+  <!--Created by yEd 3.12.2-->
+  <key for="graphml" id="d0" yfiles.type="resources"/>
+  <key for="port" id="d1" yfiles.type="portgraphics"/>
+  <key for="port" id="d2" yfiles.type="portgeometry"/>
+  <key for="port" id="d3" yfiles.type="portuserdata"/>
+  <key attr.name="url" attr.type="string" for="node" id="d4"/>
+  <key attr.name="description" attr.type="string" for="node" id="d5"/>
+  <key for="node" id="d6" yfiles.type="nodegraphics"/>
+  <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+  <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+  <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+  <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+  <graph edgedefault="directed" id="G">
+    <data key="d7"/>
+    <node id="n0">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="371.0" y="116.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="49.64453125" x="4.0" y="4.0">Codices</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n1">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="378.0" y="568.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="30.12109375" x="4.0" y="4.0">Text</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n2">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="725.0" y="342.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="48.58984375" x="4.0" y="4.0">Witness</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n3">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="731.0" y="568.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="43.943359375" x="4.0" y="4.0">Author</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n4">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="725.0" y="116.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="97.80859375" x="4.0" y="4.0">Codex Overview</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n5">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="28.0" width="101.0" x="750.0" y="185.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="41.271484375" x="4.0" y="4.0">Codex</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n6">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="109.0" width="101.0" x="865.0" y="140.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="74.6640625" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="56.177734375" x="4.0" y="4.0">Witness1
+Witness2
+Witness3
+Witness4
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n7">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="104.0" width="101.0" x="447.0" y="145.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="48.859375" x="4.0" y="4.0">Codex1
+Codex2
+Codex3
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n8">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="167.0" width="253.0" x="371.0" y="342.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="18.1328125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="41.271484375" x="4.0" y="4.0">Codex</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="60.0" width="101.0" x="388.0" y="431.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="63.396484375" x="4.0" y="4.0">Attribute1
+Attribute2
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n10">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="126.0" width="101.0" x="501.0" y="365.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="45.572265625" x="27.7138671875" y="46.8671875">Images
+(Diva)</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n11">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="104.0" width="101.0" x="746.0" y="373.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="63.396484375" x="4.0" y="4.0">Attribute1
+Attribute2
+Attribute3
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n12">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="104.0" width="101.0" x="864.0" y="373.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="32.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="45.572265625" x="27.7138671875" y="35.8671875">Images
+(Diva)</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n13">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="60.0" width="42.0" x="388.0" y="365.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="37.287109375" x="4.0" y="4.0">Title1
+Title2
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n14">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="60.0" width="53.0" x="436.0" y="365.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="46.3984375" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="45.818359375" x="4.0" y="4.0">Folios1
+Folios2
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n15">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="104.0" width="101.0" x="454.0" y="599.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="63.396484375" x="4.0" y="4.0">Attribute1
+Attribute2
+Attribute3
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n16">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="104.0" width="101.0" x="807.0" y="599.5"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="60.53125" modelName="free" modelPosition="anywhere" textColor="#000000" visible="true" width="63.396484375" x="4.0" y="4.0">Attribute1
+Attribute2
+Attribute3
+...</y:NodeLabel>
+          <y:Shape type="roundrectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <edge id="e0" source="n7" target="n4">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e1" source="n5" target="n8">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e2" source="n1" target="n3">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e3" source="n2" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e4" source="n13" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+    <edge id="e5" source="n14" target="n11">
+      <data key="d9"/>
+      <data key="d10">
+        <y:PolyLineEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:BendStyle smoothed="false"/>
+        </y:PolyLineEdge>
+      </data>
+    </edge>
+  </graph>
+  <data key="d0">
+    <y:Resources/>
+  </data>
+</graphml>
Binary file docs/docs/2013.09.13_pending_list.docx has changed
Binary file docs/docs/Normalization/Equivalence_of_transliteration_systems_latein.docx has changed
Binary file docs/docs/Normalization/diacrits_to_ignore_for_searching_arabic.doc has changed
Binary file docs/docs/Public_Transliteration/library_of_congress_rules.pdf has changed
Binary file docs/docs/Transliteration/ASCII_map.docx has changed
Binary file docs/docs/Transliteration/Arabic_2.2.pdf has changed
Binary file docs/docs/Transliteration/Arabic_Latin_conversion.doc has changed
Binary file docs/docs/Transliteration/Arabic_Latin_conversion_2014.04.05.doc has changed
Binary file docs/docs/Transliteration/Arabic_Latin_conversion_chantal.doc has changed
Binary file docs/docs/Transliteration/Arabic_Latin_conversion_duplication.doc has changed
Binary file docs/docs/Transliteration/Transliteration_convertion_table.docx has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/docs/Transliteration/romanization-issues.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,3 @@
+Rule 7.1
+ʿAli b. ʿAbdullah
+Yusuf b. ʿAbdullah
\ No newline at end of file
Binary file docs/docs/Transliteration/romanized_Arabic_into_Arabic.docx has changed
Binary file docs/docs/Transliteration/transliteration.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/docs/Transliteration/verdoppelung_examples.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,66 @@
+حُبّ
+
+062d	ḥ
+064f	u	
+0628	b
+0651	duplication
+
+ḥuub
+
+حُبٌّ
+
+062d
+064f	u
+0628	b
+0651	duplication
+064c
+
+ḥuubun
+
+مُسَمَّة
+
+0645
+064f
+0633
+064e	a
+0645	m
+064e	a
+0651	duplication
+0629
+
+musammah
+
+%%%%%%
+
+makْtūb
+makْtūb
+maktūb
+
+0643
+0652
+062a
+064f
+0648
+0628
+maktūb
+006d
+0061
+006b
+0074
+016b
+0062
+******
+006d
+0061
+006b
+0652
+0074
+016b
+0062
+
+*********
+أُوْلَى
+aūlỳ -> ūlỳ
+*******
+ألرَشِيْد
+alrašīd -> al-rašīd
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/ahlwardt_no_ismi-db_2014.05.28.tab	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,968 @@
+Codex	Witness	Ahlwardt_no
+11465	11506	5275
+53643	11608	5286
+11465	11817	5283*
+12981	12921	5181
+13085	13000	5334
+13478	13560	5264
+13639	14173	5325
+14424	14357	5268
+14563	14889	5332
+15272	15122	5261,6
+15349	15367	5180,2
+14770	15449	5093
+133261	17886	5064
+87549	18563	5065
+87549	18649	5067
+180123	18712	5049
+182046	18734	5072
+177086	18772	5054
+18869	18849	5134
+177428	18920	5106
+173041	18997	5059
+19042	19027	5043
+172987	19196	5051
+170305	19275	5053
+27664	19352	5080
+178020	19440	5082
+19972	20070	5071
+177349	20234	5121
+132414	20302	5149
+27704	20362	5166
+27704	20402	5096
+178112	20500	5091
+176532	20524	5063
+177653	20558	5087
+178020	21863	5082, 2
+21896	21907	5082, 1
+22103	21928	5276,5
+164286	22361	5048
+25160	22873	5070
+22936	22947	5050
+25160	22985	5273,4
+22103	23100	5277
+25160	23187	5288
+22103	23432	5279
+22103	23526	5283
+22103	23593	5282
+53643	23740	5097*
+53643	23788	5272
+53643	24007	5287
+24367	24083	5076
+24367	24182	6906
+24367	24425	5276,1
+24367	24480	5278,1
+81811	29943	vol. V, #5985
+69327	32379	vol. 5, #5875
+34806	47771	6016
+67377	50580	vol. 5, #5907
+73757	50657	vol. 5, #5906
+67377	50677	vol. 5, #5908
+66317	51249	5912
+61756	51352	5913
+67403	52740	vol. 5, #5910/2
+35655	52800	vol. 5, #5910/1
+67042	52870	vol. 5, #5909/3
+67167	52901	vol. 5, #5909/2
+69640	52962	vol. 5, #5909/1
+71079	52971	5746 (2)
+53217	53035	5744 (2)
+53137	53165	5739
+66317	53220	5915 (4)
+61845	53387	5915 (3)
+61845	53453	5915 (2)
+61720	53580	5915 (1)
+67324	53714	5914 (2) 
+69640	53829	5914 (1)
+27576	55159	5896
+67403	55322	vol. 5, #5897
+67324	56057	vol. 5, #5903/1
+67301	56133	vol. 5, #5902
+67140	56786	vol. 5, #5899
+67403	57019	5916
+67439	57069	vol. 5, #5900
+67167	57129	vol. 5, #5901
+63229	58860	5757
+58120	59599	vol. 5, #5776/3
+86752	59619	vol. 5, #5775/2
+74277	59804	vol. 5, #5775/1
+58281	60052	vol. 5, #5764
+35655	60962	vol. 5, #5888
+66136	61179	vol. 5, # 5889
+67480	61323	vol. 5, #5890
+61612	61581	5747 (1)
+66031	62104	vol. 5, #5885
+58120	62279	vol. 5, #5887
+66101	62472	vol. 5, #5886
+67249	62988	vol. 5, #5895
+63457	63355	5747 (3)
+63553	63580	5747 (2)
+85373	63748	5748
+67503	64023	vol. 5, #5892
+35620	64142	vol. 5, #5891/2
+67439	64166	vol. 5, #5891/1
+36157	64369	vol. 5, #5879
+71079	64949	5730 (3)
+67377	65143	5730 (2)
+65253	65291	vol. 5, #5882
+64565	65420	vol. 5, #5881
+86752	66179	5741
+61845	66329	5738
+66418	66441	5740
+66977	67009	5745
+67698	67721	5742 (2)
+34721	67783	5744 (1)
+73937	67872	vol. 5, #5789/2
+73909	67928	vol. 5, #5789/1
+74209	68073	vol. 5, #5788
+36059	68300	5714
+35655	69006	vol. 5, #5873
+86752	69736	5722
+70194	70126	5728
+68908	70209	vol. 5, #5874
+71079	71022	5730 (1)
+69327	71117	vol. 5, #5875
+34721	71593	5650 (1)
+58120	71710	vol. 5, #5709/2
+78044	71789	vol. 5, #5709/1
+34721	72094	5652
+34721	72300	5651
+86752	72784	vol. 5, # 5778
+73288	72973	vol. 5, #5780
+73414	73487	vol. 5, #5782
+73700	73803	vol. 5, #5781/1
+74277	74327	vol. 5, #5785/1/2
+74775	74357	vol. 5, #5785/3
+74184	74400	vol. 5, #5785/2
+36059	75352	5855
+79198	75423	5854
+77324	77216	5867
+77640	77934	vol. 5, #5706
+34721	78544	5646 (1)
+34721	78691	5647
+77695	78793	vol. 5, #5705
+80752	80068	vol. 5, #5701
+80599	80298	vol. 5, #5702/2
+81523	81716	5848
+85373	82568	5842 (2)
+36059	83011	5842 (1)
+84724	84004	vol. 5, #5698/5
+84937	84104	vol. 5, #5698/3
+84958	84165	vol. 5, #5698/4, pp. 173-74
+84872	84191	vol. 5, #5698/1
+84897	84295	vol. 5, #5698/2
+85373	85391	5834
+87250	85521	vol. 5, #5695/3
+87273	85540	vol. 5, #5695/2
+85452	85643	vol. 5, #5696
+86752	85825	vol. 5, # 5695/1
+88295	88326	vol. 5, #5693/1
+36059	88490	5823
+91090	91218	5819 (3)
+164371	93553	5052
+96437	95770	5811 (3)
+95963	95981	5813
+96437	96285	5811 (2)
+99015	98783	5804
+36059	98926	5803
+34721	105627	5648
+36059	110372	5808
+164286	137645	5048
+139279	139202	vol. 5, #5676/1
+34806	160821	6020
+48824	163714	5175,1
+34721	170980	5671*
+34774	179209	5668
+36013	186728	5840
+34806	188902	5930
+36145	200435	vol. 5, #5877
+36597	205286	vol. 5, # 5684
+78071	59525	5776
+78071	259695	2841
+78071	259706	5247
+78071	259717	9706
+78071	259728	3607
+78071	259739	2263
+78071	259750	1969
+78071	259761	124
+78071	259772	1053
+78071	259783	4670
+78071	259794	4068
+78071	259805	3621
+78071	259816	3608
+78071	259827	7162
+78071	259838	1058
+78071	259849	1059
+78071	259860	2021
+259871	259875	5967
+259871	259880	5969
+259871	259885	6616
+259871	259890	3823
+259871	259895	4763
+259871	259900	5247
+259871	259905	6634
+259871	259910	7137
+259871	259915	659
+259871	259920	5320
+259871	259925	5481
+27288	260093	8337
+27288	260102	8510
+260129	260133	6116
+77324	260286	3264
+77324	260291	1948
+77324	260296	3072
+77324	260301	3799
+77324	260306	4121
+77324	260311	6402
+77324	260316	8102
+77324	260321	8065
+77324	260326	8142
+77324	260331	7899
+77324	260336	8148
+77324	260341	4119
+77324	260346	7467
+77324	260351	8660
+77324	260356	7895
+77324	260361	8071
+77324	260366	7850
+77324	260371	3912
+77324	260376	5000
+77324	260381	4269
+77324	260386	55
+77324	260391	28
+77324	260396	5199
+77324	260401	5200
+77324	260406	5312
+77324	260411	5306
+77324	260416	5148
+7393	260421	296
+7393	260426	2987
+7393	260431	5176
+7393	260436	5311
+7393	260441	5311
+7393	260446	3225
+7393	260451	5136
+7393	260456	5139
+7393	260461	5364
+7393	260466	2763
+7393	260471	2491
+7393	260476	5138
+7393	260481	5107
+7393	260486	6882
+7393	260491	6882
+7393	260496	5151
+7393	260501	5382
+7393	260506	4083
+7393	260511	2882
+7393	260516	6888
+7393	260521	7941
+7393	260526	6396
+7393	260531	7717
+7393	260536	7697
+7393	260541	542
+7393	260546	542
+7393	260551	4868
+7393	260556	5365
+7393	260561	4772
+7393	260566	4779
+7393	260571	4779
+7393	260576	4779
+7393	260581	4821
+7393	260586	7808
+260154	260611	5090
+260154	260616	5024
+260154	260621	1785
+260154	260626	5958
+260154	260631	5024
+260154	260636	5094
+260154	260641	5024
+260154	260646	1786
+70639	260651	1091
+70639	260656	1954
+70639	260661	6780
+70639	260666	5175
+70639	260671	5294
+70639	260676	5297
+70639	260681	5399
+70639	260686	5399
+70639	260691	5399
+70639	260696	5399
+70639	260701	5066
+70639	260706	5066
+70639	260711	5066
+4836	260739	6396
+4836	260744	5020
+4836	260749	6007
+4836	260754	1097
+4836	260759	4996
+4836	260764	1834
+4836	260769	2443
+4836	260774	4816
+4836	75456	5963
+2967	260780	4452
+2967	260785	3564
+2967	260790	7217
+2967	260795	7217
+2967	260800	6962
+2967	260805	5074
+2967	260810	5270
+2967	260815	6593
+2967	260820	5088
+2967	260825	5270
+2967	260830	6531
+2967	260835	6806
+2967	260840	1760
+2967	260845	1760
+2967	260850	5130
+2967	260855	573
+2967	260860	3683
+2967	260865	2209
+2967	260870	2209
+2967	260875	7221
+2967	260880	5130
+2967	260885	2383
+2967	260890	5130
+2967	260895	2968
+2967	260900	3204
+2967	260905	2384
+2967	260910	4756
+2967	260915	5024
+2967	260920	833
+2967	260925	665
+2967	260930	4780
+2967	260935	6808
+2967	260940	5273
+2967	260945	298
+2967	260950	5257
+2967	260955	6827
+96810	260960	4356
+96810	260965	7448
+96810	260970	8107
+96810	260975	8131
+96810	260980	7157
+96810	260985	8854
+96810	260990	8736
+96810	260995	10251
+96810	261000	10251
+96810	261005	3749
+96810	261010	8508
+96810	261015	1431
+96810	261020	1068
+96810	261025	6252
+96810	261030	6171
+96810	261035	4780
+96810	261040	6889
+96810	261045	7218
+96810	261050	4501
+96810	261055	8508
+96810	261060	53
+96810	261065	4684
+96810	261070	997
+96810	261075	992
+96810	261080	2392
+96810	261085	6876
+96810	261090	7956
+96810	261095	7593
+96810	261100	2218
+96810	261105	2392
+96810	261110	6919
+96810	261115	8508
+96810	261120	6408
+96810	261125	2392
+96810	261130	5226
+96810	261135	7275
+96810	261140	7218
+96810	261145	5028
+96810	261150	1140
+96810	261155	5291
+96810	261160	858
+96810	261165	1592
+96810	261170	8508
+96810	261175	4550
+96810	261180	4659
+96810	261185	412
+73757	261220	4115
+73757	261225	6057
+73757	261230	9375
+73757	261235	4261
+260162	261250	5988
+260162	261255	5994
+260162	261260	7302
+260166	261265	5951
+260166	261270	2388
+260166	261275	2388
+260166	261280	2164
+260166	261285	2138
+260166	261290	2138
+260166	261295	7626
+260166	261300	7791
+260170	261305	6238
+260170	261310	5208
+1102	261315	6005
+1102	261320	6004
+1102	261325	6007
+1102	261330	6003
+1102	261335	4752
+1102	261340	4764
+1102	261345	3936
+260174	261350	5981
+35943	261355	3746
+35943	261360	3746
+35943	261365	6110
+35943	261370	8344
+35943	261375	7655
+35943	261380	8490
+35943	261385	7578
+35943	261390	6430
+35943	261400	6021
+5855	261407	3228
+5855	261412	866
+5855	261417	4692
+5855	261422	5108
+5855	261427	2238
+5855	261432	3045
+5855	261437	863
+5855	261442	2068
+260178	261447	6002
+260178	261452	4228
+27618	261457	2483
+27618	261462	4748
+27618	261467	2249
+27618	261472	2479
+27618	261477	6407
+27618	261482	6246
+27618	261487	5344
+27618	261492	5124
+27618	261497	5061
+27618	261502	2370
+27618	261507	2072
+27618	261512	2299
+27618	261517	2299
+27618	261522	5345
+27618	261527	2295
+27618	261532	8748
+27618	261537	5338
+27618	261542	5356
+27618	261547	5079
+27618	261552	3454
+22355	261557	4693
+22355	261562	3756
+22355	261567	2403
+22355	261572	1522
+22355	261577	973
+260182	261582	5967
+260186	261587	5992
+260190	261592	5979
+260194	261597	5966
+260194	261602	1056
+260194	261607	1126
+260194	261612	5247
+260194	261617	1057
+260194	261622	1614
+260194	261627	1881
+260194	261632	5993
+260194	261637	7086
+37213	261642	4262
+64406	261652	5733
+36429	261657	5797
+36429	261662	5797
+36429	261667	5797
+36429	261672	5797
+36429	261677	5797
+36065	261682	4108
+74822	261687	3526
+74822	261692	3553
+74822	261697	2201
+74822	261702	10011
+74822	261707	7300
+74822	261712	5968
+74822	261717	7375
+74822	261722	7346
+74822	261727	3649
+19259	261732	5500
+260198	261737	5995
+260202	261742	5980
+260206	261747	6000
+36529	261762	9375
+260210	261767	7015
+260210	261772	7352
+260210	261777	6397
+260210	261782	7609
+260210	261787	5346
+260210	261792	8314
+200246	261797	5322
+200246	261802	7386
+200246	261807	8008
+200246	261812	8162
+200246	261817	7979
+200246	261822	2270
+200246	261827	9520
+200246	261832	5996
+200246	261837	3352
+200246	261842	6476
+200246	261847	6056
+260214	261852	6546
+260214	261857	5967
+260214	261862	1965
+260214	261867	2427
+260214	261872	5216
+260214	261877	987
+260214	261882	10366
+260218	261887	5115
+260218	261892	3724
+260218	261897	1886
+260218	261902	10110
+260218	261907	6283
+260218	261912	3371
+260218	261917	2659
+260218	261922	7999
+260222	261927	3595
+260222	261932	5147
+260222	261937	1359
+260222	261942	2041
+260222	261947	5954
+260222	261952	5967
+260222	261957	4233
+81178	261962	4776
+81178	261967	8057
+81178	261972	2759
+81178	261977	7057
+81178	261982	5350
+81178	261987	7653
+81178	261992	7635
+81178	261997	7737
+81178	262002	1957
+260226	262007	4962
+260226	262012	5330
+260226	262017	5952
+260226	262022	3268
+260230	262027	9617
+260230	262032	9631
+260230	262037	9631
+260230	262042	9002
+260230	262047	8991
+260230	262052	8992
+260230	262057	6140
+260230	262062	5193
+260230	262067	6907
+260230	262072	3728
+88922	262077	5326
+88922	262092	3653
+88922	262097	3868
+88922	262102	3778
+88922	262107	3939
+88922	262112	3754
+88922	262117	4078
+88922	262122	3683
+88922	262127	3650
+88922	262132	3935
+88922	262137	9050
+88922	262142	8660
+260234	262147	965
+260234	262152	6777
+260234	262157	5140
+260234	262162	966
+260234	262167	5483
+260234	262172	1519
+260234	262177	5381
+260234	262182	2763
+260234	262187	7105
+260234	262192	5365
+260234	262197	7180
+260234	262202	7179
+260234	262207	7345
+260234	262212	7178
+260234	262217	6881
+260234	262222	6862
+260234	262227	7287
+260234	262232	7343
+260234	262237	6903
+260234	262242	6892
+260234	262247	7341
+260234	262252	6883
+260234	262257	7339
+260234	262262	5413
+260234	262267	2502
+260234	262272	9994
+260234	262277	6869
+260234	262282	1120
+260234	262287	6106
+260234	262292	2792
+260234	262297	1521
+260234	262302	5150
+260238	262307	5098
+260238	262312	517
+260238	262317	6187
+260238	262322	8966
+260238	262327	9052
+260238	262332	9057
+260238	262337	3428
+260238	262342	4288
+260238	262347	5352
+260238	262352	4259
+260238	262357	4284
+260238	262362	468
+199952	262367	5991
+199952	262372	6889
+199952	262377	2436
+199952	262382	4803
+199952	262387	2808
+87212	262392	5525
+87212	262397	5526
+87212	262402	10140
+87212	262407	6001
+87212	262412	2688
+87212	262417	2823
+87212	262422	2769
+87212	262427	4267
+99059	262432	5524
+99059	262437	4667
+99059	262442	5442
+99059	262447	1060
+99059	262452	8036
+99059	262457	3905
+99059	262462	5358
+99059	262467	5520
+99059	262472	9465
+99059	262477	6051
+99059	262482	7044
+64270	262487	520
+93775	262492	1794
+93775	262497	8747
+93775	262502	862
+93775	262507	1625
+93775	262512	2274
+93775	262517	1609
+93775	262522	3738
+93775	262527	105
+93775	262532	3976
+93775	262537	3966
+81811	262542	2415
+65785	262547	5036
+65785	262552	7083
+262557	262561	6074
+262557	262566	980
+262557	262571	5415
+262557	262576	865
+262557	262581	135
+262557	262586	4144
+262557	262591	5315
+262557	262596	5487
+262557	262601	2413
+78071	259673	5709
+78071	259684	5887
+22863	259668	5961
+22863	263528	9395
+58480	60585	5767
+58480	259565	5767
+58453	53090	5746
+58453	267934	5746
+58453	267985	5746,1
+58453	60481	5768
+58453	268145	5768
+58453	268157	5768
+58453	268164	5768
+58453	268192	5768
+35093	189980	5962
+35093	268271	5962
+34870	167250	5961
+27543	182534	5960
+27543	259599	4692
+36745	64882	5731
+87298	259607	5826
+87298	87390	5826
+87298	270272	5826
+87298	259620	9896
+87298	270355	8029
+87298	259633	5183
+259646	259659	5961
+36316	101543	5793
+12453	182743	5791
+176694	176643	5666
+36575	260242	5878
+36575	65862	5880
+36575	62820	5894
+36575	52640	5911
+36575	71446	5876
+36575	271341	5876
+36575	260251	5876
+36575	260256	5876
+36575	260261	5876
+36575	89806	5686
+31672	178270	5658
+101488	101889	5664
+36696	88720	5688
+36696	271768	5688
+36696	68721	5719
+35896	17813	5828
+35896	52165	5853
+35896	80923	5849
+35896	94490	5679
+31794	58361	5653
+37240	179894	5683
+37240	259930	5683
+37240	259944	5683
+37240	259958	5683
+37240	259986	5683
+35014	272436	5970
+35014	12104	5970
+35014	260000	5953
+27543	259584	4688
+259646	259650	5977
+36575	64827	5878
+35014	190347	5972
+35014	198269	5971
+35014	165804	5975
+35014	260015	5955
+35014	260043	3
+35014	272782	3
+35583	173892	5711
+35583	55393	5898
+35583	62897	5893
+35583	273164	5893
+35583	66828	5883
+35583	273263	5883
+35960	76573	5861
+35960	85229	5833
+35960	109685	5839
+35960	76071	5859
+35960	98472	5799
+35960	76705	5864
+35960	46379	5866
+35960	198584	5816
+35960	16865	5836
+35960	274024	5836
+172492	172643	5656
+98286	95405	5809
+260061	260075	8751
+165721	74951	5718
+165721	59766	5774
+36645	46811	5685
+99059	99084	5802
+87212	85712	5694
+88922	80491	5853
+81178	81076	5851
+81178	69872	5726
+69450	69381	5721
+36380	93392	5814
+36380	201538	5805
+36380	81230	5852
+36380	91110	5819
+36380	70448	5724
+36529	78145	vol. 5, #5707
+36529	77502	5807
+36529	129299	5810
+36529	78260	5708
+74277	57184	5760
+58354	57555	5759
+80831	75163	5716
+80831	74472	5715
+80831	81041	5850
+58328	57718	5762
+36597	67655	5743
+36318	152261	5756
+36318	30047	5754 (1)
+36318	165067	5755
+39880	16328	vol. 5, #5678
+88041	87849	5692
+36733	191976	5750
+83765	83692	5699
+87549	87960	5691
+74822	74834	5717
+36065	89537	5820
+36065	77349	5868
+36065	75789	5858
+36065	69993	5727
+36065	189404	5841
+74237	57206	5761
+36099	96357	5857
+36429	90164	5821
+36429	112151	5797
+36429	183906	5806
+95861	95870	5812
+12419	155141	5796
+179550	179574	5845
+179791	179365	5710
+58245	57415	5758
+82615	82601	5843
+82615	73955	5712
+102590	102598	5660
+86871	86982	5827
+37213	180211	5675
+37153	94157	5681
+157290	157403	5661
+31630	174353	5680
+31630	103893	5680
+31630	174051	5655
+85003	85055	5697
+36114	45164	5833
+36114	179602	5860
+27618	190462	5671
+98095	79899	5702
+98095	70353	5723
+98095	87053	5693
+98095	85790	5832
+98095	98141	5801
+98095	75665	5856
+98095	77069	5703
+5855	70936	5729
+35943	51490	5837
+35943	26359	5838
+36713	54247	5674
+36713	169006	5672
+36713	125083	5688
+36713	91179	5819
+36713	89249	5825
+36713	64586	5732
+36713	86219	5831
+36713	86050	5830
+28088	136249	5795
+28088	114085	5679
+28088	26397	5798
+28088	106850	5794
+34806	78399	5645
+34806	187925	5649
+172888	172845	5665
+73757	261245	5906
+73757	50925	5905
+73757	261240	5904
+73757	55874	5903
+67377	73711	5781
+73757	50896	5905
+73757	50784	5905
+73757	51993	5904
+96810	168152	5676
+70639	70662	5725
+260111	260115	5990
+90980	91002	5819
+90980	90277	5822
+260120	260124	5952
+36241	131147	5753
+260138	260142	5985
+38860	3568	5662
+38860	168472	5662
+72545	45720	5854*
+72545	72564	5779
+72545	59942	5766
+36185	43791	5884
+72545	260246	5997
+36185	37118	5670
+88922	262082	5824
+260146	260266	5944
+36529	277260	5765
+88922	277279	5849
+37228	277296	5673
+172952	277318	5676
+35943	261395	5799
+260146	260271	5919
+36713	142911	5689
+36013	6152	vol. 5, #5690
+37739	260276	5677
+36065	122944	5846
+89861	89988	5687
+89861	277573	5687
+176778	176743	5983
+180743	180997	5999
+86328	77126	5865
+86328	86308	5829
+260150	260281	5920
+90658	173159	5686
+90658	278001	5686
+181058	180914	5700
+132716	20271	5125
+36316	176953	5790
+36882	101455	5752
+165241	197200	5294
+65785	65735	5735
+64270	64300	5734
+88922	65557	5737
+36529	66219	5742
+74277	59046	5772
+58354	58938	5771
+105948	105823	5704
+105948	260595	5704
+105948	260591	5704
+105948	102297	5704
+10783	30444	5294
+10783	279283	5180
+10783	279571	4949
+105948	260599	6027
+105948	260603	6027
+105948	260607	6027
+35526	59535	5918
+260158	260716	6024
+74078	68834	5786
+74078	68695	5787
+74078	68023	5787
+181096	72041	5654
+35014	260029	6006
+31606	54946	5657
+36318	57980	5754
+74237	74735	5785
+36429	67860	5743
+64406	64442	5733
+73757	59671	5776
+73757	59731	5773
+31568	171795	5667
+182685	136291	5792
+182685	65646	5736
+27872	260721	6010
+27872	291653	6010
+27872	38882	5943
+27872	45349	5823
+27872	76430	5862
+27872	90704	5818
+27872	260730	8660
+35896	96402	5811
+35896	78329	5869
+37323	164549	5682
+93775	93733	5817
+36938	182200	5751
+36938	167105	5663
+34668	15593	5939
+34668	45400	5652
+34668	13728	5934
+34668	15565	5941
+34668	15567	5934
+34668	164409	5957
+76866	76818	5863
+76866	74617	5713
+102230	43679	5659
+76888	76956	5703
+76888	261215	5998
+74070	68400	5784
+74070	59056	5769
+74070	68223	5720
+34668	261195	5931
+34668	15651	5931
+34668	15647	6017
+34668	261205	6017
+34668	78631	5646
+34668	45512	5648
+34668	45486	5651
+34668	15633	5929
+34668	277340	5647
+34668	72399	5650
+34668	15617	6023
+34668	261200	5935
+34668	261210	5936
+34668	15599	5936
+35035	82795	5844
+35035	200419	5980/3
+36550	160074	5980/1
+58480	263811	5767
+58480	263822	5767
+58480	263834	5767
+58480	263966	5767
+34870	269495	5961
+34870	295660	5961
+34870	295666	5961
+34870	269478	7856
+37025	167273	5669
+37240	259972	3345
+98286	98335	5800
+27288	82032	5847
+27288	46078	5870
+58423	58986	5770
+181058	295686	5700
+
Binary file docs/echo/archiv_id_ismi_online-110412.fp7 has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/archiv_id_ismi_online_2014.05.20.tab	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1 @@
+/mpiwg/online/permanent/library/WWKYPR05	Glas. 40	35093	350983
/mpiwg/online/permanent/library/AY4RFZ2F	Lbg. 33	37025
/mpiwg/online/permanent/library/RXBT90D9	Lbg. 56	36316
/mpiwg/online/permanent/library/6ZFW5P6F	Lbg. 71	31672
/mpiwg/online/permanent/library/TMDNMV96	Lbg. 132	31794
/mpiwg/online/permanent/library/CQ0V4D71	Lbg. 144	37240
/mpiwg/online/permanent/library/QTB5X5EU	Lbg. 199	35014
/mpiwg/online/permanent/library/AF5VB2H8	Lbg. 368	
/mpiwg/online/permanent/library/75F1C6EC	Lbg. 493	172492
/mpiwg/online/permanent/library/9NTY13X5	Lbg. 656	
/mpiwg/online/permanent/library/Z612GY1B	Lbg. 669	
/mpiwg/online/permanent/library/WCDH5WZB	Lbg. 720	37739
/mpiwg/online/permanent/library/FT55FQ4T	Lbg. 880	
/mpiwg/online/permanent/library/YAYZVXFV	Mq. 13	
/mpiwg/online/permanent/library/YPQBBF6W	Mq. 53	
/mpiwg/online/permanent/library/6RQNSE0Y	Mq. 58	
/mpiwg/online/permanent/library/4KDV4B28	Mq. 59	
/mpiwg/online/permanent/library/U58SNM52	Mq. 101	
/mpiwg/online/permanent/library/GZ7MYVVT	Mo. 109	
/mpiwg/online/permanent/library/WTC2BK80	Mq. 119	
/mpiwg/online/permanent/library/K7K1KN8F	Mq. 122	
/mpiwg/online/permanent/library/5WS5ZYHK	Mf. 256	35526
/mpiwg/online/permanent/library/HB6ARSZF	Mo. 273	
/mpiwg/online/permanent/library/XF9CP4QE	Mo. 274	
/mpiwg/online/permanent/library/A1A6XD7W	Mo. 275	
/mpiwg/online/permanent/library/TPSHV2XY	Min. 32	
/mpiwg/online/permanent/library/ZEE6XUA0	Min. 190	105948
/mpiwg/online/permanent/library/7KTQZUX7	Pet. 67	172888	17288
/mpiwg/online/permanent/library/KM9XSNZ5	Pet. 367	
/mpiwg/online/permanent/library/N63P9SSH	Pet. 546	
/mpiwg/online/permanent/library/6T1SEV6U	Pet. 549	
/mpiwg/online/permanent/library/7D6M7BC2	Pet. 669	1102
/mpiwg/online/permanent/library/ZPGFRTP4	Pet. 671	34806
/mpiwg/online/permanent/library/B9T4EXVU	Pet. 672	28088
/mpiwg/online/permanent/library/AZ1NUP3X	Pet. 695	
/mpiwg/online/permanent/library/F5NE1DNR	Pm. 124	34551
/mpiwg/online/permanent/library/RUTRQK29	Pm. 369	98095
/mpiwg/online/permanent/library/WENDV4KM	Pm. 396	98095
/mpiwg/online/permanent/library/21M7PW61	Pm. 466	
/mpiwg/online/permanent/library/S1H0T1PE	Pm. 501	
/mpiwg/online/permanent/library/C7A4KKCD	Pm. 578	
/mpiwg/online/permanent/library/G83V2RS0	Pm. 671n	
/mpiwg/online/permanent/library/GGYEHHNT	Spr. 1803	
/mpiwg/online/permanent/library/RX9HUV1A	Spr. 1805  	
/mpiwg/online/permanent/library/CPKMQCKV	Spr. 1820a	
/mpiwg/online/permanent/library/SZY9KYP9	Spr. 1820b	
/mpiwg/online/permanent/library/HS53Z9PE	Spr. 1820c	
/mpiwg/online/permanent/library/43G98CS2	Spr. 1820d	
/mpiwg/online/permanent/library/Y2W4N14N	Spr. 1820e	
/mpiwg/online/permanent/library/GHD1VTNQ	Spr. 1820f	
/mpiwg/online/permanent/library/6RAYXHT4	Spr. 1820g	
/mpiwg/online/permanent/library/FUTZF8X3	Spr. 1820h	
/mpiwg/online/permanent/library/YNAWW70Q	Spr. 1820i	
/mpiwg/online/permanent/library/8DK7PK0M	Spr. 1824a	182770
/mpiwg/online/permanent/library/BAMHWNY6	Spr. 1824b	260186
/mpiwg/online/permanent/library/1RFXEXQH	Spr. 1832, Spr. 1833	260194
/mpiwg/online/permanent/library/Q35QUV60	Spr. 1844	37153
/mpiwg/online/permanent/library/KEPCYY4M	Spr. 1847a	37213
/mpiwg/online/permanent/library/FB3PGKBR	Spr. 1847b	172952
/mpiwg/online/permanent/library/RV53M2M3	Spr. 1863	179791
/mpiwg/online/permanent/library/9T9Y1SRN	Spr. 1876	36429
/mpiwg/online/permanent/library/41TS5VQQ	WE. 179	74822
/mpiwg/online/permanent/library/EEFE45Z7	WE. 191	87549
/mpiwg/online/permanent/library/ZB6NW0EH	WE. 193	83765
/mpiwg/online/permanent/library/ZWRFP1T6	We. 131	
/mpiwg/online/permanent/library/S667A2CB	We. 1128	260198
/mpiwg/online/permanent/library/6U0KT4R6	We. 1129	34986
/mpiwg/online/permanent/library/EU538CWX	We. 1135	
/mpiwg/online/permanent/library/0UEMMFKG	We. 1142	58328
/mpiwg/online/permanent/library/AY5NA86U	We. 1177	
/mpiwg/online/permanent/library/FFYAS96M	We. 1713	200246
/mpiwg/online/permanent/library/UKXT7XDQ	We. 1720	
/mpiwg/online/permanent/library/G81YWDV4	We. 1725	
/mpiwg/online/permanent/library/5XA8H9C7	We. 1772	
/mpiwg/online/permanent/library/CQD5YBZP	We. 1791	199952
/mpiwg/online/permanent/library/9PDK3S85	We. 1811	99059
/mpiwg/online/permanent/library/B47T3HY2	Landberg 58	
/mpiwg/online/permanent/library/ERZHST5Y	Landberg 63	176694
/mpiwg/online/permanent/library/Y9YFECTM	Landberg 68	36575
/mpiwg/online/permanent/library/6QFP3KDP	Landberg 108	101488
/mpiwg/online/permanent/library/GFGNP6U1	Landberg 110	36696
/mpiwg/online/permanent/library/CBDDYK1K	Landberg 131	
/mpiwg/online/permanent/library/33MZX7EA	Landberg 221	
/mpiwg/online/permanent/library/WPWUZ7PD	Landberg 390	
/mpiwg/online/permanent/library/88Z24N37	Landberg 517	
/mpiwg/online/permanent/library/ZWSE749V	Landberg 528	
/mpiwg/online/permanent/library/YGTTKT32	Landberg 548	
/mpiwg/online/permanent/library/NXNKNXQK	Landberg 558	
/mpiwg/online/permanent/library/4W2VMKEA	Landberg 574	36241
/mpiwg/online/permanent/library/5SCQ6GGC	Landberg 597	260129
/mpiwg/online/permanent/library/PWHE1V9B	Landberg 599	260138
/mpiwg/online/permanent/library/33H6FH5H	Landberg 608	38860
/mpiwg/online/permanent/library/2WNQSTKD	Landberg 700	260146
/mpiwg/online/permanent/library/WADETW4Y	Landberg 721	89861
/mpiwg/online/permanent/library/8XWYTZ26	Landberg 724	86328
/mpiwg/online/permanent/library/1T0Z5TU5	Landberg 725	180743
/mpiwg/online/permanent/library/WU8MY3Z7	Landberg 734	86328
/mpiwg/online/permanent/library/9WQEEK5W	Landberg 789	260150
/mpiwg/online/permanent/library/Z8NV0CTW	Landberg 801	90658
/mpiwg/online/permanent/library/G3QWK4AC	Landberg 901	58423
/mpiwg/online/permanent/library/2AG56K0B	Landberg 953	181058
/mpiwg/online/permanent/library/94361DFP	Landberg 1038	36882
/mpiwg/online/permanent/library/KPHXWD6Q	Glaser 21	58453
/mpiwg/online/permanent/library/74QU8KS5	Glaser 103	27543
/mpiwg/online/permanent/library/EVC8N87R	Glaser 163	36745
/mpiwg/online/permanent/library/0DN9PRCF	Glaser 227	87298
/mpiwg/online/permanent/library/W0XP5E4U	Glaser 239	259646
/mpiwg/online/permanent/library/TU5XE7C1	Sprenger 1835	
/mpiwg/online/permanent/library/CCP11NGY	Sprenger 1837	
/mpiwg/online/permanent/library/ZUWAT0ZQ	Sprenger 1841	
/mpiwg/online/permanent/library/9BRCYKAB	Sprenger 1848	
/mpiwg/online/permanent/library/BV8GC334	Sprenger 1849	
/mpiwg/online/permanent/library/SF8579Q0	Sprenger 1855	
/mpiwg/online/permanent/library/3RGA5A05	Sprenger 1857	
/mpiwg/online/permanent/library/82R7ZZSX	Sprenger 1858	
/mpiwg/online/permanent/library/6UZB2ZF0	Sprenger 1866	
/mpiwg/online/permanent/library/NDG2XP4X	Sprenger 1869	
/mpiwg/online/permanent/library/ZE7H56YG	Sprenger 1872	
/mpiwg/online/permanent/library/NRH0KE0C	Sprenger 1877	36099
/mpiwg/online/permanent/library/WHHX8GQR	Sprenger 1979	74237
/mpiwg/online/permanent/library/9RA7Q4E4	Dq 49	
/mpiwg/online/permanent/library/KNA1AZYB	Pet673	36713
/mpiwg/online/permanent/library/5XK3NNZ8	Pm228	35943
/mpiwg/online/permanent/library/52M37YG2	Mo200	
/mpiwg/online/permanent/library/X1MZZZUQ	Mq98	
/mpiwg/online/permanent/library/WNP9PH6D	Mq99	
/mpiwg/online/permanent/library/768MAEZ5	Mq100	
/mpiwg/online/permanent/library/TG5CBFFX	Mq 103	
/mpiwg/online/permanent/library/Z0D5TC82	Mq690	
/mpiwg/online/permanent/library/VCBUFM96	Mq704	
/mpiwg/online/permanent/library/F5TZPQVY	Mq733	
/mpiwg/online/permanent/library/YU42N9Z8	Mq 1613	
/mpiwg/online/permanent/library/14MQCGHU	Mq 1867	
/mpiwg/online/permanent/library/9EGT2BRM	WE175	36065
/mpiwg/online/permanent/library/Y8TVP51Y	We 1130	
/mpiwg/online/permanent/library/9C08PCUP	We 1134	
/mpiwg/online/permanent/library/SYA8GMGK	We1136	39880
/mpiwg/online/permanent/library/703D1GT3	We1138	36318
/mpiwg/online/permanent/library/WB8YDER8	We1138a	36597
/mpiwg/online/permanent/library/D0D28400	We1143	80831
/mpiwg/online/permanent/library/F40PGG95	We 1146	58354
/mpiwg/online/permanent/library/RA5U8CXC	We1149	36529
/mpiwg/online/permanent/library/GH7ZS1D9	We1150	36380
/mpiwg/online/permanent/library/C6PPH93P	We1152	69450
/mpiwg/online/permanent/library/1GCQ2A0A	We1736a	81178
/mpiwg/online/permanent/library/ZB25P1RA	We1813	64270
/mpiwg/online/permanent/library/V775Y3WC	We 1817	
/mpiwg/online/permanent/library/WVSC7VM5	We1834	65785
/mpiwg/online/permanent/library/K52ER1YK	We1869	36645
/mpiwg/online/permanent/library/3V432ZHS	Mf34	
/mpiwg/online/permanent/library/QSV2AF5S	Mf 56	
/mpiwg/online/permanent/library/SM52UMAV	Mf 1296	
/mpiwg/online/permanent/library/5XT0G6XR	Mq 17	
/mpiwg/online/permanent/library/9T0C7D2H	Mq 55	
/mpiwg/online/permanent/library/YE2KMPMT	Mq 60	
/mpiwg/online/permanent/library/QRHAD3QS	Mq 62	
/mpiwg/online/permanent/library/CGBGUH18	Mq 63	
/mpiwg/online/permanent/library/M55N9CS6	Mq67	
/mpiwg/online/permanent/library/9ZY4PYGG	Mq 69	
/mpiwg/online/permanent/library/6XRNKUKV	Mq 90	
/mpiwg/online/permanent/library/PP12ZB73	Mq113	
/mpiwg/online/permanent/library/RTRTX10P	Mq115	
/mpiwg/online/permanent/library/TTXMKGEU	Mq120	
/mpiwg/online/permanent/library/X3H0NXES	Mo146	
/mpiwg/online/permanent/library/R47Z9P5A	Mq180b	
/mpiwg/online/permanent/library/G43PXGT6	Mq293	
/mpiwg/online/permanent/library/7DXAVFU9	Mq294	
/mpiwg/online/permanent/library/GX3URBYN	Mq299	
/mpiwg/online/permanent/library/EWPZ4CRE	Mq303	
/mpiwg/online/permanent/library/W7BZRS9T	Mq510	
/mpiwg/online/permanent/library/CDCKRHVT	Mq618	
/mpiwg/online/permanent/library/Y4DM5MU9	Mq728	
/mpiwg/online/permanent/library/DYY2GQ1K	Mo28	
/mpiwg/online/permanent/library/9U845SM0	Mo35	
/mpiwg/online/permanent/library/1WDTQT79	Mo123	
/mpiwg/online/permanent/library/6XDTVQD3	Mo205	
/mpiwg/online/permanent/library/XAAKBPZQ	Mo252	
/mpiwg/online/permanent/library/T7RDXZZU	Mo298	
/mpiwg/online/permanent/library/N6NEE1MG	Sachau63	
/mpiwg/online/permanent/library/T9319687	Sachau77	
/mpiwg/online/permanent/library/WRQEXG1A	Sachau103	
/mpiwg/online/permanent/library/SVXZ2SXU	Glaser3	
/mpiwg/online/permanent/library/NC8BP8KM	Glaser6	22863
/mpiwg/online/permanent/library/UGTHY0RG	Glaser 12	
/mpiwg/online/permanent/library/PGBX9F2A	Glaser13	
/mpiwg/online/permanent/library/RUK8AFQP	Glaser26	
/mpiwg/online/permanent/library/RNEZE8Z6	Glaser29	
/mpiwg/online/permanent/library/YB4U050C	Glaser52	
/mpiwg/online/permanent/library/TRQNNGSR	Glaser82	
/mpiwg/online/permanent/library/E098F3GY	Glaser83	34870
/mpiwg/online/permanent/library/M0XAYXH0	Glaser168	
/mpiwg/online/permanent/library/XQH10RER	Glaser171	
/mpiwg/online/permanent/library/MWG2QDZ9	Glaser181	
/mpiwg/online/permanent/library/CRZS9DGH	Glaser191	
/mpiwg/online/permanent/library/C7RU4VY2	Landberg29	
/mpiwg/online/permanent/library/26A3FGU6	Landberg72	
/mpiwg/online/permanent/library/5AN0VGK8	Landberg95	
/mpiwg/online/permanent/library/6188FM1C	Landberg348	
/mpiwg/online/permanent/library/1M75N53E	Landberg394	
/mpiwg/online/permanent/library/2EBGM67W	Landberg402	
/mpiwg/online/permanent/library/409E3DCG	Landberg414	
/mpiwg/online/permanent/library/GEWZ52P2	Landberg471	
/mpiwg/online/permanent/library/ZC348HEA	Landberg473	
/mpiwg/online/permanent/library/YA2DSYNP	Landberg526a	
/mpiwg/online/permanent/library/5QUBPG2E	Landberg533	
/mpiwg/online/permanent/library/CC2KDXXX	Landberg540	
/mpiwg/online/permanent/library/MMDN8FQU	Landberg563	260120
/mpiwg/online/permanent/library/HE9AH1QG	Landberg688	
/mpiwg/online/permanent/library/EZ3FM5PE	Landberg691	
/mpiwg/online/permanent/library/HERAZFNC	Landberg704	
/mpiwg/online/permanent/library/AU591E8A	Landberg 706	
/mpiwg/online/permanent/library/WS8EXX1H	Landberg 726	
/mpiwg/online/permanent/library/Z1AS4XMP	Landberg730	
/mpiwg/online/permanent/library/H0KER885	Landberg785	
/mpiwg/online/permanent/library/N699EE92	Landberg792	
/mpiwg/online/permanent/library/FM05UE82	Landberg804	
/mpiwg/online/permanent/library/EDKYSUR0	Landberg808	
/mpiwg/online/permanent/library/05AD9Q0P	Landberg809	
/mpiwg/online/permanent/library/M9XBU92T	Landberg810	
/mpiwg/online/permanent/library/527HR282	Landberg851	
/mpiwg/online/permanent/library/2BPAV5AP	Landberg874	
/mpiwg/online/permanent/library/DX904FN7	Landberg904	
/mpiwg/online/permanent/library/5MB6HBYV	Landberg954	
/mpiwg/online/permanent/library/EY8APK0A	Landberg962	
/mpiwg/online/permanent/library/8BMBW4G4	Landberg990	
/mpiwg/online/permanent/library/7T85HQNS	Landberg1020	
/mpiwg/online/permanent/library/BVED1RUM	Landberg1024	
/mpiwg/online/permanent/library/RX32XGR4	Landberg1045	
/mpiwg/online/permanent/library/ZTG8VDBH	Landberg1047	
/mpiwg/online/permanent/library/S1C20QWU	Sprenger579	
/mpiwg/online/permanent/library/QQVPRVXX	Sprenger741	
/mpiwg/online/permanent/library/0P6ZPAFN	Sprenger806	
/mpiwg/online/permanent/library/RNQB6XU1	Sprenger853	
/mpiwg/online/permanent/library/MHXNZTW8	Sprenger1765	
/mpiwg/online/permanent/library/66WEWE7W	Sprenger1768	
/mpiwg/online/permanent/library/0SWBP6BQ	Sprenger1769	
/mpiwg/online/permanent/library/E68HPXVW	Sprenger1773	
/mpiwg/online/permanent/library/709T760M	Sprenger1775	
/mpiwg/online/permanent/library/G38FHNCR	Sprenger1785	
/mpiwg/online/permanent/library/YDDYCNW2	Sprenger1786	
/mpiwg/online/permanent/library/WC4MAWP9	Sprenger1794	
/mpiwg/online/permanent/library/E4K1BZGY	Sprenger1795	
/mpiwg/online/permanent/library/HQESA6Z6	Sprenger1796	
/mpiwg/online/permanent/library/5A6C91YB	Sprenger1797	
/mpiwg/online/permanent/library/AAKKB2NQ	Sprenger1798	
/mpiwg/online/permanent/library/3FDDK5VY	Sprenger1809	
/mpiwg/online/permanent/library/GUCEC4F8	Sprenger1818	
/mpiwg/online/permanent/library/UUNYNDD0	Sprenger1825	
/mpiwg/online/permanent/library/F2T6N181	Sprenger1983	
/mpiwg/online/permanent/library/RGVU2Q6P	Sprenger2051	
/mpiwg/online/permanent/library/W2RU181H	Pet62	260170
/mpiwg/online/permanent/library/6V4DMEHM	Pet315	260162
/mpiwg/online/permanent/library/UV4YZDKD	Pet364	
/mpiwg/online/permanent/library/NT5EXG5E	Pet366	
/mpiwg/online/permanent/library/5EZS7QN2	Pet538	
/mpiwg/online/permanent/library/Q48258BU	Pet540	
/mpiwg/online/permanent/library/GKCQPW4C	Pet541	
/mpiwg/online/permanent/library/QNMU1Y7R	Pet542	
/mpiwg/online/permanent/library/ZZPSPUX3	Pet566	
/mpiwg/online/permanent/library/KYPD5EQQ	Pet567	
/mpiwg/online/permanent/library/9YB667BV	Pet670	260174
/mpiwg/online/permanent/library/NXDAZZYU	Pet678	
/mpiwg/online/permanent/library/HK1KXEAS	Pet679	
/mpiwg/online/permanent/library/PHV1DN89	Pet680	
/mpiwg/online/permanent/library/GFF9GXY2	Pet686	
/mpiwg/online/permanent/library/1NY8YTTK	Pet687	
/mpiwg/online/permanent/library/KZHA448R	Pet701	
/mpiwg/online/permanent/library/ZES7ZSRY	Pm15	
/mpiwg/online/permanent/library/8V9WBD9T	Pm51	
/mpiwg/online/permanent/library/PRBD34TT	Pm74	
/mpiwg/online/permanent/library/93ZNG8YY	Pm79	260182
/mpiwg/online/permanent/library/SY6EG167	Pm101	
/mpiwg/online/permanent/library/PBQS3G43	Pm102	
/mpiwg/online/permanent/library/SP3BEXHH	Pm150	
/mpiwg/online/permanent/library/6573GCC6	Pm226	
/mpiwg/online/permanent/library/KG1H663Q	Pm253	
/mpiwg/online/permanent/library/B5WCTPK3	Pm255	
/mpiwg/online/permanent/library/1UNXF1GM	Pm402	260178
/mpiwg/online/permanent/library/Y5NPFTMF	Pm428	
/mpiwg/online/permanent/library/S3610Y72	Pm481	
/mpiwg/online/permanent/library/YXDXS5HG	Pm653	
/mpiwg/online/permanent/library/4ZP01NGT	Pm681	
/mpiwg/online/permanent/library/EE89RVH2	Minutoli182	
/mpiwg/online/permanent/library/GHBFW2C7	Minutoli235	
/mpiwg/online/permanent/library/N5RTG0FC	WE83	
/mpiwg/online/permanent/library/MK7D4B4T	WE84	
/mpiwg/online/permanent/library/M2TCAPP4	WE85	
/mpiwg/online/permanent/library/PPDVYMP1	We1087	
/mpiwg/online/permanent/library/8GDUVC9M	We1127	19259
/mpiwg/online/permanent/library/7TGX44B1	We1131	260202
/mpiwg/online/permanent/library/U1ZXKQ5X	We1132	36550
/mpiwg/online/permanent/library/XNUH8P1G	We1133	260206
/mpiwg/online/permanent/library/4TS9E6YD	We1139	35035
/mpiwg/online/permanent/library/EX552DH4	We1244	
/mpiwg/online/permanent/library/88Z15RK7	We1245	
/mpiwg/online/permanent/library/W028ATN3	We1247	
/mpiwg/online/permanent/library/T85QNYCC	We1249	
/mpiwg/online/permanent/library/WEEXTSX4	We1250	
/mpiwg/online/permanent/library/A3D4BSUK	We1251	
/mpiwg/online/permanent/library/4XX6AG9A	We1255	
/mpiwg/online/permanent/library/GYFKXZSA	We1716	
/mpiwg/online/permanent/library/SPGSW20P	We1734	260222
/mpiwg/online/permanent/library/613N5XKM	We1746	260226
/mpiwg/online/permanent/library/9D5CH18W	We1762	
/mpiwg/online/permanent/library/5P84C1ZX	We1763	
/mpiwg/online/permanent/library/TFPMCM67	We1766	
/mpiwg/online/permanent/library/HZA9U6GN	We1771	
/mpiwg/online/permanent/library/WRPNC26P	We1781	
/mpiwg/online/permanent/library/7UW56KCD	We1782	
/mpiwg/online/permanent/library/3K9KP5B9	We1809	262557
/mpiwg/online/permanent/library/MMUR1Q63	We1810	87212
/mpiwg/online/permanent/library/5D32F44N	We1825	81811
/mpiwg/online/permanent/library/5NQPVZ3A	We1838	
/mpiwg/online/permanent/library/W8PSFVCW	Landberg526c	
/mpiwg/online/permanent/library/47W6DFK4	Landberg526a	
/mpiwg/online/permanent/library/NM5YDK28	Ms. or. fol. 1405	
/mpiwg/online/permanent/library/8B99ETK5	Ms. or. fol. 3006	
/mpiwg/online/permanent/library/NNGTPNYR	Ms. or. fol. 3017	
/mpiwg/online/permanent/library/VEUT3QQ7	Ms. or. fol. 3021	
/mpiwg/online/permanent/library/MKB4V9VH	Ms. or. fol. 3035	
/mpiwg/online/permanent/library/GUC9KBG5	Ms. or. fol. 3051	
/mpiwg/online/permanent/library/5TZ5Z0KF	Ms. or. fol. 3102	
/mpiwg/online/permanent/library/FRKWG36U	Ms. or. fol. 3176	
/mpiwg/online/permanent/library/WGCYQ6TA	Ms. or. fol. 3306	
/mpiwg/online/permanent/library/UN6TGTH6	Ms. or. fol. 3326	
/mpiwg/online/permanent/library/XG46R3SU	Ms. or. fol. 3405	
/mpiwg/online/permanent/library/H3USZD2A	Ms. or. fol. 4106	
/mpiwg/online/permanent/library/HBZKBXPQ	Ms. or. fol. 4249	
/mpiwg/online/permanent/library/HSNSDU2Q	Ms. or. quart. 786	
/mpiwg/online/permanent/library/SW2DK2N8	Ms. or. quart. 790	
/mpiwg/online/permanent/library/8N2QMFDF	Ms. or. quart. 840	
/mpiwg/online/permanent/library/U9RTQB20	Ms. or. quart. 884	
/mpiwg/online/permanent/library/483RUKYB	Ms. or. quart. 971	
/mpiwg/online/permanent/library/KD4RAD4T	Ms. or. quart. 1075	
/mpiwg/online/permanent/library/VKRZBZDY	Ms. or. quart. 1192	
/mpiwg/online/permanent/library/VARAY833	Ms. or. quart. 1193	
/mpiwg/online/permanent/library/N1CTY2H5	Ms. or. quart. 1342	
/mpiwg/online/permanent/library/QMRAPWFN	Ms. or. quart. 1384	
/mpiwg/online/permanent/library/1PV9QRD3	Ms. or. quart. 1418	
/mpiwg/online/permanent/library/Z3FPZMBG	Ms. or. quart. 1432	
/mpiwg/online/permanent/library/7FDUPCKK	Ms. or. quart. 1436	
/mpiwg/online/permanent/library/0TY9RHW0	Ms. or. quart. 1440	
/mpiwg/online/permanent/library/6RGM9U05	Ms. or. quart. 1441	
/mpiwg/online/permanent/library/057B6TGU	Ms. or. quart. 1474	
/mpiwg/online/permanent/library/R4CXDYDR	Ms. or. quart. 1475	
/mpiwg/online/permanent/library/AAHFK2TF	Ms. or. quart. 1526	
/mpiwg/online/permanent/library/VK6K040Q	Ms. or. quart. 1542	
/mpiwg/online/permanent/library/FSXPVBXK	Ms. or. quart. 1606	
/mpiwg/online/permanent/library/24C05Y7P	Ms. or. quart. 1617	
/mpiwg/online/permanent/library/PGHY8QUN	Ms. or. quart. 1636	
/mpiwg/online/permanent/library/3FDEBVBM	Ms. or. quart. 1641	
/mpiwg/online/permanent/library/4370E5WH	Ms. or. quart. 1694	
/mpiwg/online/permanent/library/WMY6ARYN	Ms. or. quart. 1697	
/mpiwg/online/permanent/library/U48H1KTB	Ms. or. quart. 1702	
/mpiwg/online/permanent/library/RF3TDP6R	Ms. or. quart. 1709	
/mpiwg/online/permanent/library/GZGQU5Q1	Ms. or. quart. 1736	
/mpiwg/online/permanent/library/ER5QA9N4	Ms. or. quart. 1741	
/mpiwg/online/permanent/library/ZD597BZR	Ms. or. quart. 1924	
/mpiwg/online/permanent/library/0XUP7G9B	Ms. or. quart. 1926	
/mpiwg/online/permanent/library/NS549KU0	Ms. or. quart. 2044	
/mpiwg/online/permanent/library/MDYYQG9W	Ms. or. oct. 431	
/mpiwg/online/permanent/library/QSQ8G9X9	Ms. or. oct. 432	
/mpiwg/online/permanent/library/1XGRU6UN	Ms. or. oct. 433	
/mpiwg/online/permanent/library/FG3G4NEH	Ms. or. oct. 434	
/mpiwg/online/permanent/library/VQQ67EA9	Ms. or. oct. 552	
/mpiwg/online/permanent/library/B8HSD23S	Ms. or. oct. 623	
/mpiwg/online/permanent/library/PMYKU5BS	Ms. or. oct. 944	
/mpiwg/online/permanent/library/G3VB6RSK	Ms. or. oct. 970	
/mpiwg/online/permanent/library/C2V2YHC7	Ms. or. oct. 971	
/mpiwg/online/permanent/library/68HZ9N61	Ms. or. oct. 973	
/mpiwg/online/permanent/library/508521YV	Ms. or. oct. 974	
/mpiwg/online/permanent/library/7RHP5Z4S	Ms. or. oct. 985	
/mpiwg/online/permanent/library/8HHWUFZQ	Ms. or. oct. 1024	
/mpiwg/online/permanent/library/4TDXAP33	Ms. or. oct. 1025	
/mpiwg/online/permanent/library/GBNGN6S1	Ms. or. oct. 1026	
/mpiwg/online/permanent/library/P0CH33FF	Ms. or. oct. 1027	
/mpiwg/online/permanent/library/4B2XS7BF	Ms. or. oct. 1316	
/mpiwg/online/permanent/library/TMYZWAKE	Ms. or. oct. 1317	
/mpiwg/online/permanent/library/Z651PYAE	Ms. or. oct. 1335	
/mpiwg/online/permanent/library/N58TEDEW	Ms. or. oct. 1340	
/mpiwg/online/permanent/library/MUNVM57A	Ms. or. oct. 1367	
/mpiwg/online/permanent/library/RHCKE2UU	Ms. or. oct. 1418	
/mpiwg/online/permanent/library/K81B9Y7E	Ms. or. oct. 1432	
/mpiwg/online/permanent/library/PRQR4ERT	Ms. or. oct. 1443	
/mpiwg/online/permanent/library/QSXECKP1	Ms. or. oct. 1445	
/mpiwg/online/permanent/library/8R02VU1M	Ms. or. oct. 1458	
/mpiwg/online/permanent/library/Q2NW6N6K	Ms. or. oct. 1472	
/mpiwg/online/permanent/library/4UZFR41E	Ms. or. oct. 1487	
/mpiwg/online/permanent/library/DT6EY97K	Ms. or. oct. 1490	
/mpiwg/online/permanent/library/89TEYFVW	Ms. or. oct. 1499	
/mpiwg/online/permanent/library/7W1RG9ZD	Ms. or. oct. 1992	
/mpiwg/online/permanent/library/W5P9NXY1	Ms. or. oct. 2119	
/mpiwg/online/permanent/library/BVY61FW5	Ms. or. oct. 2157	
/mpiwg/online/permanent/library/KDM92WGS	Ms. or. oct. 2191	
/mpiwg/online/permanent/library/HM7RR4E2	Ms. or. oct. 2223	
/mpiwg/online/permanent/library/CNMNRUE0	Ms. or. oct. 2224	
/mpiwg/online/permanent/library/UE8R0N1K	Ms. or. oct. 2245	
/mpiwg/online/permanent/library/MZ3HVMAC	Ms. or. oct. 2285	
/mpiwg/online/permanent/library/9PUU7M6P	Ms. or. oct. 2286	
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/archiv_id_ismi_online_2014.05.23.tab	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1 @@
+/mpiwg/online/permanent/library/WWKYPR05	Glas. 40	35093	350983
/mpiwg/online/permanent/library/AY4RFZ2F	Lbg. 33	37025
/mpiwg/online/permanent/library/RXBT90D9	Lbg. 56	36316
/mpiwg/online/permanent/library/6ZFW5P6F	Lbg. 71	31672
/mpiwg/online/permanent/library/TMDNMV96	Lbg. 132	31794
/mpiwg/online/permanent/library/CQ0V4D71	Lbg. 144	37240
/mpiwg/online/permanent/library/QTB5X5EU	Lbg. 199	35014
/mpiwg/online/permanent/library/AF5VB2H8	Lbg. 368	41344
/mpiwg/online/permanent/library/75F1C6EC	Lbg. 493	172492
/mpiwg/online/permanent/library/9NTY13X5	Lbg. 656	72545
/mpiwg/online/permanent/library/Z612GY1B	Lbg. 669	36185
/mpiwg/online/permanent/library/WCDH5WZB	Lbg. 720	37739
/mpiwg/online/permanent/library/FT55FQ4T	Lbg. 880	7393
/mpiwg/online/permanent/library/YAYZVXFV	Mq. 13	17897
/mpiwg/online/permanent/library/YPQBBF6W	Mq. 53	32256
/mpiwg/online/permanent/library/6RQNSE0Y	Mq. 58	19182
/mpiwg/online/permanent/library/4KDV4B28	Mq. 59	
/mpiwg/online/permanent/library/U58SNM52	Mq. 101	49117
/mpiwg/online/permanent/library/GZ7MYVVT	Mo. 109	70639
/mpiwg/online/permanent/library/WTC2BK80	Mq. 119	6334
/mpiwg/online/permanent/library/K7K1KN8F	Mq. 122	15793
/mpiwg/online/permanent/library/5WS5ZYHK	Mf. 256	35526
/mpiwg/online/permanent/library/HB6ARSZF	Mo. 273	181096
/mpiwg/online/permanent/library/XF9CP4QE	Mo. 274	31606
/mpiwg/online/permanent/library/A1A6XD7W	Mo. 275	31568
/mpiwg/online/permanent/library/TPSHV2XY	Min. 32	177086
/mpiwg/online/permanent/library/ZEE6XUA0	Min. 190	105948
/mpiwg/online/permanent/library/7KTQZUX7	Pet. 67	172888	17288
/mpiwg/online/permanent/library/KM9XSNZ5	Pet. 367	178020
/mpiwg/online/permanent/library/N63P9SSH	Pet. 546	141330
/mpiwg/online/permanent/library/6T1SEV6U	Pet. 549	170305
/mpiwg/online/permanent/library/7D6M7BC2	Pet. 669	1102
/mpiwg/online/permanent/library/ZPGFRTP4	Pet. 671	34806
/mpiwg/online/permanent/library/B9T4EXVU	Pet. 672	28088
/mpiwg/online/permanent/library/AZ1NUP3X	Pet. 695	182046
/mpiwg/online/permanent/library/F5NE1DNR	Pm. 124	34551
/mpiwg/online/permanent/library/RUTRQK29	Pm. 369	98095
/mpiwg/online/permanent/library/WENDV4KM	Pm. 396	98095
/mpiwg/online/permanent/library/21M7PW61	Pm. 466	27618
/mpiwg/online/permanent/library/S1H0T1PE	Pm. 501	
/mpiwg/online/permanent/library/C7A4KKCD	Pm. 578	200007
/mpiwg/online/permanent/library/G83V2RS0	Pm. 671n	
/mpiwg/online/permanent/library/GGYEHHNT	Spr. 1803	180123
/mpiwg/online/permanent/library/RX9HUV1A	Spr. 1805  	
/mpiwg/online/permanent/library/CPKMQCKV	Spr. 1820a	177428
/mpiwg/online/permanent/library/SZY9KYP9	Spr. 1820b	
/mpiwg/online/permanent/library/HS53Z9PE	Spr. 1820c	82185
/mpiwg/online/permanent/library/43G98CS2	Spr. 1820d	
/mpiwg/online/permanent/library/Y2W4N14N	Spr. 1820e	
/mpiwg/online/permanent/library/GHD1VTNQ	Spr. 1820f	
/mpiwg/online/permanent/library/6RAYXHT4	Spr. 1820g	
/mpiwg/online/permanent/library/FUTZF8X3	Spr. 1820h	
/mpiwg/online/permanent/library/YNAWW70Q	Spr. 1820i	135153
/mpiwg/online/permanent/library/8DK7PK0M	Spr. 1824a	182770
/mpiwg/online/permanent/library/BAMHWNY6	Spr. 1824b	260186
/mpiwg/online/permanent/library/1RFXEXQH	Spr. 1832, Spr. 1833	260194
/mpiwg/online/permanent/library/Q35QUV60	Spr. 1844	37153
/mpiwg/online/permanent/library/KEPCYY4M	Spr. 1847a	37213
/mpiwg/online/permanent/library/FB3PGKBR	Spr. 1847b	172952
/mpiwg/online/permanent/library/RV53M2M3	Spr. 1863	179791
/mpiwg/online/permanent/library/9T9Y1SRN	Spr. 1876	36429
/mpiwg/online/permanent/library/41TS5VQQ	WE. 179	74822
/mpiwg/online/permanent/library/EEFE45Z7	WE. 191	87549
/mpiwg/online/permanent/library/ZB6NW0EH	WE. 193	83765
/mpiwg/online/permanent/library/ZWRFP1T6	We. 131	260210
/mpiwg/online/permanent/library/S667A2CB	We. 1128	260198
/mpiwg/online/permanent/library/6U0KT4R6	We. 1129	34986
/mpiwg/online/permanent/library/EU538CWX	We. 1135	37228
/mpiwg/online/permanent/library/0UEMMFKG	We. 1142	58328
/mpiwg/online/permanent/library/AY5NA86U	We. 1177	19972
/mpiwg/online/permanent/library/FFYAS96M	We. 1713	200246
/mpiwg/online/permanent/library/UKXT7XDQ	We. 1720	18869
/mpiwg/online/permanent/library/G81YWDV4	We. 1725	260218
/mpiwg/online/permanent/library/5XA8H9C7	We. 1772	260234
/mpiwg/online/permanent/library/CQD5YBZP	We. 1791	199952
/mpiwg/online/permanent/library/9PDK3S85	We. 1811	99059
/mpiwg/online/permanent/library/B47T3HY2	Landberg 58	12453
/mpiwg/online/permanent/library/ERZHST5Y	Landberg 63	176694
/mpiwg/online/permanent/library/Y9YFECTM	Landberg 68	36575
/mpiwg/online/permanent/library/6QFP3KDP	Landberg 108	101488
/mpiwg/online/permanent/library/GFGNP6U1	Landberg 110	36696
/mpiwg/online/permanent/library/CBDDYK1K	Landberg 131	35896
/mpiwg/online/permanent/library/33MZX7EA	Landberg 221	35583
/mpiwg/online/permanent/library/WPWUZ7PD	Landberg 390	35960
/mpiwg/online/permanent/library/88Z24N37	Landberg 517	98286
/mpiwg/online/permanent/library/ZWSE749V	Landberg 528	165721
/mpiwg/online/permanent/library/YGTTKT32	Landberg 548	260111
/mpiwg/online/permanent/library/NXNKNXQK	Landberg 558	90980
/mpiwg/online/permanent/library/4W2VMKEA	Landberg 574	36241
/mpiwg/online/permanent/library/5SCQ6GGC	Landberg 597	260129
/mpiwg/online/permanent/library/PWHE1V9B	Landberg 599	260138
/mpiwg/online/permanent/library/33H6FH5H	Landberg 608	38860
/mpiwg/online/permanent/library/2WNQSTKD	Landberg 700	260146
/mpiwg/online/permanent/library/WADETW4Y	Landberg 721	89861
/mpiwg/online/permanent/library/8XWYTZ26	Landberg 724	86328
/mpiwg/online/permanent/library/1T0Z5TU5	Landberg 725	180743
/mpiwg/online/permanent/library/WU8MY3Z7	Landberg 734	86328
/mpiwg/online/permanent/library/9WQEEK5W	Landberg 789	260150
/mpiwg/online/permanent/library/Z8NV0CTW	Landberg 801	90658
/mpiwg/online/permanent/library/G3QWK4AC	Landberg 901	58423
/mpiwg/online/permanent/library/2AG56K0B	Landberg 953	181058
/mpiwg/online/permanent/library/94361DFP	Landberg 1038	36882
/mpiwg/online/permanent/library/KPHXWD6Q	Glaser 21	58453
/mpiwg/online/permanent/library/74QU8KS5	Glaser 103	27543
/mpiwg/online/permanent/library/EVC8N87R	Glaser 163	36745
/mpiwg/online/permanent/library/0DN9PRCF	Glaser 227	87298
/mpiwg/online/permanent/library/W0XP5E4U	Glaser 239	259646
/mpiwg/online/permanent/library/TU5XE7C1	Sprenger 1835	36114
/mpiwg/online/permanent/library/CCP11NGY	Sprenger 1837	85003
/mpiwg/online/permanent/library/ZUWAT0ZQ	Sprenger 1841	157290
/mpiwg/online/permanent/library/9BRCYKAB	Sprenger 1848	86871
/mpiwg/online/permanent/library/BV8GC334	Sprenger 1849	64406
/mpiwg/online/permanent/library/SF8579Q0	Sprenger 1855	102590
/mpiwg/online/permanent/library/3RGA5A05	Sprenger 1857	82615
/mpiwg/online/permanent/library/82R7ZZSX	Sprenger 1858	58245
/mpiwg/online/permanent/library/6UZB2ZF0	Sprenger 1866	179550
/mpiwg/online/permanent/library/NDG2XP4X	Sprenger 1869	12419
/mpiwg/online/permanent/library/ZE7H56YG	Sprenger 1872	95861
/mpiwg/online/permanent/library/NRH0KE0C	Sprenger 1877	36099
/mpiwg/online/permanent/library/WHHX8GQR	Sprenger 1979	74237
/mpiwg/online/permanent/library/9RA7Q4E4	Dq 49	58480
/mpiwg/online/permanent/library/KNA1AZYB	Pet673	36713
/mpiwg/online/permanent/library/5XK3NNZ8	Pm228	35943
/mpiwg/online/permanent/library/52M37YG2	Mo200	74078
/mpiwg/online/permanent/library/X1MZZZUQ	Mq98	
/mpiwg/online/permanent/library/WNP9PH6D	Mq99	
/mpiwg/online/permanent/library/768MAEZ5	Mq100	
/mpiwg/online/permanent/library/TG5CBFFX	Mq 103	
/mpiwg/online/permanent/library/Z0D5TC82	Mq690	
/mpiwg/online/permanent/library/VCBUFM96	Mq704	
/mpiwg/online/permanent/library/F5TZPQVY	Mq733	
/mpiwg/online/permanent/library/YU42N9Z8	Mq 1613	
/mpiwg/online/permanent/library/14MQCGHU	Mq 1867	
/mpiwg/online/permanent/library/9EGT2BRM	WE175	36065
/mpiwg/online/permanent/library/Y8TVP51Y	We 1130	88041
/mpiwg/online/permanent/library/9C08PCUP	We 1134	63229
/mpiwg/online/permanent/library/SYA8GMGK	We1136	39880
/mpiwg/online/permanent/library/703D1GT3	We1138	36318
/mpiwg/online/permanent/library/WB8YDER8	We1138a	36597
/mpiwg/online/permanent/library/D0D28400	We1143	80831
/mpiwg/online/permanent/library/F40PGG95	We 1146	58354
/mpiwg/online/permanent/library/RA5U8CXC	We1149	36529
/mpiwg/online/permanent/library/GH7ZS1D9	We1150	36380
/mpiwg/online/permanent/library/C6PPH93P	We1152	69450
/mpiwg/online/permanent/library/1GCQ2A0A	We1736a	81178
/mpiwg/online/permanent/library/ZB25P1RA	We1813	64270
/mpiwg/online/permanent/library/V775Y3WC	We 1817	93775
/mpiwg/online/permanent/library/WVSC7VM5	We1834	65785
/mpiwg/online/permanent/library/K52ER1YK	We1869	36645
/mpiwg/online/permanent/library/3V432ZHS	Mf 34	260154
/mpiwg/online/permanent/library/QSV2AF5S	Mf 56	
/mpiwg/online/permanent/library/SM52UMAV	Mf 1296	177653
/mpiwg/online/permanent/library/5XT0G6XR	Mq 17	
/mpiwg/online/permanent/library/9T0C7D2H	Mq 55	
/mpiwg/online/permanent/library/YE2KMPMT	Mq 60	
/mpiwg/online/permanent/library/QRHAD3QS	Mq 62	
/mpiwg/online/permanent/library/CGBGUH18	Mq 63	
/mpiwg/online/permanent/library/M55N9CS6	Mq 67	
/mpiwg/online/permanent/library/9ZY4PYGG	Mq 69	
/mpiwg/online/permanent/library/6XRNKUKV	Mq 90	
/mpiwg/online/permanent/library/PP12ZB73	Mq113	
/mpiwg/online/permanent/library/RTRTX10P	Mq115	
/mpiwg/online/permanent/library/TTXMKGEU	Mq120	
/mpiwg/online/permanent/library/X3H0NXES	Mo146	
/mpiwg/online/permanent/library/R47Z9P5A	Mq180b	
/mpiwg/online/permanent/library/G43PXGT6	Mq293	
/mpiwg/online/permanent/library/7DXAVFU9	Mq294	
/mpiwg/online/permanent/library/GX3URBYN	Mq299	
/mpiwg/online/permanent/library/EWPZ4CRE	Mq303	
/mpiwg/online/permanent/library/W7BZRS9T	Mq510	
/mpiwg/online/permanent/library/CDCKRHVT	Mq618	
/mpiwg/online/permanent/library/Y4DM5MU9	Mq728	
/mpiwg/online/permanent/library/DYY2GQ1K	Mo28	133791
/mpiwg/online/permanent/library/9U845SM0	Mo35	
/mpiwg/online/permanent/library/1WDTQT79	Mo123	
/mpiwg/online/permanent/library/6XDTVQD3	Mo205	
/mpiwg/online/permanent/library/XAAKBPZQ	Mo252	260158
/mpiwg/online/permanent/library/T7RDXZZU	Mo298	133681
/mpiwg/online/permanent/library/N6NEE1MG	Sachau63	
/mpiwg/online/permanent/library/T9319687	Sachau77	
/mpiwg/online/permanent/library/WRQEXG1A	Sachau103	132286
/mpiwg/online/permanent/library/SVXZ2SXU	Glaser3	
/mpiwg/online/permanent/library/NC8BP8KM	Glaser6	22863
/mpiwg/online/permanent/library/UGTHY0RG	Glaser 12	132716
/mpiwg/online/permanent/library/PGBX9F2A	Glaser13	12981
/mpiwg/online/permanent/library/RUK8AFQP	Glaser26	48824
/mpiwg/online/permanent/library/RNEZE8Z6	Glaser29	132647
/mpiwg/online/permanent/library/YB4U050C	Glaser52	132414
/mpiwg/online/permanent/library/TRQNNGSR	Glaser82	4668
/mpiwg/online/permanent/library/E098F3GY	Glaser83	34870
/mpiwg/online/permanent/library/M0XAYXH0	Glaser168	110653
/mpiwg/online/permanent/library/XQH10RER	Glaser171	132141
/mpiwg/online/permanent/library/MWG2QDZ9	Glaser181	10783
/mpiwg/online/permanent/library/CRZS9DGH	Glaser191	
/mpiwg/online/permanent/library/C7RU4VY2	Landberg29	
/mpiwg/online/permanent/library/26A3FGU6	Landberg72	
/mpiwg/online/permanent/library/5AN0VGK8	Landberg95	175596
/mpiwg/online/permanent/library/6188FM1C	Landberg348	
/mpiwg/online/permanent/library/1M75N53E	Landberg394	27704
/mpiwg/online/permanent/library/2EBGM67W	Landberg402	75689
/mpiwg/online/permanent/library/409E3DCG	Landberg414	205793
/mpiwg/online/permanent/library/GEWZ52P2	Landberg471	128166
/mpiwg/online/permanent/library/ZC348HEA	Landberg473	
/mpiwg/online/permanent/library/YA2DSYNP	Landberg526a	260061
/mpiwg/online/permanent/library/5QUBPG2E	Landberg533	
/mpiwg/online/permanent/library/CC2KDXXX	Landberg540	188620
/mpiwg/online/permanent/library/MMDN8FQU	Landberg563	260120
/mpiwg/online/permanent/library/HE9AH1QG	Landberg688	13085
/mpiwg/online/permanent/library/EZ3FM5PE	Landberg691	
/mpiwg/online/permanent/library/HERAZFNC	Landberg704	
/mpiwg/online/permanent/library/AU591E8A	Landberg 706	
/mpiwg/online/permanent/library/WS8EXX1H	Landberg 726	13478
/mpiwg/online/permanent/library/Z1AS4XMP	Landberg730	
/mpiwg/online/permanent/library/H0KER885	Landberg785	13639
/mpiwg/online/permanent/library/N699EE92	Landberg792	14424
/mpiwg/online/permanent/library/FM05UE82	Landberg804	160619
/mpiwg/online/permanent/library/EDKYSUR0	Landberg808	77324
/mpiwg/online/permanent/library/05AD9Q0P	Landberg809	
/mpiwg/online/permanent/library/M9XBU92T	Landberg810	134382
/mpiwg/online/permanent/library/527HR282	Landberg851	14563
/mpiwg/online/permanent/library/2BPAV5AP	Landberg874	178644
/mpiwg/online/permanent/library/DX904FN7	Landberg904	176532
/mpiwg/online/permanent/library/5MB6HBYV	Landberg954	178787
/mpiwg/online/permanent/library/EY8APK0A	Landberg962	
/mpiwg/online/permanent/library/8BMBW4G4	Landberg990	
/mpiwg/online/permanent/library/7T85HQNS	Landberg1020	133022
/mpiwg/online/permanent/library/BVED1RUM	Landberg1024	133879
/mpiwg/online/permanent/library/RX32XGR4	Landberg1045	78071
/mpiwg/online/permanent/library/ZTG8VDBH	Landberg1047	259871
/mpiwg/online/permanent/library/S1C20QWU	Sprenger579	177604
/mpiwg/online/permanent/library/QQVPRVXX	Sprenger741	177349
/mpiwg/online/permanent/library/0P6ZPAFN	Sprenger806	5054
/mpiwg/online/permanent/library/RNQB6XU1	Sprenger853	
/mpiwg/online/permanent/library/MHXNZTW8	Sprenger1765	177074
/mpiwg/online/permanent/library/66WEWE7W	Sprenger1768	
/mpiwg/online/permanent/library/0SWBP6BQ	Sprenger1769	181391
/mpiwg/online/permanent/library/E68HPXVW	Sprenger1773	
/mpiwg/online/permanent/library/709T760M	Sprenger1775	
/mpiwg/online/permanent/library/G38FHNCR	Sprenger1785	
/mpiwg/online/permanent/library/YDDYCNW2	Sprenger1786	
/mpiwg/online/permanent/library/WC4MAWP9	Sprenger1794	22103
/mpiwg/online/permanent/library/E4K1BZGY	Sprenger1795	24367
/mpiwg/online/permanent/library/HQESA6Z6	Sprenger1796	53643
/mpiwg/online/permanent/library/5A6C91YB	Sprenger1797	
/mpiwg/online/permanent/library/AAKKB2NQ	Sprenger1798	
/mpiwg/online/permanent/library/3FDDK5VY	Sprenger1809	
/mpiwg/online/permanent/library/GUCEC4F8	Sprenger1818	
/mpiwg/online/permanent/library/UUNYNDD0	Sprenger1825	260190
/mpiwg/online/permanent/library/F2T6N181	Sprenger1983	
/mpiwg/online/permanent/library/RGVU2Q6P	Sprenger2051	
/mpiwg/online/permanent/library/W2RU181H	Pet62	260170
/mpiwg/online/permanent/library/6V4DMEHM	Pet315	260162
/mpiwg/online/permanent/library/UV4YZDKD	Pet364	15349
/mpiwg/online/permanent/library/NT5EXG5E	Pet366	15272
/mpiwg/online/permanent/library/5EZS7QN2	Pet538	
/mpiwg/online/permanent/library/Q48258BU	Pet540	
/mpiwg/online/permanent/library/GKCQPW4C	Pet541	
/mpiwg/online/permanent/library/QNMU1Y7R	Pet542	260166
/mpiwg/online/permanent/library/ZZPSPUX3	Pet566	
/mpiwg/online/permanent/library/KYPD5EQQ	Pet567	
/mpiwg/online/permanent/library/9YB667BV	Pet670	260174
/mpiwg/online/permanent/library/NXDAZZYU	Pet678	27642
/mpiwg/online/permanent/library/HK1KXEAS	Pet679	
/mpiwg/online/permanent/library/PHV1DN89	Pet680	
/mpiwg/online/permanent/library/GFF9GXY2	Pet686	
/mpiwg/online/permanent/library/1NY8YTTK	Pet687	
/mpiwg/online/permanent/library/KZHA448R	Pet701	
/mpiwg/online/permanent/library/ZES7ZSRY	Pm15	
/mpiwg/online/permanent/library/8V9WBD9T	Pm51	22936
/mpiwg/online/permanent/library/PRBD34TT	Pm74	
/mpiwg/online/permanent/library/93ZNG8YY	Pm79	260182
/mpiwg/online/permanent/library/SY6EG167	Pm101	76205
/mpiwg/online/permanent/library/PBQS3G43	Pm102	
/mpiwg/online/permanent/library/SP3BEXHH	Pm150	
/mpiwg/online/permanent/library/6573GCC6	Pm226	
/mpiwg/online/permanent/library/KG1H663Q	Pm253	23923
/mpiwg/online/permanent/library/B5WCTPK3	Pm255	
/mpiwg/online/permanent/library/1UNXF1GM	Pm402	260178
/mpiwg/online/permanent/library/Y5NPFTMF	Pm428	11703
/mpiwg/online/permanent/library/S3610Y72	Pm481	106249
/mpiwg/online/permanent/library/YXDXS5HG	Pm653	
/mpiwg/online/permanent/library/4ZP01NGT	Pm681	22355
/mpiwg/online/permanent/library/EE89RVH2	Minutoli182	
/mpiwg/online/permanent/library/GHBFW2C7	Minutoli235	
/mpiwg/online/permanent/library/N5RTG0FC	WE83	
/mpiwg/online/permanent/library/MK7D4B4T	WE84	
/mpiwg/online/permanent/library/M2TCAPP4	WE85	11465
/mpiwg/online/permanent/library/PPDVYMP1	We1087	
/mpiwg/online/permanent/library/8GDUVC9M	We1127	19259
/mpiwg/online/permanent/library/7TGX44B1	We1131	260202
/mpiwg/online/permanent/library/U1ZXKQ5X	We1132	36550
/mpiwg/online/permanent/library/XNUH8P1G	We1133	260206
/mpiwg/online/permanent/library/4TS9E6YD	We1139	35035
/mpiwg/online/permanent/library/EX552DH4	We1244	
/mpiwg/online/permanent/library/88Z15RK7	We1245	69970
/mpiwg/online/permanent/library/W028ATN3	We1247	
/mpiwg/online/permanent/library/T85QNYCC	We1249	
/mpiwg/online/permanent/library/WEEXTSX4	We1250	
/mpiwg/online/permanent/library/A3D4BSUK	We1251	116599
/mpiwg/online/permanent/library/4XX6AG9A	We1255	21896
/mpiwg/online/permanent/library/GYFKXZSA	We1716	
/mpiwg/online/permanent/library/SPGSW20P	We1734	260222
/mpiwg/online/permanent/library/613N5XKM	We1746	260226
/mpiwg/online/permanent/library/9D5CH18W	We1762	108476
/mpiwg/online/permanent/library/5P84C1ZX	We1763	260230
/mpiwg/online/permanent/library/TFPMCM67	We1766	88922
/mpiwg/online/permanent/library/HZA9U6GN	We1771	
/mpiwg/online/permanent/library/WRPNC26P	We1781	
/mpiwg/online/permanent/library/7UW56KCD	We1782	260238
/mpiwg/online/permanent/library/3K9KP5B9	We1809	262557
/mpiwg/online/permanent/library/MMUR1Q63	We1810	87212
/mpiwg/online/permanent/library/5D32F44N	We1825	81811
/mpiwg/online/permanent/library/5NQPVZ3A	We1838	
/mpiwg/online/permanent/library/W8PSFVCW	Landberg526c	260067
/mpiwg/online/permanent/library/47W6DFK4	Landberg526a	260061
/mpiwg/online/permanent/library/NM5YDK28	Ms. or. fol. 1405	
/mpiwg/online/permanent/library/8B99ETK5	Ms. or. fol. 3006	
/mpiwg/online/permanent/library/NNGTPNYR	Ms. or. fol. 3017	
/mpiwg/online/permanent/library/VEUT3QQ7	Ms. or. fol. 3021	
/mpiwg/online/permanent/library/MKB4V9VH	Ms. or. fol. 3035	
/mpiwg/online/permanent/library/GUC9KBG5	Ms. or. fol. 3051	
/mpiwg/online/permanent/library/5TZ5Z0KF	Ms. or. fol. 3102	
/mpiwg/online/permanent/library/FRKWG36U	Ms. or. fol. 3176	
/mpiwg/online/permanent/library/WGCYQ6TA	Ms. or. fol. 3306	80397
/mpiwg/online/permanent/library/UN6TGTH6	Ms. or. fol. 3326	
/mpiwg/online/permanent/library/XG46R3SU	Ms. or. fol. 3405	
/mpiwg/online/permanent/library/H3USZD2A	Ms. or. fol. 4106	
/mpiwg/online/permanent/library/HBZKBXPQ	Ms. or. fol. 4249	
/mpiwg/online/permanent/library/HSNSDU2Q	Ms. or. quart. 786	
/mpiwg/online/permanent/library/SW2DK2N8	Ms. or. quart. 790	
/mpiwg/online/permanent/library/8N2QMFDF	Ms. or. quart. 840	
/mpiwg/online/permanent/library/U9RTQB20	Ms. or. quart. 884	
/mpiwg/online/permanent/library/483RUKYB	Ms. or. quart. 971	
/mpiwg/online/permanent/library/KD4RAD4T	Ms. or. quart. 1075	
/mpiwg/online/permanent/library/VKRZBZDY	Ms. or. quart. 1192	
/mpiwg/online/permanent/library/VARAY833	Ms. or. quart. 1193	
/mpiwg/online/permanent/library/N1CTY2H5	Ms. or. quart. 1342	
/mpiwg/online/permanent/library/QMRAPWFN	Ms. or. quart. 1384	
/mpiwg/online/permanent/library/1PV9QRD3	Ms. or. quart. 1418	
/mpiwg/online/permanent/library/Z3FPZMBG	Ms. or. quart. 1432	
/mpiwg/online/permanent/library/7FDUPCKK	Ms. or. quart. 1436	
/mpiwg/online/permanent/library/0TY9RHW0	Ms. or. quart. 1440	
/mpiwg/online/permanent/library/6RGM9U05	Ms. or. quart. 1441	
/mpiwg/online/permanent/library/057B6TGU	Ms. or. quart. 1474	
/mpiwg/online/permanent/library/R4CXDYDR	Ms. or. quart. 1475	
/mpiwg/online/permanent/library/AAHFK2TF	Ms. or. quart. 1526	
/mpiwg/online/permanent/library/VK6K040Q	Ms. or. quart. 1542	
/mpiwg/online/permanent/library/FSXPVBXK	Ms. or. quart. 1606	
/mpiwg/online/permanent/library/24C05Y7P	Ms. or. quart. 1617	
/mpiwg/online/permanent/library/PGHY8QUN	Ms. or. quart. 1636	
/mpiwg/online/permanent/library/3FDEBVBM	Ms. or. quart. 1641	
/mpiwg/online/permanent/library/4370E5WH	Ms. or. quart. 1694	
/mpiwg/online/permanent/library/WMY6ARYN	Ms. or. quart. 1697	
/mpiwg/online/permanent/library/U48H1KTB	Ms. or. quart. 1702	
/mpiwg/online/permanent/library/RF3TDP6R	Ms. or. quart. 1709	
/mpiwg/online/permanent/library/GZGQU5Q1	Ms. or. quart. 1736	
/mpiwg/online/permanent/library/ER5QA9N4	Ms. or. quart. 1741	
/mpiwg/online/permanent/library/ZD597BZR	Ms. or. quart. 1924	
/mpiwg/online/permanent/library/0XUP7G9B	Ms. or. quart. 1926	
/mpiwg/online/permanent/library/NS549KU0	Ms. or. quart. 2044	
/mpiwg/online/permanent/library/MDYYQG9W	Ms. or. oct. 431	
/mpiwg/online/permanent/library/QSQ8G9X9	Ms. or. oct. 432	
/mpiwg/online/permanent/library/1XGRU6UN	Ms. or. oct. 433	
/mpiwg/online/permanent/library/FG3G4NEH	Ms. or. oct. 434	
/mpiwg/online/permanent/library/VQQ67EA9	Ms. or. oct. 552	
/mpiwg/online/permanent/library/B8HSD23S	Ms. or. oct. 623	
/mpiwg/online/permanent/library/PMYKU5BS	Ms. or. oct. 944	
/mpiwg/online/permanent/library/G3VB6RSK	Ms. or. oct. 970	
/mpiwg/online/permanent/library/C2V2YHC7	Ms. or. oct. 971	
/mpiwg/online/permanent/library/68HZ9N61	Ms. or. oct. 973	
/mpiwg/online/permanent/library/508521YV	Ms. or. oct. 974	
/mpiwg/online/permanent/library/7RHP5Z4S	Ms. or. oct. 985	
/mpiwg/online/permanent/library/8HHWUFZQ	Ms. or. oct. 1024	
/mpiwg/online/permanent/library/4TDXAP33	Ms. or. oct. 1025	
/mpiwg/online/permanent/library/GBNGN6S1	Ms. or. oct. 1026	
/mpiwg/online/permanent/library/P0CH33FF	Ms. or. oct. 1027	
/mpiwg/online/permanent/library/4B2XS7BF	Ms. or. oct. 1316	
/mpiwg/online/permanent/library/TMYZWAKE	Ms. or. oct. 1317	
/mpiwg/online/permanent/library/Z651PYAE	Ms. or. oct. 1335	
/mpiwg/online/permanent/library/N58TEDEW	Ms. or. oct. 1340	
/mpiwg/online/permanent/library/MUNVM57A	Ms. or. oct. 1367	
/mpiwg/online/permanent/library/RHCKE2UU	Ms. or. oct. 1418	
/mpiwg/online/permanent/library/K81B9Y7E	Ms. or. oct. 1432	
/mpiwg/online/permanent/library/PRQR4ERT	Ms. or. oct. 1443	
/mpiwg/online/permanent/library/QSXECKP1	Ms. or. oct. 1445	
/mpiwg/online/permanent/library/8R02VU1M	Ms. or. oct. 1458	
/mpiwg/online/permanent/library/Q2NW6N6K	Ms. or. oct. 1472	
/mpiwg/online/permanent/library/4UZFR41E	Ms. or. oct. 1487	33050
/mpiwg/online/permanent/library/DT6EY97K	Ms. or. oct. 1490	
/mpiwg/online/permanent/library/89TEYFVW	Ms. or. oct. 1499	
/mpiwg/online/permanent/library/7W1RG9ZD	Ms. or. oct. 1992	
/mpiwg/online/permanent/library/W5P9NXY1	Ms. or. oct. 2119	
/mpiwg/online/permanent/library/BVY61FW5	Ms. or. oct. 2157	
/mpiwg/online/permanent/library/KDM92WGS	Ms. or. oct. 2191	
/mpiwg/online/permanent/library/HM7RR4E2	Ms. or. oct. 2223	
/mpiwg/online/permanent/library/CNMNRUE0	Ms. or. oct. 2224	
/mpiwg/online/permanent/library/UE8R0N1K	Ms. or. oct. 2245	
/mpiwg/online/permanent/library/MZ3HVMAC	Ms. or. oct. 2285	
/mpiwg/online/permanent/library/9PUU7M6P	Ms. or. oct. 2286	
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/ismi_ralf_list.tab	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1 @@
+WWKYPR05	al-Tabsira[Ahlwardt no.: 5962; Glas. 40]	Glas. 40
AY4RFZ2F	Muntaha al-idrak	Lbg. 33
RXBT90D9	al-Kamil li-al-Farghani[Ahlwardt no.: 5790; Lbg. 56]	Lbg. 56
6ZFW5P6F	Suwar al-kawakib[Ahlwardt no.: 5658; Lbg. 71]	Lbg. 71
TMDNMV96	Islah al-majasti[Ahlwardt no.: 5653; Lbg. 132]	Lbg. 132
CQ0V4D71	Tadil al-ulum[Ahlwardt no.: 5683; Lbg. 144]	Lbg. 144
QTB5X5EU	Idad al-asrar; [Ahlwardt no.: 5970-5972; Lbg. 199]	Lbg. 199
AF5VB2H8	Risala fi nafs al-amr, Nasiraddin at-Tusi, ff. 1-2a[Ahlwardt no.: 5357; Lbg. 368];Risala fi sharh al-Risala fi Nafs al-amr, Shams al-Din al-Kishi, ff. 2b-12[Ahlwardt no.: 5360; Lbg. 368];Risala fi Baqa’ al-nafs[Ahlwardt no.: 5355; Lbg. 368];Nasiraddin al-Tusi, ff. 31b-33b[Ahlwardt no.: 5127; Lbg. 368];Fawaid, Nasiraddin at-Tusi, ff. 33b-35b[Ahlwardt no.: 5342; Lbg. 368];Risala fi Nafs al-natiqa, Ibn Sina, ff. 37a-40a[Ahlwardt no.: 5343; Lbg. 368];Risala fi Ahwal an-nafs, Ibn Sina, ff. 40-65a[Ahlwardt no.: 5339; Lbg. 368];Maqala fi al-‘aql, Farabi, ff. 117a-120b[Ahlwardt no.: ; Lbg. 368]	Lbg. 368
75F1C6EC	Sharh Tahrir al-majasti[Ahlwardt no.: 5656; Lbg. 493]	Lbg. 493
9NTY13X5	al-Irshad[Ahlwardt no.: 5997; Lbg. 656]	Lbg. 656
Z612GY1B	al-Tabsira[Ahlwardt no.: 5670; Lbg. 669]	Lbg. 669
WCDH5WZB	Hashiya al-Birjandi[Ahlwardt no.: 5677; Lbg. 720]	Lbg. 720
FT55FQ4T	Risala fi taqaddum al-‘illa at-tamma[Ahlwardt no.: 5136; Lbg. 880]; INCLUDES Jalaladdin al-Dawani, f. 30, Ahlwardt no.: 5139;Risala fi al-Mahiyya, Samsunizade, ff. 31b-37a, Ahlwardt no.: 5346;Risala fi Bayan al-nafs an-natiqa, Ibn Kamal, ff. 39b-40a	Lbg. 880
YAYZVXFV	Mabahith al-mashriqiyya, Fakhr al-Din al-Razi[Ahlwardt no.: 5064; Mq. 13]	Mq. 13
YPQBBF6W	Sharh ashkal[Ahlwardt no.: 5943; Mq. 53]	Mq. 53
6RQNSE0Y	Hawashi ala sharh al-isharat, Badraddin at-Tustari[Ahlwardt no.: 5051; Mq. 58]	Mq. 58
4KDV4B28	Maqasid al-falasifa, Ghazali[Ahlwardt no.: 5059; Mq. 59]	Mq. 59
U58SNM52	Zij Kushyar[Ahlwardt no.: 5751; Mq. 101]	Mq. 101
GZ7MYVVT	Risala sharifa fi ilm al-haya[Ahlwardt no.: 5725; Mo. 109]	Mo. 109
WTC2BK80	an unknown philosophical work, ff. 99-108[Ahlwardt no.: 5074; Mq. 119]	Mq. 119
K7K1KN8F	Sharh Hidayat al-hikma, anonymous, ff. 369-421[Ahlwardt no.: 5073; Mq. 122]	Mq. 122
5WS5ZYHK	Tahrir Oklides[Ahlwardt no.: 5918; Mf. 256]	Mf. 256
HB6ARSZF	Ihtisar al-majasti[Ahlwardt no.: 5654; Mo. 273]	Mo. 273
XF9CP4QE	Hashiya Majasti[Ahlwardt no.: 5657; Mo. 274]	Mo. 274
A1A6XD7W	Kanun Masudi[Ahlwardt no.: 5667; Mo. 275]	Mo. 275
TPSHV2XY	Hashiya Mulla Mirzajan ala Sharh al-Isharat[Ahlwardt no.: 5054; Min. 32]	Min. 32
ZEE6XUA0	Tafrih al-idrak[Ahlwardt no.: 5704; Min. 190]	Min. 190
7KTQZUX7	el-Tafhim[Ahlwardt no.: 5665; Pet. 67]	Pet. 67
KM9XSNZ5	Sharh Hikmat al-ayn, Shamsaddin al-Bukhari[Ahlwardt no.: 5082; Pet. 367]	Pet. 367
N63P9SSH	unknown philosophical work, Shamsaddin al-Isfahani, ff. 25-76[Ahlwardt no.: 5131; Pet. 546]	Pet. 546
6T1SEV6U	Muhakima bayn sharhay al-Isharat[Ahlwardt no.: 5053; Pet. 549]	Pet. 549
7D6M7BC2	al-Maqalat al-hisab[Ahlwardt no.: 5974; Pet. 669]	Pet. 669
ZPGFRTP4	Tahrir al-manazir[Ahlwardt no.: 6016; Pet. 671]	Pet. 671
B9T4EXVU	Sharh mukhtasar [Ahlwardt no.: 5679; Pet. 672]; Risala fi al-usturlab [Ahlwardt no.: 5798; Pet. 672]; Risala fi al-amal al-usturlab [Ahlwardt no.: ; Pet. 672]	Pet. 672
AZ1NUP3X	Sharh Hidayat al-hikma, Mulla Sadra; [Ahlwardt no.: 5072; Pet. 695]	Pet. 695
F5NE1DNR	al-Mauna; [Ahlwardt no.: 5984; Pm. 124]	Pm. 124
RUTRQK29	Risala fi bahth al-harakat, Muslihaddin al-Lari, ff. 39b-41[Ahlwardt no.: 5108; Pm. 369]	Pm. 369
WENDV4KM	Tashrih al-aflak[Ahlwardt no.: 5703; Pm. 396]	Pm. 396
21M7PW61	Sabab zuhur al-kawakib [Ahlwardt no.: 5671; Pm. 466]; an unknown philosophical work [Ahlwardt no.: 5061; Pm. 466]	Pm. 466
S1H0T1PE	Risala fi Tahqiq Nafs al-amr, al-Sharif al-Jurjani, f. 63b; [Ahlwardt no.: 5185; Pm. 501]	Pm. 501
C7A4KKCD	Risala fi Ithbat al-mufaraqat, Abdullah al-Ma’sumi, ff. 124-128; [Ahlwardt no.: no. 5058 & others; Pm. 578]	Pm. 578
G83V2RS0	Risalat al-Ma’qulat al-ashr, ff. 94b-97[Ahlwardt no.: 5142; Pm. 671n]	Pm. 671n
GGYEHHNT	Sharh al-Isharat, Nasiraddin al-Tusi; [Ahlwardt no.: 5049; Spr. 1803]	Spr. 1803
RX9HUV1A	Hikmat al-ayn, [Ahlwardt no.: 5080; Spr. 1805  ]	Spr. 1805  
CPKMQCKV	A collection of essays by various authors on the attributes of God, on Existence, and on Quiddity; S. 23 ff. [Ahlwardt no.: 5106; Spr. 1820a]	Spr. 1820a
SZY9KYP9	[Ahlwardt no.: 2306; Spr. 1820b]	Spr. 1820b
HS53Z9PE	[Ahlwardt no.: 2325; Spr. 1820c]	Spr. 1820c
43G98CS2	[Ahlwardt no.: 2338; Spr. 1820d]	Spr. 1820d
Y2W4N14N	[Ahlwardt no.: 2336; Spr. 1820e]	Spr. 1820e
GHD1VTNQ	[Ahlwardt no.: 2362; Spr. 1820f]	Spr. 1820f
6RAYXHT4	Risalat al-Aql, Ibn Kamal, ff. 109-116a; [Ahlwardt no.: 5363; Spr. 1820g]	Spr. 1820g
FUTZF8X3	[Ahlwardt no.: 2372; Spr. 1820h]	Spr. 1820h
YNAWW70Q	[Ahlwardt no.: 5162; Spr. 1820i]	Spr. 1820i
8DK7PK0M	Miftah al-hussab[Ahlwardt no.: 5992; Spr. 1824a]	Spr. 1824a
BAMHWNY6	Jami al-hisab; [Ahlwardt no.: 5973; Spr. 1824b]	Spr. 1824b
1RFXEXQH	Sharh al-yasaminiyya; [Ahlwardt no.: 5966; Spr. 1832, Spr. 1833]	Spr. 1832, Spr. 1833
Q35QUV60	Sharh al-tazkira; [Ahlwardt no.: 5681; Spr. 1844]	Spr. 1844
KEPCYY4M	Sharh al-mulakhkhas[Ahlwardt no.: 5675; Spr. 1847a]	Spr. 1847a
FB3PGKBR	Sharh al-mulakhkhas[Ahlwardt no.: 5676;3; Spr. 1847b]	Spr. 1847b
RV53M2M3	Natijat al-afkar; [Ahlwardt no.: 5710; Spr. 1863]	Spr. 1863
9T9Y1SRN	Risala Abi Mansur fi al-usturlab; [Ahlwardt no.: 5797; Spr. 1876]	Spr. 1876
41TS5VQQ	Risala fi ilm al-falak; [Ahlwardt no.: 5717; WE. 179]	WE. 179
EEFE45Z7	Hidayat al-hikma, ff. 1-53 [Ahlwardt no.: 5065; WE. 191]; Hashiya li-l-Lari ala sharh [Ahlwardt no.: 5067; WE. 191]; Sharh Hidayat al-hikma, Mir Husayn al-Maybudi, ff. 55-187 [Ahlwardt no.: ; WE. 191]	WE. 191
ZB6NW0EH	Jaridat al-durar ; [Ahlwardt no.: 5699; WE. 193]	WE. 193
ZWRFP1T6	al-Qasida al-Ayniyya, ff. 57a-58a; [Ahlwardt no.: 5346; We. 131]	We. 131
S667A2CB	Kanun al-hisab; [Ahlwardt no.: 5995; We. 1128]	We. 1128
6U0KT4R6	al-Fawaid al-bahaiyya; [Ahlwardt no.: 5976; We. 1129]	We. 1129
EU538CWX	al-Mulakhkhas; [Ahlwardt no.: 5673; We. 1135]	We. 1135
0UEMMFKG	al-Zij al-Qazwini; [Ahlwardt no.: 5762; We. 1142]	We. 1142
AY5NA86U	Sharh Hidayat al-hikma, ff. 61b-90; [Ahlwardt no.: 5071; We. 1177]	We. 1177
FFYAS96M	Ilm al-misaha; [Ahlwardt no.: 5945, 5949; We. 1713]	We. 1713
UKXT7XDQ	Tahqiq al-Kulliyyat [Ahlwardt no.: 5134; We. 1720]; Hashiya ala Tahqiq al-Kulliyyat, al-Sharif al-Jurjani, ff. 140-145a [Ahlwardt no.: 5133; We. 1720]; Qutbaddin al-Razi, ff. 135-139 [Ahlwardt no.: 5133; We. 1720]	We. 1720
G81YWDV4	Hayat al-ma’ani li-idrak ‘ilm al-Insani, Anonymous, ff. 1-16; [Ahlwardt no.: 5115; We. 1725]	We. 1725
5XA8H9C7	Risala fi ‘ulum al-haqa’iq wa-hikmat al-daqa’iq, Anonymous, ff. 15b-17b; [Ahlwardt no.: 5140; We. 1772]	We. 1772
CQD5YBZP	al-Musri [Ahlwardt no.: 5991; We. 1791]	We. 1791
9PDK3S85	Sharh Ithbat al-jawhar al-mufaraq, Jalaladdin al-Dawani; ff. 85-88 [Ahlwardt no.: 5358; We. 1811]	We. 1811
B47T3HY2	al-Kāmil fil-Asṭurlāb; [Ahlwardt no. 5791; Landberg 58]	Landberg 58
ERZHST5Y	[Ahlwardt no. 5666; Landberg 63]	Landberg 63
Y9YFECTM	Collection on astronomy and astrology; [Ahlwardt no. 5686 et al; Landberg 68]	Landberg 68
6QFP3KDP	Work on astronomy; [Ahlwardt no. 5664; Landberg 108]	Landberg 108
GFGNP6U1	al-Itḥāf bi-maʿrifat al-inḥirāf; [Ahlwardt no. 5719 et al; Landberg 110]	Landberg 110
CBDDYK1K	Collection on astronomy and astrology, inter alia Sharḥ Mukhtaṣar fī maʿrifat al-taqāwīm lil-Ṭūsī; [Ahlwardt no. 5811 et al; Landberg 131]	Landberg 131
33MZX7EA	Collection on astronomy and astrology; [Ahlwardt no. 5711 et al; Landberg 221]	Landberg 221
WPWUZ7PD	Collection on astronomy; [Ahlwardt no. 5861 et al; Landberg 390]	Landberg 390
88Z24N37	Risāla fī 'l-ʿamal bi-'l-asṭurlāb; [Ahlwardt no. 5809; Landberg 517]	Landberg 517
ZWSE749V	Dustūr uṣūl al-mīqāt wa-natījat al-naẓr fī taḥrīr al-awqāt; [Ahlwardt no. 5718 et al; Landberg 528]	Landberg 528
YGTTKT32	Sharḥ mukhtaṣar li-Zayn al-ʿĀbidīn ʿalá al-muqaddimah al-musammāh bi-'l-lamʿ fī ʿilm al-ḥisāb; [Ahlwardt no. 5990; Landberg 548]	Landberg 548
NXNKNXQK	al-Futūḥāt al-wahbiyah sharḥ al-risālah al-fatḥiyah; [Ahlwardt no. 5822 et al; Landberg 558]	Landberg 558
4W2VMKEA	al-Samt; [Ahlwardt no. 5753; Landberg 574]	Landberg 574
5SCQ6GGC	Risala fī maʿrifah inna al-Nīl yazīd aw yanqaṣ min al-muʿtād; [Ahlwardt no. 6116; Landberg 597]	Landberg 597
PWHE1V9B	Matn al-wasīlah fī ʿilm al-ḥisāb; [Ahlwardt no. 5985; Landberg 599]	Landberg 599
33H6FH5H	Mukhtaṣar al-bāriʿ fī 'l-falak wa-'l-ṭawābiʿ; [Ahlwardt no. 5662; Landberg 608]	Landberg 608
2WNQSTKD	Sharḥ Ishkāl al-taʾsīs, f. 1-31; [Ahlwardt no. 5944 et al; Landberg 700]	Landberg 700
WADETW4Y	Sharḥ K. al-Lamʿah fī ḥall al-kawākib al-siyārah al-sabʿah; [Ahlwardt no. 5687; Landberg 721]	Landberg 721
8XWYTZ26	Mukhtaṣar fī ʿilm al-ḥisāb; [Ahlwardt no. 5983; Landberg 724]	Landberg 724
1T0Z5TU5	Masʾalah min ʿilm al-ḥisāb; [Ahlwardt no. 5999; Landberg 725]	Landberg 725
WU8MY3Z7	al-Sirāj al-anwār fī Kayfiyah al-ʿaml bi-'l-rubʿ al-muqanṭar; [Ahlwardt no. 5865 et al; Landberg 734]	Landberg 734
9WQEEK5W	Kitab Iqlīdis; [Ahlwardt no. 5920; Landberg 789]	Landberg 789
Z8NV0CTW	Lamʿah fī ḥall al-kawākib al-sabʿah; [Ahlwardt no. 5686; Landberg 801]	Landberg 801
G3QWK4AC	Astronomic charts; [Ahlwardt no. 5770; Landberg 901]	Landberg 901
2AG56K0B	Wasīlah al-ṭulāb li-maʿrifah aʿmāl al-layl wa-'l-nahār bi-ṭarīq al-ḥisāb; [Ahlwardt no. 5700; Landberg 953]	Landberg 953
94361DFP	Astronomic charts; [Ahlwardt no. 5753; Landberg 1038]	Landberg 1038
KPHXWD6Q	Collection of astronomic works and charts from Yemen; [Ahlwardt no. 5746 et al; Glaser 21]	Glaser 21
74QU8KS5	K. al-Hindī, ff. 89-123; [Ahlwardt no. ; Glaser 103]	Glaser 103
EVC8N87R	Astronomic work (copy Yemen 8th/14th ct.); [Ahlwardt no. 5731; Glaser 163]	Glaser 163
0DN9PRCF	r. fī maʿrifah istikhrāj aʿmāl al-layl wa-'l-nahār bi-rubʿ al-jīb; [Ahlwardt no. 5826 et al; Glaser 227]	Glaser 227
W0XP5E4U	K. Maʿūnat aṭ-Ṭullāb fī maʿrifat al-ḥisāb; [Ahlwardt no. 5977 et al; Glaser 239]	Glaser 239
TU5XE7C1	r. fī 'l-muqanṭarāt wa-'l-jīb; [Ahlwardt no. 5860; Sprenger 1835]	Sprenger 1835
CCP11NGY	al-Hayʾah al-saniyah fī 'l-hayʾah al-sunnīyah; [Ahlwardt no. 5697; Sprenger 1837]	Sprenger 1837
ZUWAT0ZQ	[Ahlwardt no. 5661; Sprenger 1841]	Sprenger 1841
9BRCYKAB	[Ahlwardt no. 5827; Sprenger 1848]	Sprenger 1848
BV8GC334	[Ahlwardt no. 5733; Sprenger 1849]	Sprenger 1849
SF8579Q0	[Ahlwardt no. 5660; Sprenger 1855]	Sprenger 1855
3RGA5A05	al-Fasul, f. 1-15; [Ahlwardt no. 5712; Sprenger 1857]	Sprenger 1857
82R7ZZSX	Gadawil; [Ahlwardt no. 5758; Sprenger 1858]	Sprenger 1858
6UZB2ZF0	[Ahlwardt no. 5845; Sprenger 1866]	Sprenger 1866
NDG2XP4X	[Ahlwardt no. 5769; Sprenger 1869]	Sprenger 1869
ZE7H56YG	[Ahlwardt no. 5812; Sprenger 1872]	Sprenger 1872
NRH0KE0C	[Ahlwardt no. 5857; Sprenger 1877]	Sprenger 1877
WHHX8GQR	[Ahlwardt no. 5761; Sprenger 1979]	Sprenger 1979
9RA7Q4E4	[Ahlwardt no. 5767; Dq49]	Dq 49
KNA1AZYB	[Ahlwardt no. 5674, 5830; Pet673]	Pet673
5XK3NNZ8	[Ahlwardt no. 5837; Pm228]	Pm228
52M37YG2	[Ahlwardt no. 5786; Mo200]	Mo200
X1MZZZUQ	[Ahlwardt no. 5773; Mq98]	Mq98
WNP9PH6D	[Ahlwardt no. 5792; Mq99]	Mq99
768MAEZ5	[Ahlwardt no. 5818; Mq100]	Mq100
TG5CBFFX	Šarḥ Ibn-Hāyim, f. 71-98; [Ahlwardt no. 5963 ; Mq 103]	Mq 103
Z0D5TC82	[Ahlwardt no. 5863; Mq690]	Mq690
VCBUFM96	K. Ṣuwar al-kawākib; [Ahlwardt no. 5659; Mq704]	Mq704
YU42N9Z8	al-Qānūn al-Masʿūdī; [Ahlwardt no. ; Mq1613]	Mq 1613
14MQCGHU	Collection [Ahlwardt no. ; Mq1867]	Mq 1867
9EGT2BRM	[Ahlwardt no. 5846; WE175]	WE175
Y8TVP51Y	[Ahlwardt no. 5692; We1130]	We 1130
9C08PCUP	[Ahlwardt no. 5757; We1134]	We 1134
SYA8GMGK	[Ahlwardt no. 5678; We1136]	We1136
703D1GT3	[Ahlwardt no. 5754, 5755, 5756; We1138]	We1138
WB8YDER8	[Ahlwardt no. 5684; We1138a]	We1138a
D0D28400	[Ahlwardt no. 5716; We1143]	We1143
F40PGG95	[Ahlwardt no. 5759; We1146]	We 1146
14BN550Q	[Ahlwardt no. 5760,5772; We1148]	We1148
RA5U8CXC	[Ahlwardt no. 5707; We1149]	We1149
GH7ZS1D9	[Ahlwardt no. 5724; We1150]	We1150
DM96NQ9T	[Ahlwardt no. 5840; We1151]	We1151
C6PPH93P	[Ahlwardt no. 5721; We1152]	We1152
1GCQ2A0A	[Ahlwardt no. 5726; We1736a]	We1736a
ZB25P1RA	[Ahlwardt no. 5734; We1813]	We1813
V775Y3WC	[Ahlwardt no. 5817; We 1817]	We 1817
WVSC7VM5	[Ahlwardt no. 5735; We1834]	We1834
K52ER1YK	[Ahlwardt no. 5685; We1869]	We1869
3V432ZHS	[Mf34]	Mf34
QSV2AF5S	[Mf56]	Mf 56
SM52UMAV	[Mf1296]	Mf 1296
5XT0G6XR	[Mq17]	Mq 17
9T0C7D2H	[Mq55]	Mq 55
YE2KMPMT	[Mq60]	Mq 60
QRHAD3QS	[Mq62]	Mq 62
CGBGUH18	[Mq63]	Mq 63
M55N9CS6	[Mq67]	Mq67
9ZY4PYGG	[Mq69]	Mq 69
6XRNKUKV	[Mq90]	Mq 90
PP12ZB73	[Mq113]	Mq113
RTRTX10P	[Mq115]	Mq115
TTXMKGEU	[Mq120]	Mq120
X3H0NXES	[Mo146]	Mo146
R47Z9P5A	[Mq180b]	Mq180b
G43PXGT6	[Mq293]	Mq293
7DXAVFU9	[Mq294]	Mq294
GX3URBYN	[Mq299]	Mq299
EWPZ4CRE	[Mq303]	Mq303
W7BZRS9T	[Mq510]	Mq510
CDCKRHVT	[Mq618]	Mq618
Y4DM5MU9	[Mq728]	Mq728
DYY2GQ1K	[Mo28]	Mo28
9U845SM0	[Mo35]	Mo35
1WDTQT79	[Mo123]	Mo123
6XDTVQD3	[Mo205]	Mo205
XAAKBPZQ	[Mo252]	Mo252
T7RDXZZU	[Mo298]	Mo298
N6NEE1MG	[Sachau63]	Sachau63
T9319687	[Sachau77]	Sachau77
WRQEXG1A	[Sachau103]	Sachau103
SVXZ2SXU	[Glaser3]	Glaser3
NC8BP8KM	[Glaser6]	Glaser6
UGTHY0RG	[Glaser12]	Glaser 12
PGBX9F2A	[Glaser13]	Glaser13
RUK8AFQP	[Glaser26]	Glaser26
RNEZE8Z6	[Glaser29]	Glaser29
YB4U050C	[Glaser52]	Glaser52
TRQNNGSR	[Glaser82]	Glaser82
E098F3GY	[Glaser83]	Glaser83
M0XAYXH0	[Glaser168]	Glaser168
XQH10RER	[Glaser171]	Glaser171
MWG2QDZ9	[Glaser181]	Glaser181
CRZS9DGH	[Glaser191]	Glaser191
C7RU4VY2	[Landberg29]	Landberg29
26A3FGU6	Landberg_72	Landberg72
5AN0VGK8	[Landberg95]	Landberg95
6188FM1C	[Landberg348]	Landberg348
1M75N53E	[Landberg394]	Landberg394
2EBGM67W	[Landberg402]	Landberg402
409E3DCG	[Landberg414]	Landberg414
GEWZ52P2	[Landberg471]	Landberg471
ZC348HEA	[Landberg473]	Landberg473
YA2DSYNP	[Landberg526a]	Landberg526a
5QUBPG2E	[Landberg533]	Landberg533
CC2KDXXX	[Landberg540]	Landberg540
MMDN8FQU	[Landberg563]	Landberg563
HE9AH1QG	[Landberg688]	Landberg688
EZ3FM5PE	[Landberg691]	Landberg691
HERAZFNC	[Landberg704]	Landberg704
AU591E8A	[Landberg706]	Landberg 706
WS8EXX1H	[Landberg726]	Landberg 726
Z1AS4XMP	[Landberg730]	Landberg730
H0KER885	[Landberg785]	Landberg785
N699EE92	[Landberg792]	Landberg792
FM05UE82	[Landberg804]	Landberg804
EDKYSUR0	[Landberg808]	Landberg808
05AD9Q0P	[Landberg809]	Landberg809
M9XBU92T	[Landberg810]	Landberg810
527HR282	[Landberg851]	Landberg851
2BPAV5AP	[Landberg874]	Landberg874
DX904FN7	[Landberg904]	Landberg904
5MB6HBYV	[Landberg954]	Landberg954
EY8APK0A	[Landberg962]	Landberg962
8BMBW4G4	[Landberg990]	Landberg990
7T85HQNS	[Landberg1020]	Landberg1020
BVED1RUM	[Landberg1024]	Landberg1024
RX32XGR4	[Landberg1045]	Landberg1045
ZTG8VDBH	[Landberg1047]	Landberg1047
S1C20QWU	[Sprenger579]	Sprenger579
QQVPRVXX	[Sprenger741]	Sprenger741
0P6ZPAFN	[Sprenger806]	Sprenger806
RNQB6XU1	[Sprenger853]	Sprenger853
MHXNZTW8	[Sprenger1765]	Sprenger1765
66WEWE7W	[Sprenger1768]	Sprenger1768
0SWBP6BQ	[Sprenger1769]	Sprenger1769
E68HPXVW	[Sprenger1773]	Sprenger1773
709T760M	[Sprenger1775]	Sprenger1775
G38FHNCR	[Sprenger1785]	Sprenger1785
YDDYCNW2	[Sprenger1786]	Sprenger1786
WC4MAWP9	[Sprenger1794]	Sprenger1794
E4K1BZGY	[Sprenger1795]	Sprenger1795
HQESA6Z6	[Sprenger1796]	Sprenger1796
5A6C91YB	[Sprenger1797]	Sprenger1797
AAKKB2NQ	[Sprenger1798]	Sprenger1798
3FDDK5VY	[Sprenger1809]	Sprenger1809
GUCEC4F8	[Sprenger1818]	Sprenger1818
UUNYNDD0	[Sprenger1825]	Sprenger1825
F2T6N181	[Sprenger1983]	Sprenger1983
RGVU2Q6P	[Sprenger2051]	Sprenger2051
W2RU181H	[Pet62]	Pet62
6V4DMEHM	[Pet315]	Pet315
UV4YZDKD	[Pet364]	Pet364
NT5EXG5E	[Pet366]	Pet366
5EZS7QN2	[Pet538]	Pet538
Q48258BU	[Pet540]	Pet540
GKCQPW4C	[Pet541]	Pet541
QNMU1Y7R	[Pet542]	Pet542
ZZPSPUX3	[Pet566]	Pet566
KYPD5EQQ	[Pet567]	Pet567
9YB667BV	[Pet670]	Pet670
NXDAZZYU	[Pet678]	Pet678
HK1KXEAS	[Pet679]	Pet679
PHV1DN89	[Pet680]	Pet680
GFF9GXY2	[Pet686]	Pet686
1NY8YTTK	[Pet687]	Pet687
KZHA448R	[Pet701]	Pet701
ZES7ZSRY	[Pm15]	Pm15
8V9WBD9T	[Pm51]	Pm51
PRBD34TT	[Pm74]	Pm74
93ZNG8YY	[Pm79]	Pm79
SY6EG167	[Pm101]	Pm101
PBQS3G43	[Pm102]	Pm102
SP3BEXHH	[Pm150]	Pm150
6573GCC6	[Pm226]	Pm226
KG1H663Q	[Pm253]	Pm253
B5WCTPK3	[Pm255]	Pm255
1UNXF1GM	[Pm402]	Pm402
Y5NPFTMF	[Pm428]	Pm428
S3610Y72	[Pm481]	Pm481
YXDXS5HG	[Pm653]	Pm653
4ZP01NGT	[Pm681]	Pm681
EE89RVH2	[Minutoli182]	Minutoli182
GHBFW2C7	[Minutoli235]	Minutoli235
N5RTG0FC	[WE83]	WE83
MK7D4B4T	[WE84]	WE84
M2TCAPP4	[WE85]	WE85
8S29CKQH	[WE91]	WE91
PPDVYMP1	[We1087]	We1087
8GDUVC9M	[We1127]	We1127
7TGX44B1	[We1131]	We1131
U1ZXKQ5X	[We1132]	We1132
XNUH8P1G	[We1133]	We1133
4TS9E6YD	[We1139]	We1139
EX552DH4	[We1244]	We1244
88Z15RK7	[We1245]	We1245
W028ATN3	[We1247]	We1247
T85QNYCC	[We1249]	We1249
WEEXTSX4	[We1250]	We1250
A3D4BSUK	[We1251]	We1251
4XX6AG9A	[We1255]	We1255
GYFKXZSA	[We1716]	We1716
SPGSW20P	[We1734]	We1734
613N5XKM	[We1746]	We1746
9D5CH18W	[We1762]	We1762
5P84C1ZX	[We1763]	We1763
TFPMCM67	[We1766]	We1766
HZA9U6GN	[We1771]	We1771
WRPNC26P	[We1781]	We1781
7UW56KCD	[We1782]	We1782
3K9KP5B9	[We1809]	We1809
MMUR1Q63	[We1810]	We1810
5D32F44N	[We1825]	We1825
5NQPVZ3A	[We1838]	We1838
W8PSFVCW	[Landberg526c]	Landberg526c
47W6DFK4	[Landberg526b]	Landberg526a
NM5YDK28	… commenary by Birjandi	Ms. or. fol. 1405
8B99ETK5	ibri, cmt on minhaj al-wusul	Ms. or. fol. 3006
NNGTPNYR	al-Shirazi, al-Tuhfat al-sadiyya	Ms. or. fol. 3017
VEUT3QQ7	Qutb al-din on Isharat…	Ms. or. fol. 3021
MKB4V9VH	Gloss of Agha Husayn on Tajrid al-Kalam (Tusi)	Ms. or. fol. 3035
GUC9KBG5	Lawami' al-asrar (Qutb al-Din on Urmawi Matali' al-anwar)	Ms. or. fol. 3051
5TZ5Z0KF	al-Zij al-ridwani	Ms. or. fol. 3102
FRKWG36U	Kitab al-burhan (Ibn Rushd)	Ms. or. fol. 3176
WGCYQ6TA	al-Jami	Ms. or. fol. 3306
UN6TGTH6		Ms. or. fol. 3326
XG46R3SU	astr.	Ms. or. fol. 3405
H3USZD2A	Rasa'il Kamal pasha zadhe	Ms. or. fol. 4106
HBZKBXPQ	ghazzali ihya ect. (Sammelhandschrift)	Ms. or. fol. 4249
HSNSDU2Q	Extract from Qifti's Ta'rikh al-hukama	Ms. or. quart. 786
SW2DK2N8	commentary on al-Mawaqif fi ´ilm al-kalam	Ms. or. quart. 790
8N2QMFDF		Ms. or. quart. 840
U9RTQB20	Matali' al-anzar (Isfahani on Baydawi)	Ms. or. quart. 884
483RUKYB	commentary on hidayat la-hikmah	Ms. or. quart. 971
KD4RAD4T	al faraq bayana al-nafs wa-al-ruh	Ms. or. quart. 1075
VKRZBZDY	commentary on Muntakhab fi usul al-din	Ms. or. quart. 1192
VARAY833	mawaqif, commentary by jurjani	Ms. or. quart. 1193
N1CTY2H5	Kifayat al-'awamm Minutoli 'ilm al-kalam	Ms. or. quart. 1342
QMRAPWFN	Medrese, 194	Ms. or. quart. 1384
1PV9QRD3	mathematics	Ms. or. quart. 1418
Z3FPZMBG	practical philosophy	Ms. or. quart. 1432
7FDUPCKK	Mathematics	Ms. or. quart. 1436
0TY9RHW0	Hasan al-Yusi Hawashi ala al-~aqidah of al-Sanusi	Ms. or. quart. 1440
6RGM9U05	Mathematics	Ms. or. quart. 1441
057B6TGU	Glosess on Hidayat al-hikmah by Lari and supergloss by Kafarawi	Ms. or. quart. 1474
R4CXDYDR	Ahmad al-Damanhuri, al-Anwar al-satiah (logic)	Ms. or. quart. 1475
AAHFK2TF	Nasafi- Bahr al-kalam. Ithaf al-mushtaq. Commentary on the Wad'iyah of al-lji	Ms. or. quart. 1526
VK6K040Q	Samarqandiyah, Wad'iyah, Isti'arat	Ms. or. quart. 1542
FSXPVBXK	kashf al-zunun, dated 1130	Ms. or. quart. 1606
24C05Y7P	astrology and astr.: , majmu'. Al ikhtiyarat al-ala'iyah, manazil al-qamar, etc	Ms. or. quart. 1617
PGHY8QUN	sharh al mulakhkhas	Ms. or. quart. 1636
3FDEBVBM	sharh minhaj al baydawi	Ms. or. quart. 1641
4370E5WH	majmuh'; astronomy etc. dated 865	Ms. or. quart. 1694
WMY6ARYN	taqwim calligraphed	Ms. or. quart. 1697
U48H1KTB	Mafatih al-ni'ma fi al-batin	Ms. or. quart. 1702
RF3TDP6R	Glosses on the commentary by tahtani on Baydawi's Matali' al-anwar, dated 868	Ms. or. quart. 1709
GZGQU5Q1	Glosses on hidayat al-hikmah	Ms. or. quart. 1736
ER5QA9N4	Calligraphy [52a-53b] (for Adam)	Ms. or. quart. 1741
ZD597BZR	sharh al aqa'id al nasafiyah	Ms. or. quart. 1924
0XUP7G9B	ithbat al wajib/dastaki	Ms. or. quart. 1926
NS549KU0	hall isharat, dated 739	Ms. or. quart. 2044
MDYYQG9W	qadi zade on mulakhkhas	Ms. or. oct. 431
QSQ8G9X9	Qadi zade on mulakhkhas	Ms. or. oct. 432
1XGRU6UN	ilm al-ab'ad wa-al-ajram…	Ms. or. oct. 433
FG3G4NEH	Majmu' on astronomy	Ms. or. oct. 434
VQQ67EA9	Hidayat al-Hikmah	Ms. or. oct. 552
B8HSD23S	mulakhkhas by Fakhr al-Din al-Razi (Philosophy) / al-Razi, al-Mulahkhas	Ms. or. oct. 623
PMYKU5BS	mulakhkhas by jaghmini	Ms. or. oct. 944
G3VB6RSK	sharh al tajrid by tusi, dated 879	Ms. or. oct. 970
C2V2YHC7	hidayat al hikmah, cmt by al maybudi; gloss fakhr al din muh ibn hussayn	Ms. or. oct. 971
68HZ9N61	tarifat by jurjani	Ms. or. oct. 973
508521YV	8 tracts on, some on astronomy	Ms. or. oct. 974
7RHP5Z4S	Ishq, 49b	Ms. or. oct. 985
8HHWUFZQ	nat phil. Astronomy, etc.	Ms. or. oct. 1024
4TDXAP33	definition (husud al-ashya')	Ms. or. oct. 1025
GBNGN6S1	khawass al ahjar	Ms. or. oct. 1026
P0CH33FF	(K) music	Ms. or. oct. 1027
4B2XS7BF	dogmatics, 3 works' nasafi - bahr al kalam (Sammelhandschrift)	Ms. or. oct. 1316
TMYZWAKE	isaghuji	Ms. or. oct. 1317
Z651PYAE	sanusi, cmt, on al-manzumah al-jaza'iriyah fo al-tawhid	Ms. or. oct. 1335
N58TEDEW	al-anwar al-qudsiyah fi al-asrar al-ruhiyah	Ms. or. oct. 1340
MUNVM57A	cmt on shamsiyah of katibi; gloss by al salikuti	Ms. or. oct. 1367
RHCKE2UU	disputation, dogmatics (Sammelhandschrift)	Ms. or. oct. 1418
K81B9Y7E	two disputations…?	Ms. or. oct. 1432
PRQR4ERT	gloss by lari on qurrah al fakhirah by jami…	Ms. or. oct. 1443
QSXECKP1	5 works on theology…	Ms. or. oct. 1445
8R02VU1M	al-hadi fi 'ilm al kalam by jalal al-adin 'umar ibn muh al-hanafi, dated 523	Ms. or. oct. 1458
Q2NW6N6K	many tracts by suyuti and others…	Ms. or. oct. 1472
4UZFR41E	Sharh matali' al-anwar / al-Astarabadi, Sharh matali al-anwar	Ms. or. oct. 1487
DT6EY97K	imad al-din ahmad al-Wasiti - collection of religious works	Ms. or. oct. 1490
89TEYFVW	kitab al-mukhtar Minutoli kalam abi umar al-jahiz - philosophical works	Ms. or. oct. 1499
7W1RG9ZD	Sururi on Isagoge	Ms. or. oct. 1992
W5P9NXY1	Gelenbewi, wahdat al-wujud	Ms. or. oct. 2119
BVY61FW5	tamhid fi qawa'id al-tawhid	Ms. or. oct. 2157
KDM92WGS	sharh al risalah al husayniyah fi al munazarah	Ms. or. oct. 2191
HM7RR4E2	Shams al-Din al-Kirmani, al-Ghiyasiyye	Ms. or. oct. 2223
CNMNRUE0	Qaysarni fi al-ahkkam (astronomy?)	Ms. or. oct. 2224
UE8R0N1K	(13a-18b): Trabzon…	Ms. or. oct. 2245
Y2DKMMP5	Practical philosophy	Ms. or. oct. 2260
MZ3HVMAC	majmu' : hidayat al-hikmah	Ms. or. oct. 2285
9PUU7M6P	Sajaqli-zade al-risalah al-wlaadiyah	Ms. or. oct. 2286
MS79AESR	[We1717]	We1717
89ETZN83	[Hs. or. 4854]	Hs. or. 4854
WC82E5UT	[Hs. or. 4869]	Hs. or. 4869
6Y2RS9M6	[Hs. or. 4891]	Hs. or. 4891
F63S1FGX	[Hs. or. 4897]	Hs. or. 4897
BG9DGSV8	[Hs. or. 4908]	Hs. or. 4908
24FMX0F9	[Hs. or. 4915]	Hs. or. 4915
3KUKK13V	[Hs. or. 4943]	Hs. or. 4943
3WGTRKQU	[Hs. or. 4957]	Hs. or. 4957
6CMX1UTC	[Hs. or. 5021]	Hs. or. 5021
G6RUKCZQ	[Hs. or. 5022]	Hs. or. 5022
CVAB53QV	[Hs. or. 5069]	Hs. or. 5069
X4XE0T0N	[Hs. or. 5076]	Hs. or. 5076
X3U8NQFH	[Hs. or. 5113]	Hs. or. 5113
711P9E6M	[Hs. or. 5116]	Hs. or. 5116
00WP433A	[Hs. or. 5134]	Hs. or. 5134
QNG06125	[Hs. or. 5135]	Hs. or. 5135
ZN892H12	[Hs. or. 5137]	Hs. or. 5137
NS3AD2P0	[Hs. or. 5164]	Hs. or. 5164
BT0QMB91	[Hs. or. 5167]	Hs. or. 5167
44KFAB0T	[Hs. or. 5168]	Hs. or. 5168
NU1FDTVC	[Hs. or. 5171]	Hs. or. 5171
DTXDFR49	[Hs. or. 5176]	Hs. or. 5176
VYNNQGCP	[Hs. or. 5185]	Hs. or. 5185
AECQKR75	[Hs. or. 5198]	Hs. or. 5198
G0H7VRF8	[Hs. or. 5206]	Hs. or. 5206
ZPX1GZ13	[Hs. or. 5211]	Hs. or. 5211
R8V0KNVR	[Hs. or. 5212]	Hs. or. 5212
TC542ZKY	[Hs. or. 5215]	Hs. or. 5215
70TZN80D	[Hs. or. 5223]	Hs. or. 5223
MEWA10G9	[Hs. or. 5224]	Hs. or. 5224
XFYW15EQ	[Hs. or. 5240]	Hs. or. 5240
4Z1F4AF4	[Hs. or. 5243]	Hs. or. 5243
RZH06WDQ	[Hs. or. 5252]	Hs. or. 5252
Z54V42GU	[Hs. or. 5259]	Hs. or. 5259
0AHSSM0X	[Hs. or. 5276]	Hs. or. 5276
SXNHKPA0	[Hs. or. 5293]	Hs. or. 5293
FA22SU2X	[Hs. or. 5306]	Hs. or. 5306
UY4U6TAK	[Hs. or. 5329]	Hs. or. 5329
60KA0P3Y	[Hs. or. 5338]	Hs. or. 5338
EVS0VWQ8	[Hs. or. 5342]	Hs. or. 5342
F9GDKYCQ	[Hs. or. 5367]	Hs. or. 5367
4T3U78XM	[Hs. or. 5390]	Hs. or. 5390
X722WDUR	[Hs. or. 5403]	Hs. or. 5403
V5KGGVPH	[Hs. or. 5455]	Hs. or. 5455
17S9SWGV	[Hs. or. 5476]	Hs. or. 5476
WRKV2BYU	[Hs. or. 5478]	Hs. or. 5478
ZR15B0HU	[Hs. or. 5485]	Hs. or. 5485
TX6Y5WU7	[Hs. or. 5486]	Hs. or. 5486
3Y6Y6TD7	[Hs. or. 5498]	Hs. or. 5498
2Z6KZ84D	[Hs. or. 5505]	Hs. or. 5505
19FNERD9	[Hs. or. 953]	Hs. or. 953
2HRZ1DMB	[Ms. or. fol. 1404]	Ms. or. fol. 1404
MDZ8W2ST	[Ms. or. oct. 1511]	Ms. or. oct. 1511
WXQXG11N	[Ms. or. oct. 1541]	Ms. or. oct. 1541
FW7T3FVP	[Ms. or. oct. 1648]	Ms. or. oct. 1648
8PU25QX0	[Ms. or. oct. 1786]	Ms. or. oct. 1786
2SPSG2AY	[Ms. or. oct. 1802]	Ms. or. oct. 1802
7F3S4UGV	[Ms. or. oct. 1817]	Ms. or. oct. 1817
30ZP9Q0G	[Ms. or. oct. 1858]	Ms. or. oct. 1858
F8GEUHKW	[Ms. or. oct. 1865]	Ms. or. oct. 1865
WZS86HC7	[Ms. or. oct. 1940]	Ms. or. oct. 1940
SR21Z984	[Ms. or. oct. 1953]	Ms. or. oct. 1953
BP93FWDR	[Ms. or. oct. 1980]	Ms. or. oct. 1980
P0Z5EN9F	[Ms. or. oct. 1988]	Ms. or. oct. 1988
C0GM3EQH	[Ms. or. oct. 1990]	Ms. or. oct. 1990
0FZ7AWKY	[Ms. or. oct. 1995]	Ms. or. oct. 1995
ACERXMGC	[Ms. or. oct. 2053]	Ms. or. oct. 2053
40T22646	[Ms. or. oct. 2398]	Ms. or. oct. 2398
CX539SFM	[Ms. or. oct. 2417]	Ms. or. oct. 2417
CX70YX7Y	[Ms. or. oct. 2453]	Ms. or. oct. 2453
5B4FZ0CW	[Ms. or. oct. 2527]	Ms. or. oct. 2527
4NYC9CUG	[Ms. or. oct. 2528]	Ms. or. oct. 2528
SAG4CF30	[Ms. or. oct. 2535]	Ms. or. oct. 2535
8WTE9PF6	[Ms. or. oct. 2542]	Ms. or. oct. 2542
230K6CDT	[Ms. or. oct. 2581]	Ms. or. oct. 2581
7RRA832H	[Ms. or. oct. 2583]	Ms. or. oct. 2583
KBX1ZU3X	[Ms. or. oct. 2592]	Ms. or. oct. 2592
A82SB62G	[Ms. or. oct. 2671]	Ms. or. oct. 2671
RE76K7SS	[Ms. or. oct. 2678]	Ms. or. oct. 2678
EXEHGAH7	[Ms. or. oct. 2749]	Ms. or. oct. 2749
YP6DZZ21	[Ms. or. oct. 2760]	Ms. or. oct. 2760
WX02C1CV	[Ms. or. oct. 2857]	Ms. or. oct. 2857
CPEDVAHW	[Ms. or. oct. 2890]	Ms. or. oct. 2890
A46VFXEU	[Ms. or. oct. 2970]	Ms. or. oct. 2970
7FNP6EX2	[Ms. or. oct. 2971]	Ms. or. oct. 2971
7GZ7EN6N	[Ms. or. oct. 2974]	Ms. or. oct. 2974
DBNVFAM6	[Ms. or. oct. 2976]	Ms. or. oct. 2976
ZGS85Y6B	[Ms. or. oct. 2996]	Ms. or. oct. 2996
ZMTSXNMK	[Ms. or. oct. 3014]	Ms. or. oct. 3014
B7NXAYA5	[Ms. or. oct. 3031]	Ms. or. oct. 3031
QYV3B3TN	[Ms. or. oct. 3094]	Ms. or. oct. 3094
H9W46NSM	[Ms. or. oct. 3149]	Ms. or. oct. 3149
2WR033FH	[Ms. or. oct. 3151]	Ms. or. oct. 3151
V7SU9XWC	[Ms. or. oct. 3160]	Ms. or. oct. 3160
5U5B3WYD	[Ms. or. oct. 3189]	Ms. or. oct. 3189
VMZPCE2W	[Ms. or. oct. 3190]	Ms. or. oct. 3190
WSQTA5ZC	[Ms. or. oct. 3203]	Ms. or. oct. 3203
21ADU8G4	[Ms. or. oct. 3255]	Ms. or. oct. 3255
CMKWSN0Q	[Ms. or. oct. 3363]	Ms. or. oct. 3363
FC4H39AA	[Ms. or. oct. 3380]	Ms. or. oct. 3380
4G4Z1QGK	[Ms. or. oct. 3396]	Ms. or. oct. 3396
6HQE53DH	[Ms. or. oct. 3397]	Ms. or. oct. 3397
MF4FTXMU	[Ms. or. oct. 3425]	Ms. or. oct. 3425
1105S0RT	[Ms. or. oct. 3432]	Ms. or. oct. 3432
HFBG6254	[Ms. or. oct. 3466]	Ms. or. oct. 3466
01ZWF70E	[Ms. or. oct. 3469]	Ms. or. oct. 3469
2EU3QPVK	[Ms. or. oct. 3566]	Ms. or. oct. 3566
DHUT7GY8	[Ms. or. oct. 3568]	Ms. or. oct. 3568
905WQ5R3	[Ms. or. oct. 3594]	Ms. or. oct. 3594
87FG577Y	[Ms. or. oct. 3603]	Ms. or. oct. 3603
85N00WNE	[Ms. or. oct. 3628]	Ms. or. oct. 3628
HY2FHSSD	[Ms. or. oct. 3662]	Ms. or. oct. 3662
ZGP7KE75	[Ms. or. oct. 3675]	Ms. or. oct. 3675
662MMG1M	[Ms. or. oct. 3677]	Ms. or. oct. 3677
BTQ442RU	[Ms. or. oct. 3707]	Ms. or. oct. 3707
WGMTK68V	[Ms. or. oct. 3715]	Ms. or. oct. 3715
D4W3V9E1	[Ms. or. oct. 3726]	Ms. or. oct. 3726
1SAUWCF4	[Ms. or. oct. 3803]	Ms. or. oct. 3803
AKVFER4N	[Ms. or. oct. 3806]	Ms. or. oct. 3806
Y0SXUA42	[Ms. or. oct. 3809]	Ms. or. oct. 3809
3PH3W2QB	[Ms. or. oct. 3890]	Ms. or. oct. 3890
YGSMK1A4	[Ms. or. oct. 3890]	Ms. or. oct. 3890
D8MR564M	[Ms. or. oct. 3890]	Ms. or. oct. 3890
7HQBFXHR	[Ms. or. oct. 3911]	Ms. or. oct. 3911
40AR1C37	[Ms. or. oct. 3931]	Ms. or. oct. 3931
TG0KYP2G	[Ms. or. oct. 3962]	Ms. or. oct. 3962
5ANR6B9U	[Ms. or. oct. 3969]	Ms. or. oct. 3969
UV7GYU6H	[Ms. or. oct. 3970]	Ms. or. oct. 3970
HQUZR3RY	[Ms. or. oct. 3971]	Ms. or. oct. 3971
DKFYQT1G	[Ms. or. oct. 4096]	Ms. or. oct. 4096
FBND42M4	[Hs. or. 5289]	Hs. or. 5289
HT1285F5	[Diez_A_quart_81]	Diez_A_quart_81
Z3RD45B6	[Glaser_96]	Glaser_96
W851C5W8	[Glaser_176]	Glaser_176
RGUDY2YY	[Landberg_8]	Landberg_8
D8F2MPCF	[Landberg_60]	Landberg_60
9NP7FRKE	[Landberg_67]	Landberg_67
YGP85AZT	[Landberg_69]	Landberg_69
S1ZH6XB3	[Landberg_70]	Landberg_70
TU16F1M8	[Landberg_136]	Landberg_136
CBQ0YZ6D	[Landberg_222]	Landberg_222
SDG7BAM2	[Landberg_271]	Landberg_271
TW5M0C50	[Landberg_273]	Landberg_273
WQYBRXA7	[Landberg_279]	Landberg_279
592WK7M3	[Landberg_335]	Landberg_335
N20RQ812	[Landberg_346]	Landberg_346
H5UAVS78	[Landberg_428]	Landberg_428
PCYEBTQR	[Landberg_488]	Landberg_488
ZWDVEC8X	[Landberg_554]	Landberg_554
UKFP4YQK	[Landberg_602]	Landberg_602
SPDTMPZR	[Landberg_639]	Landberg_639
GCTYRX51	[Landberg_652]	Landberg_652
YVE3W41Y	[Landberg_679]	Landberg_679
4BPDKR14	[Landberg_713]	Landberg_713
7W7F62WA	[Landberg_774]	Landberg_774
QY3TF46Q	[Landberg_1002]	Landberg_1002
GSXB68F6	[Ms_or_fol_39]	Ms_or_fol_39
9QDHCMCF	[Ms_or_fol_51]	Ms_or_fol_51
HNDKTK52	[Ms_or_fol_152]	Ms_or_fol_152
2CS9D4NQ	[Ms_or_fol_248]	Ms_or_fol_248
XDGBBUUD	[Ms_or_fol_453]	Ms_or_fol_453
T6398NGD	[Ms_or_oct_34]	Ms_or_oct_34
16AHU5RX	[Ms_or_oct_196]	Ms_or_oct_196
WEMA0NZT	[Ms_or_oct_201]	Ms_or_oct_201
0SZC6GCV	[Ms_or_oct_202]	Ms_or_oct_202
GFZESSM3	[Ms_or_quart_57]	Ms_or_quart_57
8C0SZMM3	[Ms_or_quart_66]	Ms_or_quart_66
MNW0VA4T	[Ms_or_quart_211]	Ms_or_quart_211
HYCVW2PS	[Ms_or_quart_296]	Ms_or_quart_296
VBH5BZAW	[Ms_or_quart_463]	Ms_or_quart_463
2K5EBQX3	[Petermann_I_163]	Petermann_I_163
91DKSBM7	[Petermann_I_164]	Petermann_I_164
QWKV5Y9C	[Petermann_I_202]	Petermann_I_202
UKGRUUEW	[Petermann_I_203]	Petermann_I_203
H44N793A	[Petermann_I_207]	Petermann_I_207
NK6HSUDD	[Petermann_I_233]	Petermann_I_233
1EPD9N90	[Petermann_I_340]	Petermann_I_340
SQ0RW2CS	[Petermann_I_371]	Petermann_I_371
1FPK1ARN	[Petermann_I_571]	Petermann_I_571
MZ3WAP1D	[Petermann_I_577]	Petermann_I_577
PS47VD0C	[Petermann_I_597]	Petermann_I_597
YG4CX1VW	[Petermann_I_598]	Petermann_I_598
HK89CUT8	[Petermann_I_693]	Petermann_I_693
999SDY0R	[Petermann_I_694]	Petermann_I_694
GQ2TXGXP	[Petermann_II_35]	Petermann_II_35
ADF0WV9C	[Petermann_II_53]	Petermann_II_53
YZ0K3A9R	[Petermann_II_123]	Petermann_II_123
Z3ZV5NC2	[Petermann_II_231]	Petermann_II_231
75DVZH9M	[Petermann_II_455]	Petermann_II_455
6FAFMZXP	[Petermann_II_472]	Petermann_II_472
P9H3MU32	[Petermann_II_497]	Petermann_II_497
0PWNAW9Q	[Petermann_II_552]	Petermann_II_552
55VAMYGV	[Petermann_II_713]	Petermann_II_713
7SS1U8K1	[Schoemann_XI_1]	Schoemann_XI_1
M7F898VN	[Sprenger_73]	Sprenger_73
QTV9SWAN	[Sprenger_299]	Sprenger_299
U70W4W0Y	[Sprenger_571]	Sprenger_571
RNEGUF74	[Sprenger_575]	Sprenger_575
0EXT0Z3M	[Sprenger_674]	Sprenger_674
GDBNVGEM	[Sprenger_677]	Sprenger_677
5K2B8K79	[Sprenger_763]	Sprenger_763
RH8Y3E4K	[Sprenger_795]	Sprenger_795
AHPKNBHY	[Sprenger_805]	Sprenger_805
Y0SRM9GP	[Sprenger_817]	Sprenger_817
X12NPK60	[Sprenger_819]	Sprenger_819
M2M6WFVV	[Sprenger_852]	Sprenger_852
YSP8H1AS	[Sprenger_868]	Sprenger_868
ZTD84E7U	[Sprenger_869]	Sprenger_869
2Z8E79RQ	[Sprenger_1168]	Sprenger_1168
Y4XEGNC0	[Sprenger_1836]	Sprenger_1836
0DZTS5W7	[Sprenger_1839]	Sprenger_1839
1T6TEZRW	[Sprenger_1840]	Sprenger_1840
BM47K027	[Sprenger_1851]	Sprenger_1851
CM1E3UPS	[Sprenger_1852]	Sprenger_1852
7CG9FD77	[Sprenger_1856]	Sprenger_1856
AB4W2KM4	[Sprenger_1862]	Sprenger_1862
SAH5ST33	[Sprenger_1865]	Sprenger_1865
41RETKTC	[Sprenger_1867]	Sprenger_1867
1EX8SARS	[Sprenger_1868]	Sprenger_1868
8GRKNTE2	[Sprenger_1870]	Sprenger_1870
Z853GZUU	[Sprenger_1878]	Sprenger_1878
PT7EFCN1	[Sprenger_1936]	Sprenger_1936
EKDPPVH1	[Sprenger_1961]	Sprenger_1961
A2T807Y1	[Sprenger_1968]	Sprenger_1968
9E5QRCRR	[Wetzstein_II_53]	Wetzstein_II_53
KMZ9T91Y	[Wetzstein_II_1137]	Wetzstein_II_1137
YEF69UKN	[Wetzstein_II_1141]	Wetzstein_II_1141
VCPZW3HM	[Wetzstein_II_1144]	Wetzstein_II_1144
M3WN7MUS	[Wetzstein_II_1145]	Wetzstein_II_1145
R8UBSDFY	[Wetzstein_II_1147]	Wetzstein_II_1147
X6ABB0HA	[Wetzstein_II_1154]	Wetzstein_II_1154
XSNF0Z2T	[Wetzstein_II_1453]	Wetzstein_II_1453
RUYMX9K8	[Wetzstein_II_1511]	Wetzstein_II_1511
4U8V1D9S	[Wetzstein_II_1514]	Wetzstein_II_1514
46T2XZDT	[Wetzstein_II_1515]	Wetzstein_II_1515
WG0KHWMQ	[Wetzstein_II_1528]	Wetzstein_II_1528
CB8YA8XE	[Wetzstein_II_1532]	Wetzstein_II_1532
8610B6EU	[Wetzstein_II_1534]	Wetzstein_II_1534
XDF5USUK	[Wetzstein_II_1658]	Wetzstein_II_1658
YR6M8B14	[Wetzstein_II_1663]	Wetzstein_II_1663
PW8N73DF	[Wetzstein_II_1668]	Wetzstein_II_1668
9ECU32RS	[Wetzstein_II_1676]	Wetzstein_II_1676
Q1002NM8	[Wetzstein_II_1682]	Wetzstein_II_1682
XVWRB6GW	[Wetzstein_II_1686]	Wetzstein_II_1686
GYW2WXZH	[Wetzstein_II_1703]	Wetzstein_II_1703
WKPMF9RW	[Wetzstein_II_1707]	Wetzstein_II_1707
WDE897M7	[Wetzstein_II_1711]	Wetzstein_II_1711
PPZBTUUC	[Wetzstein_II_1712]	Wetzstein_II_1712
P339S6NV	[Wetzstein_II_1718]	Wetzstein_II_1718
UNV8NCQ9	[Wetzstein_II_1733]	Wetzstein_II_1733
RPDSNUHH	[Wetzstein_II_1750]	Wetzstein_II_1750
KSXGVGZE	[Wetzstein_II_1751]	Wetzstein_II_1751
S3CE4FSW	[Wetzstein_II_1768]	Wetzstein_II_1768
R0SZUEQX	[Wetzstein_II_1796]	Wetzstein_II_1796
T3AQSZX7	[Wetzstein_II_1818]	Wetzstein_II_1818
CV2UE9AX	[Wetzstein_II_1842]	Wetzstein_II_1842
HT1285F5	[Diez_A_quart_81]	Diez_A_quart_81
Z3RD45B6	[Glaser_96]	Glaser_96
W851C5W8	[Glaser_176]	Glaser_176
RGUDY2YY	[Landberg_8]	Landberg_8
D8F2MPCF	[Landberg_60]	Landberg_60
9NP7FRKE	[Landberg_67]	Landberg_67
YGP85AZT	[Landberg_69]	Landberg_69
S1ZH6XB3	[Landberg_70]	Landberg_70
TU16F1M8	[Landberg_136]	Landberg_136
CBQ0YZ6D	[Landberg_222]	Landberg_222
SDG7BAM2	[Landberg_271]	Landberg_271
TW5M0C50	[Landberg_273]	Landberg_273
WQYBRXA7	[Landberg_279]	Landberg_279
592WK7M3	[Landberg_335]	Landberg_335
N20RQ812	[Landberg_346]	Landberg_346
H5UAVS78	[Landberg_428]	Landberg_428
PCYEBTQR	[Landberg_488]	Landberg_488
ZWDVEC8X	[Landberg_554]	Landberg_554
UKFP4YQK	[Landberg_602]	Landberg_602
SPDTMPZR	[Landberg_639]	Landberg_639
GCTYRX51	[Landberg_652]	Landberg_652
YVE3W41Y	[Landberg_679]	Landberg_679
4BPDKR14	[Landberg_713]	Landberg_713
7W7F62WA	[Landberg_774]	Landberg_774
QY3TF46Q	[Landberg_1002]	Landberg_1002
GSXB68F6	[Ms_or_fol_39]	Ms_or_fol_39
XDGBBUUD	[Ms_or_fol_453]	Ms_or_fol_453
2CS9D4NQ	[Ms_or_fol_248]	Ms_or_fol_248
9QDHCMCF	[Ms_or_fol_51]	Ms_or_fol_51
HNDKTK52	[Ms_or_fol_152]	Ms_or_fol_152
T6398NGD	[Ms_or_oct_34]	Ms_or_oct_34
16AHU5RX	[Ms_or_oct_196]	Ms_or_oct_196
WEMA0NZT	[Ms_or_oct_201]	Ms_or_oct_201
0SZC6GCV	[Ms_or_oct_202]	Ms_or_oct_202
MNW0VA4T	[Ms_or_quart_211]	Ms_or_quart_211
GFZESSM3	[Ms_or_quart_57]	Ms_or_quart_57
HYCVW2PS	[Ms_or_quart_296]	Ms_or_quart_296
8C0SZMM3	[Ms_or_quart_66]	Ms_or_quart_66
VBH5BZAW	[Ms_or_quart_463]	Ms_or_quart_463
2K5EBQX3	[Petermann_I_163]	Petermann_I_163
91DKSBM7	[Petermann_I_164]	Petermann_I_164
QWKV5Y9C	[Petermann_I_202]	Petermann_I_202
UKGRUUEW	[Petermann_I_203]	Petermann_I_203
H44N793A	[Petermann_I_207]	Petermann_I_207
NK6HSUDD	[Petermann_I_233]	Petermann_I_233
1EPD9N90	[Petermann_I_340]	Petermann_I_340
SQ0RW2CS	[Petermann_I_371]	Petermann_I_371
1FPK1ARN	[Petermann_I_571]	Petermann_I_571
MZ3WAP1D	[Petermann_I_577]	Petermann_I_577
PS47VD0C	[Petermann_I_597]	Petermann_I_597
YG4CX1VW	[Petermann_I_598]	Petermann_I_598
HK89CUT8	[Petermann_I_693]	Petermann_I_693
999SDY0R	[Petermann_I_694]	Petermann_I_694
GQ2TXGXP	[Petermann_II_35]	Petermann_II_35
ADF0WV9C	[Petermann_II_53]	Petermann_II_53
YZ0K3A9R	[Petermann_II_123]	Petermann_II_123
Z3ZV5NC2	[Petermann_II_231]	Petermann_II_231
75DVZH9M	[Petermann_II_455]	Petermann_II_455
6FAFMZXP	[Petermann_II_472]	Petermann_II_472
P9H3MU32	[Petermann_II_497]	Petermann_II_497
0PWNAW9Q	[Petermann_II_552]	Petermann_II_552
55VAMYGV	[Petermann_II_713]	Petermann_II_713
7SS1U8K1	[Schoemann_XI_1]	Schoemann_XI_1
M7F898VN	[Sprenger_73]	Sprenger_73
QTV9SWAN	[Sprenger_299]	Sprenger_299
U70W4W0Y	[Sprenger_571]	Sprenger_571
RNEGUF74	[Sprenger_575]	Sprenger_575
0EXT0Z3M	[Sprenger_674]	Sprenger_674
GDBNVGEM	[Sprenger_677]	Sprenger_677
5K2B8K79	[Sprenger_763]	Sprenger_763
RH8Y3E4K	[Sprenger_795]	Sprenger_795
AHPKNBHY	[Sprenger_805]	Sprenger_805
Y0SRM9GP	[Sprenger_817]	Sprenger_817
X12NPK60	[Sprenger_819]	Sprenger_819
M2M6WFVV	[Sprenger_852]	Sprenger_852
YSP8H1AS	[Sprenger_868]	Sprenger_868
ZTD84E7U	[Sprenger_869]	Sprenger_869
2Z8E79RQ	[Sprenger_1168]	Sprenger_1168
Y4XEGNC0	[Sprenger_1836]	Sprenger_1836
0DZTS5W7	[Sprenger_1839]	Sprenger_1839
1T6TEZRW	[Sprenger_1840]	Sprenger_1840
BM47K027	[Sprenger_1851]	Sprenger_1851
CM1E3UPS	[Sprenger_1852]	Sprenger_1852
7CG9FD77	[Sprenger_1856]	Sprenger_1856
AB4W2KM4	[Sprenger_1862]	Sprenger_1862
SAH5ST33	[Sprenger_1865]	Sprenger_1865
41RETKTC	[Sprenger_1867]	Sprenger_1867
1EX8SARS	[Sprenger_1868]	Sprenger_1868
8GRKNTE2	[Sprenger_1870]	Sprenger_1870
Z853GZUU	[Sprenger_1878]	Sprenger_1878
PT7EFCN1	[Sprenger_1936]	Sprenger_1936
EKDPPVH1	[Sprenger_1961]	Sprenger_1961
A2T807Y1	[Sprenger_1968]	Sprenger_1968
9E5QRCRR	[Wetzstein_II_53]	Wetzstein_II_53
KMZ9T91Y	[Wetzstein_II_1137]	Wetzstein_II_1137
YEF69UKN	[Wetzstein_II_1141]	Wetzstein_II_1141
VCPZW3HM	[Wetzstein_II_1144]	Wetzstein_II_1144
M3WN7MUS	[Wetzstein_II_1145]	Wetzstein_II_1145
R8UBSDFY	[Wetzstein_II_1147]	Wetzstein_II_1147
X6ABB0HA	[Wetzstein_II_1154]	Wetzstein_II_1154
XSNF0Z2T	[Wetzstein_II_1453]	Wetzstein_II_1453
RUYMX9K8	[Wetzstein_II_1511]	Wetzstein_II_1511
4U8V1D9S	[Wetzstein_II_1514]	Wetzstein_II_1514
46T2XZDT	[Wetzstein_II_1515]	Wetzstein_II_1515
WG0KHWMQ	[Wetzstein_II_1528]	Wetzstein_II_1528
CB8YA8XE	[Wetzstein_II_1532]	Wetzstein_II_1532
8610B6EU	[Wetzstein_II_1534]	Wetzstein_II_1534
XDF5USUK	[Wetzstein_II_1658]	Wetzstein_II_1658
YR6M8B14	[Wetzstein_II_1663]	Wetzstein_II_1663
PW8N73DF	[Wetzstein_II_1668]	Wetzstein_II_1668
9ECU32RS	[Wetzstein_II_1676]	Wetzstein_II_1676
Q1002NM8	[Wetzstein_II_1682]	Wetzstein_II_1682
XVWRB6GW	[Wetzstein_II_1686]	Wetzstein_II_1686
GYW2WXZH	[Wetzstein_II_1703]	Wetzstein_II_1703
WKPMF9RW	[Wetzstein_II_1707]	Wetzstein_II_1707
WDE897M7	[Wetzstein_II_1711]	Wetzstein_II_1711
PPZBTUUC	[Wetzstein_II_1712]	Wetzstein_II_1712
P339S6NV	[Wetzstein_II_1718]	Wetzstein_II_1718
UNV8NCQ9	[Wetzstein_II_1733]	Wetzstein_II_1733
RPDSNUHH	[Wetzstein_II_1750]	Wetzstein_II_1750
KSXGVGZE	[Wetzstein_II_1751]	Wetzstein_II_1751
S3CE4FSW	[Wetzstein_II_1768]	Wetzstein_II_1768
R0SZUEQX	[Wetzstein_II_1796]	Wetzstein_II_1796
T3AQSZX7	[Wetzstein_II_1818]	Wetzstein_II_1818
CV2UE9AX	[Wetzstein_II_1842]	Wetzstein_II_1842
HKTNDPDT	Glaser_125	Glas. 125
GN0859KE	Ms_Diez_A_Fol_13	
895T55C1	Ms_Diez_A_Oct_22	
4PWX4YFS	Ms_Diez_A_Oct_59	
2B88XMV1	Ms_Diez_A_Oct_61	
3F777S9E	Ms_Ldbg_873	
7DE238YF	Ms_or_Fol_228	
5TCG09CE	Ms_or_Oct_1029	
6Q05UPKK	Ms_or_oct_2032	
358Z88PS	Ms_or_oct_2184	
MX02072H	Ms_or_Oct_2538	
S6B9V384	Ms_or_oct_3148	
P6YMXZ8W	Ms_or_oct_3611	
HKG4KFPA	Glaser_25	Glas. 25
21V1MZ7G	Ms_Diez_A_duodez_9_a	Ms_Diez_A_duodez_9_a
266V67BA	Ms_Diez_A_duodez_9_b	Ms_Diez_A_duodez_9_b
WDXEEX2P	Ms_Diez_A_duodez_9_c	Ms_Diez_A_duodez_9_c
MEG1RR85	Ms_Diez_A_Oct_24	Ms_Diez_A_Oct_24
GG6PVEDU	Ms_Diez_A_Quart_33	Ms_Diez_A_Quart_33
6UYK6YVY	Ms_Diez_A_Oct_101	Ms_Diez_A_Oct_101
XAD9ZHMK	Ms_Diez_A_Oct_159	Ms_Diez_A_Oct_159
C2Z18S5Q	Ms_Ldbg_589	Ms_Ldbg_589
271CWE2U	Ms_Ldbg_820	Ms_Ldbg_820
E1AS9UGP	Ms_or_8°_266	Ms_or_8°_266
B6N2T1YX	Ms_or_fol_266	Ms_or_fol_266
U5RPMH4B	Ms_or_fol_280	Ms_or_fol_280
WUZXBCEK	Ms_or_fol_3058	Ms_or_fol_3058
DVW6P0Q0	Ms_or_oct_19	Ms_or_oct_19
27M0VK06	Ms_or_oct_141	Ms_or_oct_141
CMNQA837	Ms_or_oct_171	Ms_or_oct_171
KZKV8U6F	Ms_or_oct_266	Ms_or_oct_266
C15BY37B	Ms_or_oct_364	Ms_or_oct_364
UM353FC3	Ms_or_oct_438	Ms_or_oct_438
3G24T7MG	Ms_or_oct_2566	Ms_or_oct_2566
NG5152UB	Ms_or_oct_2933	Ms_or_oct_2933
F2AHNT5Y	Ms_or_oct_3386	Ms_or_oct_3386
7W0GW3K8	Ms_or_oct_3448	Ms_or_oct_3448
VGQR4Q9X	Petermann_II_425	Petermann_II_425
PM0ETCHW	Ms_or_PTM_II_264	Ms_or_PTM_II_264
206MUM4V	Ms_or_PTM_II_547	Ms_or_Peterm_II_547
886MFA7R	Ms_or_PTM_II_710	Ms_or_PTM_II_710
XBVW0Z3H	Ms_or_quart_15	Ms_or_quart_15
7RW1GT0Y	Ms_or_quart_145	Ms_or_quart_145
16T5GT7F	Ms_or_fol_282	Ms_or_fol_282
0EXX9UR4	Ms_or_PTM_II_356	Ms_or_PTM_II_356
6UHNZREQ	Ms_or_quart_156	Ms_or_quart_156
QU19Z8Z6	Ms_or_quart_196	Ms_or_quart_196
7EX8U0RB	Ms_or_quart_203	Ms_or_quart_203
YDY9GR68	Ms_or_quart_249	Ms_or_quart_249
GNTVH3K3	Ms_or_quart_1889	Ms_or_quart_1889
715BURUQ	Ms_or_quart_1900	Ms_or_quart_1900
ZD36Y62B	Ms_orient_oct_64	Ms_orient_oct_64
KKP0UZA7	Petermann_I_314	Petermann_I_314
M4AXWKDG	Petermann_I_482	Petermann_I_482
SDK4QFKC	Petermann_I_483	Petermann_I_483
1RA9E2Z9	Petermann_I_712	Petermann_I_712
9MVZVU0G	Sachau_68	Sachau_68
FC4ZXFMG	Sprenger_875	Sprenger_875
19A3CA7D	Sprenger_1101	Sprenger_1101
M0DSVAH3	Sprenger_1462	Sprenger_1462
0AC7KUPC	Sprenger_1654	Sprenger_1654
K0SZEG6M	Sprenger_1842	Sprenger_1842
5165ZNH5	Sprenger_1843	Sprenger_1843
KZT89A9E	Sprenger_1845	Sprenger_1845
N32ZYS2Y	Sprenger_1871	Sprenger_1871
Y3AYGG5T	Sprenger_1879	Sprenger_1879
EP6E7MYS	Sprenger_1913	Sprenger_1913
7SR05Y8D	Sprenger_1965	Sprenger_1965
FR69VMRX	Sprenger_1980	Sprenger_1980
C07DA30X	Wetzstein_II_1140	Wetzstein_II_1140
EC9W16UW	Wetzstein_II_1187	Wetzstein_II_1187
N73DSYX9	Wetzstein_II_1196	Wetzstein_II_1196
7R7XY5M7	Wetzstein_II_1542	Wetzstein_II_1542
42DY7ZT5	Landberg_598	Landberg_598
KS5R3555	Landberg_744	Landberg_744
AKG2H3YC	Diez_A_fol_74	Diez_A_fol_74
G72AAWBY	Ms_or_oct_34	Ms_or_oct_34
ZHEK3CG6	Landberg_846	Landberg_846
2MKTCCKK	Landberg_1050	Landberg_1050
U48FPX8M	Ms_or_fol_161_b	Ms_or_fol_161_b
U6BUF0E7	Ms_or_quart_46	Ms_or_quart_46
MTDDD8KV	Ms_or_quart_115	Ms_or_quart_115
4MS50UNV	Ms_or_quart_186	Ms_or_quart_186
YSEHTM10	Ms_or_quart_281	Ms_or_quart_281
BZZUF6D7	Petermann_I_370	Petermann_I_370
K40PR9TN	Wetzstein_I_91	Wetzstein_I_91
M1SA7E58	Wetzstein_II_1706	Wetzstein_II_1706
Y48HSHEG	Wetzstein_II_1712	Wetzstein_II_1712
UB2ADVH6	Wetzstein_II_1821	Wetzstein_II_1821
487MRC11	Petermann_I_665	Petermann_I_665
HS8C466K	Petermann_I_672	Petermann_I_672
Q7PY03YD	Petermann_II_177	Petermann_II_177
2MED2BS6	Petermann_II_236	Petermann_II_236
RWGBUSFR	Petermann_II_400	Petermann_II_400
5T8CUR4N	Petermann_II_10	Petermann_II_10
17EF3Y6D	Sachau_199	Sachau_199
Y7TDHXGF	Sprenger_461	Sprenger_461
80MYTQVB	Sprenger_1011	Sprenger_1011
HUM5BM6G	Sprenger_1219	Sprenger_1219
NUQCH92X	Adwa al-kawakib[Ahlwardt no.: 5668; Spr. 1834]	Sprenger_1834
TMTZ1PTA	Sprenger_1846	Sprenger_1846
08DS0EYB	Sprenger_1853	Sprenger_1853
MEQZSM5A	Sprenger_1854	Sprenger_1854
UA14BNCE	Sprenger_1865	Sprenger_1865
806WXDUG	Sprenger_1876	Sprenger_1876
W6EC1TWG	Landberg 256	Ldbg 256
WXRM818R	A 28-5	A 28-5
N47WB9QP	A 1075-8	A 1075-8
CQ42NB0T	E 157-15	E 157-15
C3VPZWMM	Tanasee 121	Tanasee 121
N39U8UG0	[Wetzstein_I_177]	Wetzstein_I_177
\ No newline at end of file
Binary file docs/echo/ismi_ralf_list_2014.05.26.xlsx has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/scans_list0.html	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1979 @@
+<html>
+  <head>
+<base href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/" />
+
+    <title>
+      Scans with full metadata from the ISMI project
+    </title>
+    <meta http-equiv="content-type" content="text/html; charset=utf-8">
+    
+    <link rel="stylesheet" type="text/css" href="ismi.css">
+    <script type="text/javascript">
+      <!--
+	  window.name = "mainWindow";
+	  //-->
+    </script>
+  </head>
+  <body>
+    <div id="navHeader">
+     
+     
+      <!-- Image exist, navigation via click on image -->
+       
+	<a class="navImage"
+    href="http://ismi-dev.mpiwg-berlin.mpg.de/home">
+	  <img src="../img/ismi_logos/Sphere10.jpg" alt="ISMI"/>
+	</a>
+      
+      <!-- end - image exist -->
+      
+
+      <!-- No image navigation - using text -->
+      
+      <!-- No image end -->
+
+    
+     
+     
+      <!-- Image exist, navigation via click on image -->
+      
+      <!-- end - image exist -->
+      
+
+      <!-- No image navigation - using text -->
+      
+	
+	<!-- selektierter Link -->
+	
+	
+	<!-- nicht selektierter Link !-->
+	
+	  <a class="navLink"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/database">Manuscript Database</a>
+	  <a class="navGraphic"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/database/"><span></span></a>
+	
+      
+      <!-- No image end -->
+
+    
+     
+     
+      <!-- Image exist, navigation via click on image -->
+      
+      <!-- end - image exist -->
+      
+
+      <!-- No image navigation - using text -->
+      
+	
+	<!-- selektierter Link -->
+	 <!-- Wenn
+								      ausgewaehlt : Kein Link -->
+	  <a class="navLink_selected"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts">Manuscripts Online</a>
+	  <a class="navGraphic_selected"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/"><span></span></a>
+	
+	
+	<!-- nicht selektierter Link !-->
+	
+      
+      <!-- No image end -->
+
+    
+     
+     
+      <!-- Image exist, navigation via click on image -->
+      
+      <!-- end - image exist -->
+      
+
+      <!-- No image navigation - using text -->
+      
+	
+	<!-- selektierter Link -->
+	
+	
+	<!-- nicht selektierter Link !-->
+	
+	  <a class="navLink"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/biographies">Biographies</a>
+	  <a class="navGraphic"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/biographies/"><span></span></a>
+	
+      
+      <!-- No image end -->
+
+    
+     
+     
+      <!-- Image exist, navigation via click on image -->
+      
+      <!-- end - image exist -->
+      
+
+      <!-- No image navigation - using text -->
+      
+	
+	<!-- selektierter Link -->
+	
+	
+	<!-- nicht selektierter Link !-->
+	
+	  <a class="navLink"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/bibliography">Bibliography</a>
+	  <a class="navGraphic"
+      href="http://ismi-dev.mpiwg-berlin.mpg.de/bibliography/"><span></span></a>
+	
+      
+      <!-- No image end -->
+
+    
+  </div>
+    <div id="navMain">
+      <div id="navSide">
+
+    <!-- top level -->
+     
+
+      <!-- not selected -->
+       
+	<div class="nav navMenu"><a href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsSTABI">SBPK Berlin</a></div>
+       
+      <!-- end not selected -->
+
+      <!-- selected -->
+      
+      <!-- end selected -->
+
+    
+     
+
+      <!-- not selected -->
+       
+      <!-- end not selected -->
+
+      <!-- selected -->
+       
+    	<div class="nav navMenuSelect"><a
+    href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI">ISMI</a></div>
+	<!-- level 1: submenu -->
+	<div class="submenu submenu1">
+</div>
+	<!-- level 1: end -->
+
+
+      
+      <!-- end selected -->
+
+    
+    <!-- end top level -->
+
+  </div>
+      <div id="navBody"><div>
+      
+      
+      <!-- Title -->
+      <h2>Scans with full metadata from the ISMI project</h2>
+      <div class="toc">
+        40 resource(s) found.
+      </div>
+      
+      <!-- Description -->
+      <div class="description">Digitized manuscript with corresponding entries in the ISMI database.</div>
+
+      <!--
+      <div class="toc" tal:define="subcols python:here.getSubCols(subColTypes=['ECHO_collection','ECHO_link','ECHO_group'])" tal:condition="python:subcols and len(subcols)>1">
+	<div class="contentsHeader">Contents:</div>
+	<tal:x repeat="item subcols" >
+	  <tal:y condition="python:item.title">
+	    <div class="contentsEntry">
+	      <a class="grouptoc" tal:attributes="href python:'#'+item.getId()">
+		<img height="8px" width="7px" src="img/arrow_toc.gif" border=0> <span tal:omit-tag=""  tal:content="structure python:item.title" /></a>
+	    </div>
+	  </tal:y>
+	</tal:x>
+      </div>
+      -->
+      
+
+      <!-- Lists the Objects contained in this Object -->
+      <div class="descriptionDetails">
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/BVED1RUM"><span class="MDauthor">Aḥmad ibn ʿAbd al-Fattāḥ ibn Yūsuf al-Mallawī/احمد بن عبد الفتاح بن يوسف الملوي</span><br>
+<span class="MDtitle">Kitāb al-Lālī al-munṯūraẗ ʿalỳ niẓam al-muwjahāt/كتاب اللآلي المنثورات على نظم الموجهات,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 1024</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/M9XBU92T"><span class="MDauthor">Ibrāhīm Ḥijāzī al-Sandiyūnī al-Aḥmadī al-Šāfiʿī/ابراهيم السنديوني الشافعي</span><br>
+<span class="MDtitle">Kitāb ḥāšiyaẗ ʿalỳ matn al-Sullam/كتاب حاشية على متن السلم,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 810</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/RNEZE8Z6"><span class="MDauthor">al-Ḥassan ibn Muḥammad ibn al-Ḥassan Abī Bakr al-Raṣṣāṣ Ḥusām al-Dīn/الحَسّن بن محمّد بن الحَسّن ابي بكر الرصّاص حُسام الدين</span><br>
+<span class="MDtitle">Kitāb kayfiyaẗ kašf al-āḥkām wa-al-ṣaġāt ʿan ḫaṣāʾiṣ al-muʾṯarāt wa-al-muqtaḍiyāt/كتاب كيفية كشف الاحكام والصغات عن خصائص المؤثرات والمقتضيات,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 29</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/2BPAV5AP"><span class="MDauthor">Qul Aḥmad ibn Muḥammad ibn Ḫiḍr /قول احمد بن محمّد بن خِضر</span><br>
+<span class="MDtitle">al-Hawāšỳ ʿalỳ al-fanāriyaẗ/الحواشى على الفنارية,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 874</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/7T85HQNS"><span class="MDauthor">Aḥmad  ibn Aḥmad al-Fayyūmī al-Ġarqāwī al-Mālikī al-Azharī/احمد بن احمد الفيومي الغرقاوي المالكي الازهري</span><br>
+<span class="MDtitle">Ḥāšiyaẗ ʿalỳ matan Iysāġūjī wa-Šarḥuhu li-Aḥmad  ibn Aḥmad al-Fayyūmī/حاشية على متن ايساغوجي وشرحه لاحمد بن احمد الفيومي,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 1020</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/TRQNNGSR"><span class="MDauthor">Saʿd al-Dīn Masʿūd ibn ʿUmar al-Taftāzānī</span><br>
+<span class="MDtitle">Tahdhīb al-manṭiq wa al-kalām,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 82</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/S1C20QWU"><span class="MDauthor">Zakariyyāʾ al-Anṣārī</span><br>
+<span class="MDtitle">Ḥawāšī  ʿalỳ šarḥ luqṭaẗ al-ʿajlān,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sprenger 579</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/8XWYTZ26"><span class="MDauthor">Yaḥyỳ ibn Muḥammad al-Ḫaṭṭāb  al-Mālikī/يحيى بن محمّد الخطّاب المالكي </span><br>
+<span class="MDtitle">Muḫtaṣar fī ʿilm al-ḥisāb/مختصر في علم الحساب,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 724</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/6UZB2ZF0"><span class="MDauthor">Šams al-Dīn Abū ʿAbd Allāh Muḥammad ibn Abī al-Fatḥ al-Ṣūfī/شمس الدين عبد الله محمّد ابن ابي الفتح</span><br>
+<span class="MDtitle">Risālaẗ  muḫtaṣiraẗ fī al-ʿamal bi-ṣandūq al-yawāqīt/رسالة مختصرة في العمل بصندوق اليواقيت,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sprenger 1866</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/M0XAYXH0"><span class="MDauthor">Athīr al-Dīn al-Mufaḍḍal ibn ʿUmar ibn al-Mufaḍḍal al-Samarqandī al-Abharī/أثير الدين المفضل ابن عمر السمرقندي الابهري</span><br>
+<span class="MDtitle">al-Īsāghūjī (a.k.a. ar-Risālat al-Athīriyya fī l-manṭiq),</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 168</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/2EBGM67W"><span class="MDauthor">ʿAḍud al-Dīn ʿAbd Al-Raḥmān ibn Aḥmad al-Ījī</span><br>
+<span class="MDtitle">Risāla fī ādāb al-baḥth,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 402</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/NXDAZZYU"><span class="MDauthor">Shihāb al-Dīn Abū al-Futūḥ Yaḥyā ibn Ḥabash ibn Amīrak al-Suhrawardī</span><br>
+<span class="MDtitle">Kitāb al-talwīḥāt,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Petermann I 678</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/MWG2QDZ9"><span class="MDauthor">ʿAḍud al-Dīn ʿAbd Al-Raḥmān ibn Aḥmad al-Ījī</span><br>
+<span class="MDtitle">Risāla fī ādāb al-baḥth,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 181</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/B47T3HY2"><span class="MDauthor">Abū al-ʿAbbās Aḥmad ibn Muḥammad ibn Kaṯīr al-Farġānī/أبو العبّاس بن محمّد بن كثير الفرغاني</span><br>
+<span class="MDtitle">Al-Kāmil fī ṣanʿaẗ al-asṭurlāb al-šimālī wa-ʾl-janūbī bi-ʾl-handasaẗ wa-ʾl-ḥisāb/الكامل في صنعة الأسطرلاب الشمالي والجنوبي بالهندسة والحساب,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 58</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/FM05UE82"><span class="MDauthor">Najm al-Dīn ʿAlī ibn ʿUmar al-Qazwīnī al-Kātibī/نجم الدين علي بن عمر القزويني الكاتبي</span><br>
+<span class="MDtitle">Al-Risāla al-shamsiyya fī al-qawāʿid al-manṭiqiyya,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 804</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/UGTHY0RG"><span class="MDauthor">Abū Rašīd Saʿīd ibn Muḥammad ibn Saʿīd al-Nīsābūrī/ابو رشيد سعيد بن محمد بن سعيد النيسابوري</span><br>
+<span class="MDtitle">al-Masāʾil fī al-ḫilāf bayna al-Baṣiriyyīn wa-ʾl-Baġdādiyyīn/المسائل في الخلاف بين البصريين والبغداديين,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 12</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/4UZFR41E"><span class="MDauthor">Ḥasan ibn Muḥammad Sharqshāh al-Astarabādī</span><br>
+<span class="MDtitle">Kitāb al-maṭālīʿ,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Ms. or. oct. 1487</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/2AG56K0B"><span class="MDauthor">Yaḥyỳ ibn Muḥammad al-Ḫaṭṭāb  al-Mālikī/يحيى بن محمّد الخطّاب المالكي </span><br>
+<span class="MDtitle">Risālaẗ Wasīlaẗ al-ṭullāb li-maʿrafaẗ āʿmāl al-layl wa al-nahār bi-ṭarīq al-ḥisāb/رسالة وسيلة الطلاب لمعرفة اعمال الليل والنهار بطريق الحساب,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 953</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/1T0Z5TU5"><span class="MDauthor">Ḥasan ibn ʿAlī ibn Yaḥyā ibn ʿUmar al-ʿUjaymī al-Makkī al-Ḥanafī</span><br>
+<span class="MDtitle">Risālaẗ fī masʾalaẗ min ʿilm al-ḥisāb/رسالة في مسئلة من علم الحساب,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 725</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/QQVPRVXX"><span class="MDauthor">Arisṭūṭālīs/ارسطاطاليس</span><br>
+<span class="MDtitle">Uthūlūjiyā,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sprenger 741</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/RUK8AFQP"><span class="MDauthor">Saʿd al-Dīn Masʿūd ibn ʿUmar al-Taftāzānī</span><br>
+<span class="MDtitle">Tahdhīb al-manṭiq wa al-kalām,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 26</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/ERZHST5Y"><span class="MDauthor">Abū Rayḥān Muḥammad ibn Aḥmad al-Bīrūnī/ابو ريحان محمد بن احمد البيروني</span><br>
+<span class="MDtitle">Kitāb al-tafhīm li-awāʾil ṣināʿaẗ al-tanjīm/كتاب التفهيم لاوائل صناعة التنجيم ,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 63</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/5MB6HBYV"><span class="MDauthor">Quṭb al-Dīn Muḥammad ibn Muḥammad al-Rāzī al-Taḥtānī/قطب الدين محمّد بن محمّد الرازي التحتاني</span><br>
+<span class="MDtitle">Taḥrīr al-qawāʿid al-manṭiqiyya,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 954</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/5AN0VGK8"><span class="MDauthor">Ṣadr ibn ʿAbd al-Raḥmān ibn al-Walī al-Ṣāliḥ al-Sayyid al-Ṣaghīr al-Akhḍārī</span><br>
+<span class="MDtitle">Al-Sullam al-murawniq fī al-manṭiq,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 95</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/0SWBP6BQ"><span class="MDauthor">Quṭb al-Dīn Muḥammad ibn Muḥammad al-Rāzī al-Taḥtānī/قطب الدين محمّد بن محمّد الرازي التحتاني</span><br>
+<span class="MDtitle">Taḥrīr al-qawāʿid al-manṭiqiyya,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sprenger 1769</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/CC2KDXXX"><span class="MDauthor">Saʿd al-Dīn Masʿūd ibn ʿUmar al-Taftāzānī</span><br>
+<span class="MDtitle">Tahdhīb al-manṭiq wa al-kalām,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 540</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/YB4U050C"><span class="MDauthor">Abū Muḥammad al-Ḥasan ibn Aḥmad ibn Mattawayh</span><br>
+<span class="MDtitle">Kitāb al-Majmūʿ fī al-muḥīṭ bi-l-taklīf/كتالب المجموع في المحيط بالتكليف ,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 52</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/WTC2BK80"><span class="MDauthor">Šams al-Dīn Muḥammad ibn Ašraf al-Ḥusaynī al-Samarqandī /شمس الدين محمّد بن اشرف الحُسَيني السمرقندي</span><br>
+<span class="MDtitle">Risāla fī ādāb al-baḥth (a.k.a. Al-Risālat al-Samarqandiyya),</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Mq. 119</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/KNA1AZYB"><span class="MDauthor">Sharaf al-Dīn Maḥmūd ibn Muḥammad ibn ʿUmar al-Jaghmīnī al-Khwārizmī/محمود بن محمد بن عمر الجغميني</span><br>
+<span class="MDtitle">al-Mulaḫḫaṣ fī al-hayʾaẗ al-basīṭaẗ/الملخّص في الهيئة البسيطة,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Petermann I 673</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/1M75N53E"><span class="MDauthor">ʿUbayd Allāh ibn Masʿūd al-Maḥbūbī al-Bukhārī al-Ḥanafī/عبيد الله بن مسعود</span><br>
+<span class="MDtitle">Taʿdīl al-ʿulūm li-Ṣadra al-Šarīʿaẗ/تعديل العلوم لصدر الشريعة,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 394</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/WRQEXG1A"><span class="MDauthor">ANONYMOUS</span><br>
+<span class="MDtitle">UNKNOWN,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sachau 103</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/409E3DCG"><span class="MDauthor">Saʿd al-Dīn Masʿūd ibn ʿUmar al-Taftāzānī</span><br>
+<span class="MDtitle">Tahdhīb al-manṭiq wa al-kalām,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 414</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/XQH10RER"><span class="MDauthor">ANONYMOUS</span><br>
+<span class="MDtitle">UNKNOWN,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Glaser 171</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/DX904FN7"><span class="MDauthor">Šams al-Dīn Muḥammad ibn Maḥmūd al-Šahrazūrī</span><br>
+<span class="MDtitle">Rasāʾīl al-Šajaraẗ al-ilāhiyyaẗ fī ʿulūm al-haqāʾiq al-rabāniyaẗ/رسايل الشجرة الالهية في علوم الحقائق الربانية,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 904</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/GEWZ52P2"><span class="MDauthor">ʿAḍud al-Dīn ʿAbd Al-Raḥmān ibn Aḥmad al-Ījī</span><br>
+<span class="MDtitle">Al-Risālat al-waḍʿiyyat al-ʿAḍudiyya,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 471</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/U6BC9X7F"><span class="MDauthor">Abū Jaʿfar Muḥammad ibn Muḥammad ibn al-Ḥasan Naṣīr al-Dīn al-Ṭūsī/أبو جعفر محمد بن محمد بن الحسن نصير الدين الطوسي</span><br>
+<span class="MDtitle">Fī muqaddimāt kitāb al-Makhrūṭāt,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Sprenger 1838</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/VREYNH8W"><span class="MDauthor">Quṭb al-Dīn Maḥmūd ibn Masʿūd Muṣliḥ al-Šīrāzī/قطب الدين محمود ابن مسعود ابن مصلح الشيرازي</span><br>
+<span class="MDtitle">Nihāyaẗ al-idrāk fī dirāyaẗ al-aflāk/نهاية الإدراك في دراية الأفلاك,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Petermann I 674</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/QW00YZFR"><span class="MDauthor"></span><br>
+<span class="MDtitle">,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Petermann II 596</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/4ZPFQTN0"><span class="MDauthor">Šams al-Dīn Muḥammad ibn Ašraf al-Ḥusaynī al-Samarqandī /شمس الدين محمّد بن اشرف الحُسَيني السمرقندي</span><br>
+<span class="MDtitle">Šarḥ al-Qusṭās fī ʿilm al-manṭiq/شرح القسطاس في علم المنطق,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Landberg 1035</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	
+	  
+	    <div class="resourceListDisplay">
+  <!-- Label -->
+  <!-- with link if there is one -->
+  <!--
+      <div class="resourceListDisplayLabel">
+	<a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
+	  label
+	</a>
+      </div>
+      -->
+ 
+  <div class="resourceListDisplayLabel">
+    	<a target="_blank"
+        href="http://ismi-dev.mpiwg-berlin.mpg.de/manuscripts/manuscriptsISMI/6631A2R6"><span class="MDauthor">Abū Jaʿfar Aḥmad ibn ʿAbd Allāh Ḥabaš al-Ḥāsib al-Marwazī/ابو جعفر احمد بن عبد الله حبش الحاسب المروزي</span><br>
+<span class="MDtitle">Kitāb Ḥabaš al-Ḥāsib/كتاب حبش الحاسب,</span> <b></b>
+
+<div class="MDcollection">Staatsbibliothek Berlin:<span>Wetzstein I 90</span></div></a>
+    </div>
+  
+  <!-- Description if there ist one -->
+
+  
+  <!-- -->
+  
+  <!-- Copyrights -->
+  
+  
+  
+  
+  <!-- -->
+  
+  
+  
+  
+</div>
+	    <!--<tal:x condition="python:item.meta_type in ['ECHO_collection', 'ECHO_group', 'ECHO_link']">
+	      <div class="toplink" tal:condition="not:repeat/item/end">
+		<a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	      </div>
+	    </tal:x>-->
+	  	
+	
+	<!--
+	<div class="toplink">
+	  <a href="#top"><img height="8px" width="7px" src="img/arrow_top.gif" border=0> top</a>
+	</div>
+      
+      -->
+      </div>      
+      <!-- -->
+    </div>
+      </div>
+    </div>
+
+    <div class="navFooter">
+     <img src="../img/ismi_logos/bannerMcGill-100.gif" /><img src="../img/ismi_logos/MPIWG-withGraphic-color_en_72-100.gif" />
+    </div>
+  </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/echo/scans_list0.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,40 @@
+BVED1RUM
+M9XBU92T
+RNEZE8Z6
+2BPAV5AP
+7T85HQNS
+TRQNNGSR
+S1C20QWU
+8XWYTZ26
+6UZB2ZF0
+M0XAYXH0
+2EBGM67W
+NXDAZZYU
+MWG2QDZ9
+B47T3HY2
+FM05UE82
+UGTHY0RG
+4UZFR41E
+2AG56K0B
+1T0Z5TU5
+QQVPRVXX
+RUK8AFQP
+ERZHST5Y
+5MB6HBYV
+5AN0VGK8
+0SWBP6BQ
+CC2KDXXX
+YB4U050C
+WTC2BK80
+KNA1AZYB
+1M75N53E
+WRQEXG1A
+409E3DCG
+XQH10RER
+DX904FN7
+GEWZ52P2
+U6BC9X7F
+VREYNH8W
+QW00YZFR
+4ZPFQTN0
+6631A2R6
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/encoding_problem.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,9 @@
+َوَل
+awwal
+
+Hārūn al‐Rashīd
+Hārūn al-Rashīd
+
+
+48c48172c5ab6e20616ce2809052617368c4ab64
+48c48172c5ab6e20616c2d52617368c4ab64
\ No newline at end of file
Binary file docs/migration.odt has changed
Binary file docs/publicView/Stabi's Codices to put online_April2014.docx has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/publicView/dynamic_page_queries.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,1 @@
+WITNESS|source:is_exemplar_of|TEXT|source:was_created_by|PERSON
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/publicView/map_codex_digitalization.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,134 @@
+#### StabiCollection #### StabiCollection
+27543	283039
+36745	290025
+58453	283043
+87298	289742
+259646	289119
+35093	284650
+22863	289746
+34870	290033
+36882	281465
+101488	288482
+36696	282126
+31794	280834
+37240	279907
+35014	286566
+35583	288802
+37025	284339
+35960	284343
+172492	290045
+98286	283059
+165721	290049
+260111	289123
+90980	288156
+36316	284658
+260120	289750
+36241	286897
+260129	280842
+260138	280846
+38860	285281
+176694	285285
+72545	283063
+36185	281156
+36575	285289
+260146	284347
+31672	285916
+37739	285920
+89861	285924
+176778	285928
+180743	290053
+86328	290057
+260150	283397
+90658	282754
+58423	281811
+181058	288490
+105948	282423
+35526	287199
+74078	282431
+260158	279911
+181096	281477
+31606	281481
+31568	289754
+27872	290069
+36938	280221
+4836	288502
+34668	288810
+76866	288814
+102230	282766
+76888	283405
+74070	287860
+73757	284666
+182685	284670
+260162	290085
+260170	290089
+1102	290093
+172888	281164
+260174	282770
+34806	282774
+28088	281168
+36713	290097
+37323	286905
+34551	284351
+35943	283717
+98095	286582
+260178	280858
+260182	285948
+182770	285621
+260186	290109
+260190	284355
+260194	289135
+36114	285309
+85003	285313
+31630	285317
+157290	283087
+37153	283091
+37213	286590
+172952	286385
+86871	283095
+64406	283099
+102590	287544
+82615	283721
+58245	283725
+179791	281489
+179550	281493
+12419	281497
+95861	282439
+36429	284999
+36099	282443
+74237	288822
+36065	290113
+74822	285960
+87549	285625
+83765	285629
+36733	286275
+19259	281172
+260198	281176
+34986	281180
+88041	284674
+260202	280533
+36550	290117
+260206	284359
+37228	280541
+39880	284363
+36318	280545
+36597	280862
+35035	290121
+58328	287219
+80831	287223
+58354	287227
+74277	287231
+36529	290141
+36380	290145
+69450	286279
+200246	285964
+260222	284678
+81178	286594
+260226	289766
+199952	280229
+262557	289139
+87212	290125
+99059	290129
+64270	290133
+81811	287864
+65785	288506
+36645	290149
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/publicView/public_codices_ids.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,134 @@
+#### StabiCollection #### StabiCollection
+27543
+36745
+58453
+87298
+259646
+35093
+22863
+34870
+36882
+101488
+36696
+31794
+37240
+35014
+35583
+37025
+35960
+172492
+98286
+165721
+260111
+90980
+36316
+260120
+36241
+260129
+260138
+38860
+176694
+72545
+36185
+36575
+260146
+31672
+37739
+89861
+176778
+180743
+86328
+260150
+90658
+58423
+181058
+105948
+35526
+74078
+260158
+181096
+31606
+31568
+27872
+36938
+4836
+34668
+76866
+102230
+76888
+74070
+73757
+182685
+260162
+260170
+1102
+172888
+260174
+34806
+28088
+36713
+37323
+34551
+35943
+98095
+260178
+260182
+182770
+260186
+260190
+260194
+36114
+85003
+31630
+157290
+37153
+37213
+172952
+86871
+64406
+102590
+82615
+58245
+179791
+179550
+12419
+95861
+36429
+36099
+74237
+36065
+74822
+87549
+83765
+36733
+19259
+260198
+34986
+88041
+260202
+36550
+260206
+37228
+39880
+36318
+36597
+35035
+58328
+80831
+58354
+74277
+36529
+36380
+69450
+200246
+260222
+81178
+260226
+199952
+262557
+87212
+99059
+64270
+81811
+65785
+36645
Binary file docs/publicView/public_viewer_diagram.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/publicView/stabi_codices.txt	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,134 @@
+Diez_A_quart_49
+Glaser_103
+Glaser_163
+Glaser_21
+Glaser_227
+Glaser_239
+Glaser_40
+Glaser_6
+Glaser_83
+Landberg_1038
+Landberg_108
+Landberg_110
+Landberg_132
+Landberg_144
+Landberg_199
+Landberg_221
+Landberg_33
+Landberg_390
+Landberg_493
+Landberg_517
+Landberg_528
+Landberg_548
+Landberg_558
+Landberg_56
+Landberg_563
+Landberg_574
+Landberg_597
+Landberg_599
+Landberg_608
+Landberg_63
+Landberg_656
+Landberg_669
+Landberg_68
+Landberg_700
+Landberg_71
+Landberg_720
+Landberg_721
+Landberg_724
+Landberg_725
+Landberg_734
+Landberg_789
+Landberg_801
+Landberg_901
+Landberg_953
+Minutoli_190
+Ms_or_fol_256
+Ms_or_oct_200
+Ms_or_oct_252
+Ms_or_oct_273
+Ms_or_oct_274
+Ms_or_oct_275
+Ms_or_quart_100
+Ms_or_quart_101
+Ms_or_quart_103
+Ms_or_quart_559
+Ms_or_quart_690
+Ms_or_quart_704
+Ms_or_quart_728
+Ms_or_quart_733
+Ms_or_quart_98
+Ms_or_quart_99
+Petermann_I_315
+Petermann_I_62
+Petermann_I_669
+Petermann_I_67
+Petermann_I_670
+Petermann_I_671
+Petermann_I_672
+Petermann_I_673
+Petermann_I_674
+Petermann_II_124
+Petermann_II_228
+Petermann_II_396
+Petermann_II_402
+Petermann_II_79
+Sprenger_1824a
+Sprenger_1824b
+Sprenger_1825
+Sprenger_1832-1833
+Sprenger_1835
+Sprenger_1837
+Sprenger_1838
+Sprenger_1841
+Sprenger_1844
+Sprenger_1847a
+Sprenger_1847b
+Sprenger_1848
+Sprenger_1849
+Sprenger_1855
+Sprenger_1857
+Sprenger_1858
+Sprenger_1863
+Sprenger_1866
+Sprenger_1869
+Sprenger_1872
+Sprenger_1876
+Sprenger_1877
+Sprenger_1979
+Wetzstein_I_175
+Wetzstein_I_179
+Wetzstein_I_191
+Wetzstein_I_193
+Wetzstein_I_90
+Wetzstein_II_1127
+Wetzstein_II_1128
+Wetzstein_II_1129
+Wetzstein_II_1130
+Wetzstein_II_1131
+Wetzstein_II_1132
+Wetzstein_II_1133
+Wetzstein_II_1135
+Wetzstein_II_1136
+Wetzstein_II_1138
+Wetzstein_II_1138a
+Wetzstein_II_1139
+Wetzstein_II_1142
+Wetzstein_II_1143
+Wetzstein_II_1146
+Wetzstein_II_1148
+Wetzstein_II_1149
+Wetzstein_II_1150
+Wetzstein_II_1152
+Wetzstein_II_1713
+Wetzstein_II_1734
+Wetzstein_II_1736a
+Wetzstein_II_1746
+Wetzstein_II_1791
+Wetzstein_II_1809
+Wetzstein_II_1810
+Wetzstein_II_1811
+Wetzstein_II_1813
+Wetzstein_II_1825
+Wetzstein_II_1834
+Wetzstein_II_1869
Binary file docs/springer/Author_list.txt has changed
Binary file docs/springer/Author_list.xlsx has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/springer/Result_Abbās Wasīm Efendi.html	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,14 @@
+<html><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type"><title>Abbās Wasīm Efendi - Springer Public Data Interface
+        </title><link href="Result_Abba%CC%84s%20Wasi%CC%84m%20Efendi_files/spdi-pam.css" type="text/css" rel="stylesheet"><link href="Result_Abba%CC%84s%20Wasi%CC%84m%20Efendi_files/spdi-header.css" type="text/css" rel="stylesheet"></head><body><div id="header"><div id="linkBar"><div id="jumpBar">
+              jump to :
+              <a href="#top">top</a> |
+              <a href="#records">records</a> |
+              <a href="#facets">facets</a></div></div></div><a name="top"></a><div id="content"><tt class="xmlverb-default">
+<!-- converted by xmlverbatim.xsl 1.1, (c) O. Becker -->
+<div class="xmlverb-default">&lt;?<span class="xmlverb-pi-name">xml-stylesheet</span> <span class="xmlverb-pi-content">type="text/xsl" href="/resources/spdi-pam.xsl"</span>?&gt;<br>
+<div class="response"><br>&lt;<span class="xmlverb-element-name">response</span>&gt;<div class="query"><br>&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">query</span>&gt;<span class="xmlverb-text">Abbās&nbsp;Wasīm&nbsp;Efendi</span>&lt;/<span class="xmlverb-element-name">query</span>&gt;</div><div class="apiKey"><br>&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">apiKey</span>&gt;<span class="xmlverb-text">5gbcnqghsaf4f8ue3wgvcrud</span>&lt;/<span class="xmlverb-element-name">apiKey</span>&gt;</div><a name="result"></a><div class="result"><br>&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">result</span>&gt;<div class="total"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">total</span>&gt;<span class="xmlverb-text">1</span>&lt;/<span class="xmlverb-element-name">total</span>&gt;</div><div class="start"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">start</span>&gt;<span class="xmlverb-text">1</span>&lt;/<span class="xmlverb-element-name">start</span>&gt;</div><div class="pageLength"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">pageLength</span>&gt;<span class="xmlverb-text">10</span>&lt;/<span class="xmlverb-element-name">pageLength</span>&gt;</div><div class="recordsDisplayed"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">recordsDisplayed</span>&gt;<span class="xmlverb-text">1</span>&lt;/<span class="xmlverb-element-name">recordsDisplayed</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">result</span>&gt;</div><a name="records"></a><div class="records"><br>&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">records</span>&gt;<div class="message"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">pam</span>:<span class="xmlverb-element-name">message</span>&gt;<div class="head"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">xhtml</span>:<span class="xmlverb-element-name">head</span>&gt;<span class="xmlverb-text"><br>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><div class="article"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">pam</span>:<span class="xmlverb-element-name">article</span>&gt;<div class="identifier"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">identifier</span>&gt;<span class="xmlverb-text">doi:10.1007/978-0-387-30400-7_1</span>&lt;/<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">identifier</span>&gt;</div><div class="title"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">title</span>&gt;<span class="xmlverb-text"><br>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><div class="Superscript"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">Superscript</span>&gt;<span class="xmlverb-text">ҁ</span>&lt;/<span class="xmlverb-element-name">Superscript</span>&gt;</div><span class="xmlverb-text">Abbās&nbsp;Wasīm&nbsp;Efendi</span><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">title</span>&gt;</div><div class="creator"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">creator</span>&gt;<span class="xmlverb-text">Aydüz,&nbsp;Salim</span>&lt;/<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">creator</span>&gt;</div><div class="publicationName"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">publicationName</span>&gt;<span class="xmlverb-text">The&nbsp;Biographical&nbsp;Encyclopedia&nbsp;of&nbsp;Astronomers</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">publicationName</span>&gt;</div><div class="genre"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">genre</span>&gt;<span class="xmlverb-text">OriginalPaper</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">genre</span>&gt;</div><div class="isbn"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">isbn</span>&gt;<span class="xmlverb-text">978-0-387-30400-7</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">isbn</span>&gt;</div><div class="printIsbn"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">printIsbn</span>&gt;<span class="xmlverb-text">978-0-387-31022-0</span>&lt;/<span class="xmlverb-element-name">printIsbn</span>&gt;</div><div class="electronicIsbn"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">electronicIsbn</span>&gt;<span class="xmlverb-text">978-0-387-30400-7</span>&lt;/<span class="xmlverb-element-name">electronicIsbn</span>&gt;</div><div class="openAccess"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">openAccess</span>&gt;<span class="xmlverb-text">false</span>&lt;/<span class="xmlverb-element-name">openAccess</span>&gt;</div><div class="doi"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">doi</span>&gt;<span class="xmlverb-text">10.1007/978-0-387-30400-7_1</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">doi</span>&gt;</div><div class="publisher"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">publisher</span>&gt;<span class="xmlverb-text">Springer</span>&lt;/<span class="xmlverb-element-nsprefix">dc</span>:<span class="xmlverb-element-name">publisher</span>&gt;</div><div class="publicationDate"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">publicationDate</span>&gt;<span class="xmlverb-text">2007-01-01</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">publicationDate</span>&gt;</div><div class="url"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">url</span>&gt;<span class="xmlverb-text">http://dx.doi.org/10.1007/978-0-387-30400-7_1</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">url</span>&gt;</div><div class="copyright"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">copyright</span>&gt;<span class="xmlverb-text">©2007&nbsp;Springer&nbsp;New&nbsp;York</span>&lt;/<span class="xmlverb-element-nsprefix">prism</span>:<span class="xmlverb-element-name">copyright</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-nsprefix">pam</span>:<span class="xmlverb-element-name">article</span>&gt;</div><span class="xmlverb-text"><br>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-nsprefix">xhtml</span>:<span class="xmlverb-element-name">head</span>&gt;</div><div class="body"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-nsprefix">xhtml</span>:<span class="xmlverb-element-name">body</span> /&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-nsprefix">pam</span>:<span class="xmlverb-element-name">message</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">records</span>&gt;</div><a name="facets"></a><div class="facets"><br>&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facets</span>&gt;<div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">subject</span>"&gt;<div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">Astronomy,&nbsp;Astrophysics&nbsp;and&nbsp;Cosmology</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">History&nbsp;of&nbsp;Physics</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">History&nbsp;of&nbsp;Science</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">Physics</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">facet</span>&gt;</div><div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">keyword</span>" /&gt;</div><div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">pub</span>"&gt;<div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">The&nbsp;Biographical&nbsp;Encyclopedia&nbsp;of&nbsp;Astronomers</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">facet</span>&gt;</div><div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">year</span>"&gt;<div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">2007</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">facet</span>&gt;</div><div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">country</span>" /&gt;</div><div class="facet"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet</span> <span class="xmlverb-attr-name">name</span>="<span class="xmlverb-attr-content">type</span>"&gt;<div class="facet-value"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<span class="xmlverb-element-name">facet-value</span> <span class="xmlverb-attr-name">count</span>="<span class="xmlverb-attr-content">1</span>"&gt;<span class="xmlverb-text">Book</span>&lt;/<span class="xmlverb-element-name">facet-value</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">facet</span>&gt;</div><br>&nbsp;&nbsp;&nbsp;&lt;/<span class="xmlverb-element-name">facets</span>&gt;</div><br>&lt;/<span class="xmlverb-element-name">response</span>&gt;<br>
+</div></div>
+</tt></div></body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/springer/Result_Abbās Wasīm Efendi_files/spdi-header.css	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,10 @@
+body {margin: 0em;}
+a {color:#035289;}
+
+#header {font-family:Verdana,Arial,Helvetica,sans-serif; font-size: 0.8em;position: fixed; width:100%; z-index: 1;
+left:0; top:0; margin: 0em; background:url("/resources/images/bg.png") repeat; border-bottom: 1px solid #CCC;}
+
+div #linkBar {margin:1em 0em; padding:5px; display:block; background-color:white; color: #AAA;}
+div #navigationBar {float:right;}
+
+#content {display:block; margin: 5em 1em 1em 1em;}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/springer/Result_Abbās Wasīm Efendi_files/spdi-pam.css	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,29 @@
+.xmlverb-default          { color: #333333; font-family: monospace; font-size:12;}
+.xmlverb-element-name     { color: #990000; }
+.xmlverb-element-nsprefix { color: #666600; }
+.xmlverb-attr-name        { color: #660000; }
+.xmlverb-attr-content     { color: #000099; font-weight: bold; }
+.xmlverb-ns-name          { color: #666600; }
+.xmlverb-ns-uri           { color: #330099; }
+.xmlverb-text             { color: #000000; font-weight: bold; white-space:nowrap;}
+.xmlverb-comment          { color: #006600; font-style: italic; }
+.xmlverb-pi-name          { color: #006600; font-style: italic; }
+.xmlverb-pi-content       { color: #006666; font-style: italic; }
+
+div { display:inline;  }
+
+div .title, .total { font-weight:bold;}
+
+div .message:before { display:block; content:"Record"; color:#8C8; font-size:14; text-align:right; background-color:#CFC; padding-right:1em;}
+div .message { display:block; background-color:#DFD; border:1px solid #CFC; padding-bottom:1em; margin-bottom:1em;}
+
+div .article:before { display:block; content:"Article metadata"; color:#C88; font-size:14; text-align:right; background-color:#FCC; padding-right:1em;}
+div .article { display:block; background-color:#FDD; border:1px solid #FCC; margin:0em 2em -1em 2em; padding-bottom:1em;}
+
+div .result:before { display:block; content:"Result Summary"; color:#AAA; font-size:14; text-align:right; background-color:#DEDEDE; padding-right:1em;}
+div .result { display:block; background-color:#EEE; border:1px solid #DEDEDE; padding-bottom:1em;}
+
+div .facet:before { display:block; content:"Facet information"; color:#888; font-size:14; text-align:right; background-color:#CCC; padding-right:1em;}
+div .facet { display:block; background-color:#EEE; border:1px solid #CCC; margin-bottom:1em; padding-bottom:1em;}
+
+div .mediaReference-img {display:block; float:right; margin-right:1em;}
\ No newline at end of file
Binary file docs/springer/registration_successful_api_keys.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/test.html	Wed Oct 29 14:07:24 2014 +0000
@@ -0,0 +1,62 @@
+<div
+	style="position: fixed; z-index: 100; width: 600px; height: 350px; left: 470px; top: 21px;"
+	id="logged_ind:j_idt76:j_idt266:j_idt272_container" class="rf-pp-cntr ">
+	<div id="logged_ind:j_idt76:j_idt266:j_idt272_shadow"
+		class="rf-pp-shdw"
+		style="opacity: 0.1; width: 600px; height: 350px; left: 5px; top: 5px; bottom: -5px;"></div>
+	<div id="logged_ind:j_idt76:j_idt266:j_idt272_header"
+		class="rf-pp-hdr " style="cursor: default;">
+		<div id="logged_ind:j_idt76:j_idt266:j_idt272_header_content"
+			class="rf-pp-hdr-cnt">EndNote Reference</div>
+	</div>
+	<div id="logged_ind:j_idt76:j_idt266:j_idt272_content_scroller"
+		class="rf-pp-cnt-scrlr" style="width: 600px; height: 329px;">
+		<div id="logged_ind:j_idt76:j_idt266:j_idt272_content"
+			class="rf-pp-cnt">
+
+			<input type="hidden" value="logged_ind:j_idt76:j_idt266:j_idt274"
+				name="logged_ind:j_idt76:j_idt266:j_idt274"> <span
+				id="logged_ind:j_idt76:j_idt266:j_idt274:j_idt275"><table>
+					<tbody>
+						<tr>
+							<td><label>EndNote Id</label></td>
+							<td><input type="text"
+								name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt278"></td>
+						</tr>
+						<tr>
+							<td><label>ESciDoc Id</label></td>
+							<td><input type="text"
+								name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt280"></td>
+						</tr>
+						<tr>
+							<td><label>EndNote Content</label></td>
+							<td><textarea rows="10" cols="100"
+									name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt282"></textarea></td>
+						</tr>
+						<tr>
+							<td><label>Additional Information</label></td>
+							<td><textarea rows="3" cols="100"
+									name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt284"></textarea></td>
+						</tr>
+						<tr>
+							<td></td>
+							<td><table>
+									<tbody>
+										<tr>
+											<td><input type="submit" value="Save"
+												onclick="jsf.util.chain(this,event,&quot;if(!confirm('Do you really want to save the entity as new?')){ return false;};&quot;,&quot;RichFaces.ajax(\&quot;logged_ind:j_idt76:j_idt266:j_idt274:j_idt287\&quot;,event,{\&quot;incId\&quot;:\&quot;1\&quot;} )&quot;);return false;"
+												name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt287"
+												id="logged_ind:j_idt76:j_idt266:j_idt274:j_idt287"></td>
+											<td><input type="submit" value="Cancel"
+												name="logged_ind:j_idt76:j_idt266:j_idt274:j_idt288"></td>
+										</tr>
+									</tbody>
+								</table></td>
+						</tr>
+					</tbody>
+				</table> </span><input type="hidden" autocomplete="off"
+				value="-8314933875273114534:-876695439432008188"
+				id="javax.faces.ViewState" name="javax.faces.ViewState">
+		</div>
+	</div>
+</div>
\ No newline at end of file