diff --git a/deploy/rabbit.sh b/deploy/rabbit.sh
new file mode 100755
index 0000000000000000000000000000000000000000..9d6cb87116bc5d02321ac89a6e758435ea686aca
--- /dev/null
+++ b/deploy/rabbit.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+## If sudo is not available on the system,
+## uncomment the line below to install it
+# apt-get install -y sudo
+
+sudo apt-get update -y
+
+## Install prerequisites
+sudo apt-get install curl gnupg -y
+## Install RabbitMQ signing key
+curl -fsSL https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc | sudo apt-key add -
+## Install apt HTTPS transport
+sudo apt-get install apt-transport-https
+
+## Add Bintray repositories that provision latest RabbitMQ and Erlang 21.x releases
+sudo tee /etc/apt/sources.list.d/bintray.rabbitmq.list <<EOF
+## Installs the latest Erlang 22.x release.
+## Change component to "erlang-21.x" to install the latest 21.x version.
+## "bionic" as distribution name should work for any later Ubuntu or Debian release.
+## See the release to distribution mapping table in RabbitMQ doc guides to learn more.
+deb https://dl.bintray.com/rabbitmq-erlang/debian bionic erlang
+deb https://dl.bintray.com/rabbitmq/debian bionic main
+EOF
+
+## Update package indices
+sudo apt-get update -y
+
+## Install rabbitmq-server and its dependencies
+sudo apt-get install rabbitmq-server -y --fix-missing
diff --git a/hal/create_xml2hal.py b/hal/create_xml2hal.py
index 740f42804ee12ef838e3ef052abb01aee27ec4c0..3ef45ca21aaba124050d7d91efcf69633a57e67e 100644
--- a/hal/create_xml2hal.py
+++ b/hal/create_xml2hal.py
@@ -45,7 +45,7 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
         title.set("xml_lang",lang_title)          #Build from data      ### ATTENTION  remplacement xml_lang par xml:lang
 
         
-        title.text = title_publi.decode("utf-8")                 #Build from data
+        title.text = str(title_publi)             #Build from data
 
 
         #print ("CREATE XML title "+str(type(title_publi))+ " title UTF8 "+title_publi.decode("utf-8")+str(type(title_publi.decode("utf-8"))))
@@ -59,14 +59,14 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
             forename = etree.SubElement(persName, "forename")
             forename.set("type","first")
             #print ("Author "+auth[1] + " "+auth[0])
-            prenom_auth = auth[1].decode("utf-8")
+            prenom_auth = str(auth[1]) #.decode("utf-8")
             forename.text = prenom_auth                #Build from data
             surname = etree.SubElement(persName, "surname")
-            nom_auth = auth[0].decode("utf-8")
+            nom_auth = str(auth[0]) # .decode("utf-8")
             surname.text = nom_auth     
-            print ("AUTH 2 ", auth[0],auth[1],auth[2])                #Build from data
+            print ("AUTH 2 {0} {1} {2} ".format(nom_auth,prenom_auth,auth[2]))                #Build from data
             if len(auth[2]) > 1 :
-                if auth[0].decode('utf-8') == name_user and id_hal_user is not "" :
+                if nom_auth == name_user and id_hal_user is not "" :
                     idno =  etree.SubElement(author, "idno")
                     idno.set("type", "idhal")
                     idno.text = id_hal_user
@@ -89,7 +89,7 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
     analytic = etree.SubElement(biblStruct, "analytic")
     title = etree.SubElement(analytic, "title")
     title.set("xml_lang",lang_title)          #Build from data             ### ATTENTION remplacement  xml_lang par xml:lang
-    title.text = title_publi.decode("utf-8")                  #Build from data
+    title.text = str(title_publi) #.decode("utf-8")                  #Build from data
 
     for auth in listauthors :
         author = etree.SubElement(analytic, "author")
@@ -97,11 +97,11 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
         persName = etree.SubElement(author, "persName")
         forename = etree.SubElement(persName, "forename")
         forename.set("type","first")
-        forename.text = auth[1].decode("utf-8")                #Build from data
+        forename.text = str(auth[1]) #.decode("utf-8")                #Build from data
         surname = etree.SubElement(persName, "surname")
-        surname.text = auth[0].decode("utf-8")                    #Build from data
+        surname.text = str(auth[0]) #.decode("utf-8")                    #Build from data
         if len(auth[2]) > 1 :
-            if auth[0].decode("utf-8") == name_user and id_hal_user is not "":
+            if str(auth[0]) == name_user and id_hal_user is not "":
                 idno =  etree.SubElement(author, "idno")
                 idno.set("type", "idhal")
                 idno.text = id_hal_user
@@ -114,21 +114,21 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
     title = etree.SubElement(monogr, "title")
     if type_pub == "ART":
         title.set("level","j")
-        title.text = name_conf.decode("utf-8")                      #Build from data
+        title.text = str(name_conf) #.decode("utf-8")                      #Build from data
     if type_pub == "COMM":
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")                   #Build from data
+        title.text = str(name_conf) #.decode("utf-8")                   #Build from data
     if type_pub == "POSTER":
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")    
+        title.text = str(name_conf) #.decode("utf-8")    
     # Pour les COUV on donne le titre du livre (ici noté name_conf)
     if type_pub == "COUV":
         title = etree.SubElement(monogr, "title")
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")   # ici name_conf = titre livre                    #Build from data
+        title.text = str(name_conf) #.decode("utf-8")   # ici name_conf = titre livre                    #Build from data
         if len(editor_book) > 0 :
             editor = etree.SubElement(monogr, "editor")
-            editor.text = editor_book.decode("utf-8")     #Build from data
+            editor.text = str(editor_book) #.decode("utf-8")     #Build from data
 
     
     if (type_pub == "COMM") or (type_pub == "POSTER") :
@@ -136,13 +136,13 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
     
             meeting = etree.SubElement(monogr, "meeting")
             title = etree.SubElement(meeting, "title")
-            title.text = name_conf.decode("utf-8")                    #Build from data
+            title.text = str(name_conf) #.decode("utf-8")                    #Build from data
 
             date = etree.SubElement(meeting, "date")
             date.set("type","start")
             date.text = date_pub
             settlement = etree.SubElement(meeting, "settlement")
-            settlement.text = ville.decode("utf-8")
+            settlement.text = str(ville) #.decode("utf-8")
             country = etree.SubElement(meeting, "country")
             country.set("key",pays_acr)
             country.text = pays#.decode("utf-8")
@@ -195,7 +195,7 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
     org.set("xml_id",labo_auth_final)                                            ### ATTENTION remplacement  xml_id par xml:id
 
 
-    docxml = str(etree.tostring(tei, pretty_print=True, encoding='utf-8'))
+    docxml = etree.tostring(tei, pretty_print=True, encoding='unicode')
 
     file.write(docxml)
 
@@ -230,7 +230,8 @@ def createXml_sendHal(numero,listauthors, lang_title, title_publi, name_conf, nb
     print ("createXML bool_depot_prod ",bool_depot_prod)
     # DEPOT PREPROD
     if bool_depot_preprod == True :
-        data = open(namefile)
+        namefile2 = "xml_files2/bdoreauCI1.xml"
+        data = open(namefile2)
         try :
             response = requests.post('https://api-preprod.archives-ouvertes.fr/sword/hal/', headers=headers, data=data, auth=(login_depot, passwd_depot),timeout=60)
         except requests.exceptions.RequestException as e:
@@ -291,7 +292,7 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
         titleStmt = etree.SubElement(biblFull, "titleStmt")
         title = etree.SubElement(titleStmt, "title")
         title.set("xml_lang",lang_title)          #Build from data      ### ATTENTION  remplacement xml_lang par xml:lang
-        title.text = title_publi.decode("utf-8")                   #Build from data
+        title.text = str(title_publi) #.decode("utf-8")                   #Build from data
 
         for auth in listauthors :
             author = etree.SubElement(titleStmt, "author")
@@ -299,11 +300,11 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
             persName = etree.SubElement(author, "persName")
             forename = etree.SubElement(persName, "forename")
             forename.set("type","first")
-            forename.text = auth[1].decode("utf-8")                #Build from data
+            forename.text = str(auth[1]) #.decode("utf-8")                #Build from data
             surname = etree.SubElement(persName, "surname")
-            surname.text = auth[0].decode("utf-8")                    #Build from data
+            surname.text = str(auth[0]) #.decode("utf-8")                    #Build from data
             if len(auth[2]) > 1 :
-                if auth[0].decode("utf-8") == name_user and id_hal_user is not "":
+                if str(auth[0]) == name_user and id_hal_user is not "":
                     idno =  etree.SubElement(author, "idno")
                     idno.set("type", "idhal")
                     idno.text = id_hal_user
@@ -325,7 +326,7 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
     analytic = etree.SubElement(biblStruct, "analytic")
     title = etree.SubElement(analytic, "title")
     title.set("xml_lang",lang_title)          #Build from data             ### ATTENTION remplacement  xml_lang par xml:lang
-    title.text = title_publi.decode("utf-8")                   #Build from data
+    title.text = str(title_publi) #.decode("utf-8")                   #Build from data
     #print ("CREATE XML title "+str(type(title_publi)))
 
 
@@ -335,9 +336,9 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
         persName = etree.SubElement(author, "persName")
         forename = etree.SubElement(persName, "forename")
         forename.set("type","first")
-        forename.text = auth[1].decode("utf-8")                #Build from data
+        forename.text = str(auth[1]) #.decode("utf-8")                #Build from data
         surname = etree.SubElement(persName, "surname")
-        surname.text = auth[0].decode("utf-8")                    #Build from data
+        surname.text = str(auth[0]) #.decode("utf-8")                    #Build from data
         if len(auth[2]) > 1 :
             affiliation = etree.SubElement(author, "affiliation")
             labo_author = "#"+auth[2]
@@ -353,21 +354,21 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
     title = etree.SubElement(monogr, "title")
     if type_pub == "ART":
         title.set("level","j")
-        title.text = name_conf.decode("utf-8")                       #Build from data
+        title.text = str(name_conf) #.decode("utf-8")                       #Build from data
     if type_pub == "COMM":
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")                       #Build from data
+        title.text = str(name_conf) #.decode("utf-8")                       #Build from data
     if type_pub == "POSTER":
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")    
+        title.text = str(name_conf) #.decode("utf-8")    
     # Pour les COUV on donne le titre du livre (ici noté name_conf)
     if type_pub == "COUV":
         title = etree.SubElement(monogr, "title")
         title.set("level","m")
-        title.text = name_conf.decode("utf-8")   # ici name_conf = titre livre                    #Build from data
+        title.text = str(name_conf)   # ici name_conf = titre livre                    #Build from data
         if len(editor_book) > 0 :
             editor = etree.SubElement(monogr, "editor")
-            editor.text = editor_book.decode("utf-8")     #Build from data
+            editor.text = str(editor_book)     #Build from data
 
     
     if (type_pub == "COMM") or (type_pub == "POSTER") :
@@ -375,27 +376,27 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
     
             meeting = etree.SubElement(monogr, "meeting")
             title = etree.SubElement(meeting, "title")
-            title.text = name_conf.decode("utf-8")                      #Build from data
+            title.text = str(name_conf)                      #Build from data
 
             date = etree.SubElement(meeting, "date")
             date.set("type","start")
             date.text = date_pub
             settlement = etree.SubElement(meeting, "settlement")
-            settlement.text = ville.decode("utf-8")
+            settlement.text = str(ville)
             country = etree.SubElement(meeting, "country")
             country.set("key",pays_acr)
-            country.text = pays#.decode("utf-8")
+            country.text = str(pays) ##.decode("utf-8")
     
     imprint = etree.SubElement(monogr, "imprint")
     
     if len(volume) > 0 :
         biblScope = etree.SubElement(imprint, "biblScope")
         biblScope.set("unit","volume")
-        biblScope.text = volume#.decode("utf-8")#.strip()
+        biblScope.text = str(volume) ##.decode("utf-8")#.strip()
     if len(nb_pages) > 0 :
         biblScope = etree.SubElement(imprint, "biblScope")
         biblScope.set("unit","pp")
-        biblScope.text = nb_pages#.decode("utf-8")#.strip()
+        biblScope.text = str(nb_pages) ##.decode("utf-8")#.strip()
     
     date = etree.SubElement(imprint, "date")
     date.set("type","datePub")
@@ -434,10 +435,9 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
     org.set("xml_id",labo_auth_final)                                            ### ATTENTION remplacement  xml_id par xml:id
 
 
-    docxml = str(etree.tostring(tei, pretty_print=True, encoding='utf-8'))
+    docxml = etree.tostring(tei, pretty_print=True, encoding='unicode')
 
     file.write(docxml) 
-
     file.close() 
 
     ## CORRECTIFS
@@ -455,8 +455,6 @@ def create_single_xml(listauthors, lang_title, title_publi, name_conf, nb_pages,
     with open(namefile, 'w') as file:
         file.write(docxml)
 
-    #print (docxml)
-
     return docxml
 
 
diff --git a/hal/forms.py b/hal/forms.py
index acd2e38c5e58e03d1bec1c2bf22ab069dad217a2..e58ff73bbb54f7013591e0458387348305110f66 100644
--- a/hal/forms.py
+++ b/hal/forms.py
@@ -33,6 +33,78 @@ CHOICES_SOURCE_TEXT = (
 ('RG','Research Gate'),     
 )
 
+
+
+CHOICES_DOMAINS = (
+("math","Maths"),
+("spi","Sciences de l'ingenieur"),
+("sdv","Sciences du vivant"),
+("sde","Sciences de l'environnement"),
+("phys","Physique"),
+("shs","Sciences de l'homme et de la societe"),
+("sdu","Planetes et univers"),
+("stat","Statistiques"),
+("info.eiah","informatique Environnementsinformatiques pour l'Apprentissage Humain"),
+("info.info-ai","informatique/Intelligence artificielle"),
+("info.info-ao","informatique/Arithmétique des ordinateurs"),
+("info.info-ar","informatique/Architectures Matérielles"),
+("info.info-au","informatique/Automatique"),
+("info.info-bi","informatique/Bio-informatique"),
+("info.info-bt","informatique/Biotechnologie"),
+("info.info-cc","informatique/Complexité"),
+("info.info-ce","informatique/Ingénierie, finance et science"),
+("info.info-cg","informatique/Géométrie algorithmique"),
+("info.info-cl","informatique/Informatique et langage"),
+("info.info-cr","informatique/Cryptographie et sécurité"),
+("info.info-cv","informatique/Vision par ordinateur et reconnaissance de formes"),
+("info.info-cy","informatique/Ordinateur et société"),
+("info.info-db","informatique/Base de données"),
+("info.info-dc","informatique/Calcul parallèle, distribué et partagé"),
+("info.info-dl","informatique/Bibliothèque électronique"),
+("info.info-dm","informatique/Mathématique discrète"),
+("info.info-ds","informatique/Algorithme et structure de données"),
+("info.info-es","informatique/Systèmes embarqués"),
+("info.info-et","informatique/Technologies Émergeantes"),
+("info.info-fl","informatique/Théorie et langage formel"),
+("info.info-gl","informatique/Littérature générale"),
+("info.info-gr","informatique/Synthèse d'image et réalité virtuelle"),
+)
+
+CHOICES_DOMAINS2 = (
+("info.info-gt","informatique/Informatique et théorie des jeux"),
+("info.info-hc","informatique/Interface homme-machine"),
+("info.info-ia","informatique/Ingénierie assistée par ordinateur"),
+("info.info-im","informatique/Imagerie médicale"),
+("info.info-ir","informatique/Recherche d'information"),
+("info.info-it","informatique/Théorie de l'information"),
+("info.info-iu","informatique/Informatique ubiquitaire"),
+("info.info-lg","informatique/Apprentissage"),
+("info.info-lo","informatique/Logique eninformatique"),
+("info.info-ma","informatique/Système multi-agents"),
+("info.info-mc","informatique/Informatique mobile"),
+("info.info-mm","informatique/Multimédia"),
+("info.info-mo","informatique/Modélisation et simulation"),
+("info.info-ms","informatique/Logiciel mathématique"),
+("info.info-na","informatique/Analyse numérique"),
+("info.info-ne","informatique/Réseau de neurones"),
+("info.info-ni","informatique/Réseaux et télécommunications"),
+("info.info-oh","informatique/Autre"),
+("info.info-os","informatique/Système d'exploitation"),
+("info.info-pf","informatique/Performance et fiabilité"),
+("info.info-pl","informatique/Langage de programmation"),
+("info.info-rb","informatique/Robotique"),
+("info.info-ro","informatique/Recherche opérationnelle"),
+("info.info-sc","informatique/Calcul formel"),
+("info.info-sd","informatique/Son"),
+("info.info-se","informatique/Génie logiciel"),
+("info.info-si","informatique/Réseaux sociaux et d'information"),
+("info.info-sy","informatique/Systèmes et contrôle"),
+("info.info-ti","informatique/Traitement des images"),
+("info.info-ts","informatique/Traitement du signal et de l'image"),
+("info.info-tt","informatique/Traitement du texte et du document"),
+("info.info-wb","informatique/Web"),
+)
+
 class Bibtex2halForm(forms.Form): 
     bib_name_user = forms.CharField(required=True, max_length=40, label="Forme auteur Bibtex (*)")
     name_user = forms.CharField(required=True, max_length=40, label="Nom chercheur (*)")
@@ -40,18 +112,18 @@ class Bibtex2halForm(forms.Form):
     labo_auth_final = forms.CharField(required=True, max_length=40, label="N° de structure (*) (Ex: 490706)", initial = 490706)   
     id_hal_user = forms.CharField(required=True, max_length=40, label="IdHal chercheur (*)")
     login_user = forms.CharField(required=True, max_length=40, label="Login HAL chercheur (*)")
-    
-    choice_source = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES_SOURCE_BIBTEX, label="Choix de la source", initial='DBLP' )
-
+    #choice_source = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES_SOURCE_BIBTEX, label="Choix de la source", initial='DBLP' )
     login_depot = forms.CharField(required=True, max_length=40, label="Login HAL référent (*)")
     passwd_depot = forms.CharField(required=True, max_length=40, label=("Password HAL référent (*)"), widget=forms.PasswordInput())
     choice_depot = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES_DEPOT, label="Choix du dépôt", initial='NODEPOT' )
  
-    domain1 = forms.CharField(required=True, max_length=20, label="Domaine 1 (*)")
+    domains = forms.MultipleChoiceField(widget=forms.CheckboxSelectMultiple, choices=CHOICES_DOMAINS, label="Domaines de recherche", initial='math')
+    domains2 = forms.MultipleChoiceField(widget=forms.CheckboxSelectMultiple, choices=CHOICES_DOMAINS2, label="Autres domaines", initial='info.info-gt')
+    """ domain1 = forms.CharField(required=True, max_length=20, label="Domaine 1 (*)")
     domain2 = forms.CharField(required=False, max_length=20, label="Domaine 2")
     domain3 = forms.CharField(required=False, max_length=20, label="Domaine 3")
     domain4 = forms.CharField(required=False, max_length=20, label="Domaine 4")
-    domain5 = forms.CharField(required=False, max_length=20, label="Domaine 5")
+    domain5 = forms.CharField(required=False, max_length=20, label="Domaine 5") """
 
     bibtex_file = forms.CharField(required=True, label="contenu bibtex", widget=forms.Textarea(attrs={'rows':20, 'cols':90}),)
 
@@ -74,6 +146,21 @@ class BibtexXmlForm(forms.Form):
 
     bibtex_file = forms.CharField(required=True, label="contenu bibtex", widget=forms.Textarea(attrs={'rows':20, 'cols':90}),)
 
+class UpdateHalBibtexForm(forms.Form): 
+    bib_name_user = forms.CharField(required=True, max_length=40, label="Forme auteur Bibtex (*)")
+    name_user = forms.CharField(required=True, max_length=40, label="Nom chercheur (*)")
+    firstname_user = forms.CharField(required=True, max_length=40, label="Prénom chercheur (*)")
+    labo_auth_final = forms.CharField(required=True, max_length=40, label="N° de structure (*) (Ex: 490706)", initial = 490706)   
+    id_hal_user = forms.CharField(required=True, max_length=40, label="IdHal chercheur (*)")
+    login_user = forms.CharField(required=True, max_length=40, label="Login HAL chercheur (*)")
+    #choice_source = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES_SOURCE_BIBTEX, label="Choix de la source", initial='DBLP' )
+    login_depot = forms.CharField(required=True, max_length=40, label="Login HAL référent (*)")
+    passwd_depot = forms.CharField(required=True, max_length=40, label=("Password HAL référent (*)"), widget=forms.PasswordInput())
+    choice_depot = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES_DEPOT, label="Choix du dépôt", initial='NODEPOT' )
+ 
+    bibtex_file = forms.CharField(required=True, label="contenu bibtex", widget=forms.Textarea(attrs={'rows':20, 'cols':90}),)
+
+
 class Csv2halForm(forms.Form):
     form_author = forms.CharField(required=True, max_length=40, label="Forme auteur (*)")
     name_user = forms.CharField(required=True, max_length=40, label="Nom chercheur (*)")
diff --git a/hal/scripts_bibtex.py b/hal/scripts_bibtex.py
index 1674f24d2f3938e18a1f4580a8e872ef81b9945c..f8da0108b51a34dfe4f10833891ce861e27736ad 100644
--- a/hal/scripts_bibtex.py
+++ b/hal/scripts_bibtex.py
@@ -1,6 +1,9 @@
 #!/usr/bin/python
 #-*- coding: utf-8 -*-
 
+from celery import shared_task
+
+
 #from __future__ import unicode_literals
 import requests
 import csv
@@ -18,11 +21,18 @@ from .create_xml2hal import createXml_sendHal, create_single_xml
 
 from .dict_countries import dict_countries
 
-from haltools.settings import BASE_DIR
+from haltools.settings import BASE_DIR, MEDIA_ROOT
 #################
 ## VARIABLES
 #################
 
+resultat = ""
+problemes_url = ""    
+problemes_doublon = ""
+a_deposer = ""
+problemes_depot = ""    
+depots = ""
+reponse_single_xml = ""
 
 # Fichier CSV en sortie
 file_publis_csv = "all_csv.csv"
@@ -48,7 +58,8 @@ def get_info_from_proceeding(crossref, bib_database) :
     return result
 '''
 
-def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user, labo_auth_final, id_hal_user, login_user, listdomains, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod, single, source_bibtex):
+@shared_task
+def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user, labo_auth_final, id_hal_user, login_user, listdomains, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod, single, namenewfile):
     '''
     take bibtex file and some values in entry and parse the bibtex to get info upon publications
 
@@ -59,6 +70,7 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
     resultat = ""
     problemes_url = ""    
     problemes_doublon = ""
+    a_deposer = ""
     problemes_depot = ""    
     depots = ""
     reponse_single_xml = ""
@@ -75,6 +87,13 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
     cnt_total = 0
     cnt_phdthesis = 0
 
+    cnt_depot_D = 0
+    cnt_depot_E = 0
+    cnt_depot_A = 0
+    cnt_depot_P = 0
+    cnt_depot_2 = 0
+
+
     # errors bibtex
     cnt_error_auth = 0
     cnt_error_title = 0
@@ -145,19 +164,21 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
         pubmed = ""
 
         # Recup type publi, numero, language
+        ## ENTRYTYPE peut être : article, inproceedings, book, phdthesis
+
         if entry['ENTRYTYPE']=='article' : 
             cnt_article +=1
             type_publi = "ART"
             numero = "RI"+str(cnt_article)
             language = "en"
 
-        if entry['ENTRYTYPE']=='inproceedings' : 
+        elif entry['ENTRYTYPE']=='inproceedings' : 
             cnt_inproceeding +=1
             type_publi = "COMM"
             numero = "CI"+str(cnt_inproceeding)
             language = "en"
 
-        if entry['ENTRYTYPE']=='book' : 
+        elif entry['ENTRYTYPE']=='book' : 
             cnt_book +=1
             type_publi = "OUV"
             numero = "O"+str(cnt_book)
@@ -170,32 +191,31 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
 
         # get authors according to source_bibtex
         listauthors = []
-        if source_bibtex == "DBLP" :
-            try :
-                #print ("AUTHOR:"+entry['author'])
-                authors = entry['author']
-                list_authors_mix = authors.split("\n")
-                for auth in list_authors_mix :
-                    lab_struct = ""
-                    #print ("TEST name_user "+name_user+" - auth "+auth)
-
-                    if name_user in auth :
-                        print ("Script_bibtex Match form_author DBLP")
-                        auth = firstname_user+" "+name_user
-                        lab_struct = labo_auth_final
-                    if auth[-4:] == " and" :
-                        auth = auth[:-4]
-                    auth_full = auth.split(" ")
-                    prenom = auth_full[0]
-                    prenom = prenom.encode('utf-8')
-                    nom = auth_full[-1]
-                    nom = nom.encode('utf-8')
-                    #print ("Script_dblp "+"author "+auth.encode('utf-8')+ " - prenom "+ prenom.encode('utf-8')+ " - nom "+nom.encode('utf-8')+ str(type(auth.encode('utf-8'))))
-                    listauthors.append((nom,prenom,lab_struct))
-            except KeyError :
-                cnt_error_auth+=1          
+        try :
+            #print ("AUTHOR:"+entry['author'])
+            authors = entry['author']
+            list_authors_mix = authors.split("\n")
+            for auth in list_authors_mix :
+                lab_struct = ""
+                #print ("TEST name_user "+name_user+" - auth "+auth)
+
+                if name_user in auth :
+                    #print ("Script_bibtex Match form_author DBLP")
+                    auth = firstname_user+" "+name_user
+                    lab_struct = labo_auth_final
+                if auth[-4:] == " and" :
+                    auth = auth[:-4]
+                auth_full = auth.split(" ")
+                prenom = str(auth_full[0])
+                #prenom = prenom.encode('utf-8')
+                nom = str(auth_full[-1])
+                #nom = nom.encode('utf-8')
+                #print ("Script_dblp "+"author "+auth.encode('utf-8')+ " - prenom "+ prenom.encode('utf-8')+ " - nom "+nom.encode('utf-8')+ str(type(auth.encode('utf-8'))))
+                listauthors.append((nom,prenom,lab_struct))
+        except KeyError :
+            cnt_error_auth+=1          
 
-        if source_bibtex == "ENDNOTE" :
+        """if source_bibtex == "ENDNOTE" :
             try :
                 #print ("AUTHOR:"+entry['author'])
                 authors = entry['author']
@@ -222,7 +242,7 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                     listauthors.append((nom,prenom,lab_struct))
             except KeyError :
                 cnt_error_auth+=1     
-        # if source_bibtex == "..." :
+        # if source_bibtex == "..." : """
 
         # Get journal for ARTICLES
         if type_publi == "ART" :
@@ -244,20 +264,24 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                 conf = conf.replace("\\(^\\mboxe\\)","e")
                 prev_conf_elmt = ""
                 prev_prev_conf_elmt = ""
-                print("TEST HERE conf_all {0}".format(conf_all))
+                #print("TEST HERE conf_all {0}".format(conf_all))
                 for conf_elmt in conf_all :
                     conf_elmt = conf_elmt.strip()
                     conf_elmt = conf_elmt.upper()
-                    print("TEST HERE conf_elmt {0}".format(conf_elmt))
+                    #print("TEST HERE conf_elmt {0}".format(conf_elmt))
                     
                     try :
                         data_country = dict_countries[conf_elmt]
-                        
-                        if conf_elmt == "USA":
+                        print("MATCH country conf_elmt {0}".format(conf_elmt))
+                        if conf_elmt == "USA" or conf_elmt == "CANADA":
                             prev_prev_conf_elmt = prev_prev_conf_elmt.replace("\n"," ")
                             town = prev_prev_conf_elmt
                             country_acr = data_country
                             country = conf_elmt
+                        elif conf_elmt == "LUXEMBOURG" or conf_elmt == "SINGAPORE":
+                            country = conf_elmt
+                            country_acr = data_country
+                            town = country
                         else :                        
                             prev_conf_elmt = prev_conf_elmt.replace("\n"," ")
                             town = prev_conf_elmt
@@ -265,7 +289,8 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                             country = conf_elmt
                              
                     except Exception as e :
-                        print("conf_elmt {0}".format(conf_elmt))
+                        #print("NO MATCH  conf_elmt {0}".format(conf_elmt))
+                        pass
                  
 
                     
@@ -285,6 +310,19 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
 
                     prev_prev_conf_elmt = prev_conf_elmt
                     prev_conf_elmt = conf_elmt
+                
+                if country == "":
+                    print("Virtual event")
+                    #if 'Virtual Event' in conf_all :
+                    if any("Virtual Event" in s for s in conf_all):
+                        country='VIRTUAL EVENT'
+                        country_acr = 'XX'
+                    
+                    #if 'Online Streaming' in conf_all :
+                    elif any("Online" in s for s in conf_all):
+                        country='ONLINE'
+                        country_acr = 'XX'
+
 
             except KeyError :
                 cnt_error_booktitle+=1
@@ -328,6 +366,9 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                 cnt_error_editor+=1
 
 
+        print("{0} {1} {2} {3} {4} {5} {6} {7}".format(numero, type_publi, title, listauthors, conf, year, town, country))
+        print("")
+
         # Test value "single" 
         # if false -> call createXml_sendHal (create XML and deposit)
         # if true -> call create_single_xml (build XML without creation, no deposit)
@@ -338,8 +379,8 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
 
                 # Verification que la publi n'existe pas deja dans HAL
                 # pour un meilleur matching, titre en minuscule et recherche par le champ title_t (sans casse ni accent)
-                title_low = title.lower()
-                url_request = "https://api.archives-ouvertes.fr/search/?q=title_t:\"{0}\"&fl=uri_s,halId_s,authFullName_s,authIdHal_s,title_s&wt=json".format(title_low)
+                #title_low = title.lower()
+                url_request = "https://api.archives-ouvertes.fr/search/?q=title_t:\"{0}\"&fl=uri_s,halId_s,authFullName_s,authIdHal_s,title_s&wt=json".format(title)
 
                 req = requests.get(url_request)       
                 json = ""
@@ -362,11 +403,13 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                                 print ("error print authors existing publi keyerror {0}".format(ke))
                             resultat = resultat + "num. "+numero+" - "+result[0]["uri_s"]+" - auteurs:"+all_auth+"<br/>"
                             action_todo = "E"
+                            cnt_depot_E+=1
 
                         # si plusieurs resultats trouves, recup URI pour affichage dans 'problemes_doublon', action_todo = "2"
                         if (len(result) >1 ) :
                             problemes_doublon = problemes_doublon + "num. "+numero+" - URLS "+result[0]["uri_s"]+" "+result[1]["uri_s"]+"<br/>"
                             action_todo = "2"
+                            cnt_depot_2+=1
 
                         # Si aucun resultat on peut deposer, action_todo = "D"
                         if (len(result) == 0 ) :
@@ -380,29 +423,51 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
                                 accept_depot = False
                                 result = False
 
-                            title = title.encode("utf-8")
+                            """ title = title.encode("utf-8")
                             conf = conf.encode("utf-8")
                             town = town.encode("utf-8")
-                            editor_book = editor_book.encode("utf-8")
-
-                            if accept_depot == True :
+                            editor_book = editor_book.encode("utf-8") """
+                            title = str(title)
+                            conf = str(conf)
+                            town = str(town)
+                            editor_book = str(editor_book)
+
+                            if bool_depot_preprod==False and bool_depot_prod==False :
+                                if accept_depot == True :
+                                    a_deposer += "num. {0} au titre {1} peut etre deposee dans HAL<br/>".format(numero, title)
+                                    cnt_depot_A+=1
+                                elif accept_depot == False :
+                                    problemes_depot += "num. {0} au titre {1} -> pb ds le bibtex<br/>".format(numero,title)
+                                    cnt_depot_P+=1
+
+                            elif bool_depot_preprod==True or bool_depot_prod==True :
                                 print ("bool_depot_prod ",bool_depot_prod )
-                                result = createXml_sendHal(numero, listauthors, language, title, conf, nb_pages, year, listdomains, type_publi, town, country, country_acr,doi_value, editor_book, volume, pubmed, name_user, labo_auth_final, id_hal_user, login_user, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod)
-
-                            # methode createXml_sendHal renvoie true -> depot HAL ou preprod OK
-                            if result == True :
-                                depots = depots + "num. "+numero+" au titre "+title.decode("utf-8")+" deposee dans HAL<br/>"
-                            # methode createXml_sendHal renvoie true -> pb depot HAL ou preprod ou pas de depot demande    
-                            if result == False :
-                                problemes_depot = problemes_depot + "num. "+numero+" au titre "+title.decode("utf-8")+" a un probleme de depot<br/>"
+                                if accept_depot == True :
+                                    result = createXml_sendHal(numero, listauthors, language, title, conf, nb_pages, year, listdomains, type_publi, town, country, country_acr,doi_value, editor_book, volume, pubmed, name_user, labo_auth_final, id_hal_user, login_user, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod)
+
+                                    # methode createXml_sendHal renvoie true -> depot HAL ou preprod OK
+                                    if result == True :
+                                        #depots = depots + "num. "+numero+" au titre "+title+" deposee dans HAL<br/>"
+                                        depots += "num. {0} au titre {1} deposee dans HAL<br/>".format(numero, title)
+                                        cnt_depot_D+=1
+                                    # methode createXml_sendHal renvoie true -> pb depot HAL ou preprod ou pas de depot demande    
+                                    if result == False :
+                                        #problemes_depot = problemes_depot + "num. "+numero+" au titre "+title+" a un probleme de depot<br/>"
+                                        problemes_depot += "num. {0} au titre {1} a un probleme de depot<br/>".format(numero,title)
+                                        cnt_depot_P+=1
+                                elif accept_depot == False :
+                                    problemes_depot += "num. {0} au titre {1} -> pb ds le bibtex<br/>".format(numero,title)
+                                    cnt_depot_P+=1
                     else :
                         # pb de lecture json, pas depot -> problemes_url
                         action_todo = "P"
-                        problemes_url = problemes_url + "num. "+numero+" au titre "+title.decode("utf-8")+"<br/>"                        
+                        cnt_depot_P+=1
+                        problemes_url = problemes_url + "num. "+numero+" au titre "+title+"<br/>"                        
                 except KeyError :
                     # pb de lecture json, pas depot -> problemes_url
                     action_todo = "P"
-                    problemes_url = problemes_url + "num. "+numero+" au titre "+title.decode("utf-8")+"<br/>"
+                    cnt_depot_P+=1
+                    problemes_url = problemes_url + "num. "+numero+" au titre "+title+"<br/>" 
 
                 # Creation du CSV qui sera renvoye et affiche
                 authors = authors.replace(" and",", ")
@@ -433,15 +498,91 @@ def script_bibtex_2_hal (bibtex_file, bib_name_user, name_user, firstname_user,
         ville = pub[9]#.decode("utf-8")
 
         list_resultats.append((str(pub[0]),str(allauth),str(title),str(conf),str(pub[4]),str(pub[5]),str(pub[6]),str(pub[7]),str(pub[8]),ville,str(pub[10]),str(pub[11]),str(pub[12])))
+
+    ## Creation d'un fichier Mkdocs
+    with open (MEDIA_ROOT+"/temp_results/"+namenewfile, "w") as mdfile:
+        mdfile.write("# Résultats fichier :'{0}'\n".format(namenewfile))
+
+        mdfile.write("## RESULTATS PARSING BIBTEX\n")
+        mdfile.write("- cnt_article : {0}\n".format(cnt_article))
+        mdfile.write("- cnt_inproceeding : {0}\n".format(cnt_inproceeding))
+        mdfile.write("- cnt_proceeding : {0}\n".format(cnt_proceeding))
+        mdfile.write("- cnt_incollection : {0}\n".format(cnt_incollection))
+        mdfile.write("- cnt_book : {0}\n".format(cnt_book))
+        mdfile.write("- cnt_phdthesis : {0}\n".format(cnt_phdthesis))
+        mdfile.write("- cnt_total : {0}\n".format(cnt_total))
+        mdfile.write("\n")
+        mdfile.write("## RESULTATS XML + DEPOTS\n")
+        mdfile.write("**Dépôts existants**\n\n")
+        mdfile.write(resultat)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+        mdfile.write("**Dépôts effectues**\n\n")
+        mdfile.write(depots)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+        mdfile.write("**A déposer**\n\n")
+        mdfile.write(a_deposer)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+        mdfile.write("**Problèmes dépôts**\n\n")
+        mdfile.write(problemes_depot)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+        mdfile.write("**Problèmes doublons**\n")
+        mdfile.write(problemes_doublon)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+        mdfile.write("**Problèmes URL**\n\n")
+        mdfile.write(problemes_url)#.encode("utf-8"))
+        mdfile.write("\n\n")
+        mdfile.write("------------------\n\n")
+
+        ## Creation tableau
+        mdfile.write("## Visualisation\n")
+        mdfile.write("\n")
+        mdfile.write("|n°|Auteurs|Titre|Conf|pp|vol|date|type|todo|Ville|pays|\n")
+        mdfile.write("|--|--|--|--|--|--|--|--|--|--|--|\n")
+
+        for res in list_resultats :
+            mdfile.write("|{0}|{1}|{2}|{3}|{4}|{5}|{6}|{7}|{8}|{9}|{10}|\n".format(res[0],res[1],res[2],res[3],res[4],res[5],res[6],res[7],res[8],res[9],res[10]))
+
+        mdfile.write("\n")
+        mdfile.write("## ERRORS\n")
+        mdfile.write("- ERROR Author : {0}\n".format(cnt_error_auth))
+        mdfile.write("- ERROR Title : {0}\n".format(cnt_error_title))
+        mdfile.write("\n")
+        mdfile.write("**ERRORS ARTICLE**\n\n")
+        mdfile.write("- cnt_error_jrn : {0}\n".format(cnt_error_jrn))
+        mdfile.write("- cnt_error_vol : {0}\n".format(cnt_error_vol))
+        mdfile.write("- cnt_error_numb : {0}\n".format(cnt_error_numb))
+        mdfile.write("- cnt_error_pages : {0}\n".format(cnt_error_pages))
+        mdfile.write("- cnt_error_year_art : {0}\n".format(cnt_error_year_art))
+        mdfile.write("- cnt_error_doi : {0}\n".format(cnt_error_doi))
+        mdfile.write("\n")
+        mdfile.write("**ERRORS INPROCEEDINGS**\n\n")
+        mdfile.write("- cnt_error_booktitle : {0}\n".format(cnt_error_booktitle))
+        mdfile.write("- cnt_error_pages : {0}\n".format(cnt_error_pages))
+        mdfile.write("- cnt_error_year_inp : {0}\n".format(cnt_error_year_inp))
+        mdfile.write("- cnt_error_crossref : {0}\n".format(cnt_error_crossref))
+        mdfile.write("- cnt_error_publisher : {0}\n".format(cnt_error_publisher))
+        mdfile.write("- cnt_error_editor : {0}\n".format(cnt_error_editor))
+        mdfile.write("\n")
+        mdfile.write("**ERRORS PROCEEDINGS**\n\n")
+        mdfile.write("- cnt_error_idcrossref : {0}\n".format(cnt_error_idcrossref))
+        mdfile.write("\n")
+
+
     
     cnt_nb_publis = cnt_article + cnt_inproceeding + cnt_book + cnt_incollection + cnt_phdthesis
 
     list_resultats.append(("RESULTATS","nombre de publis",str(cnt_nb_publis),"","","","","","","","","","")) 
-    list_resultats.append(("RESULTATS","publis deja presentes dans HAL",resultat,"","","","","","","","","",""))
-    list_resultats.append(("RESULTATS","depots",depots,"","","","","","","","","","")) 
-    list_resultats.append(("RESULTATS","problemes de depot",problemes_depot,"","","","","", "","","","",""))
-    list_resultats.append(("RESULTATS","problemes de doublon",problemes_doublon,"","","","", "","","","","","")) 
-    list_resultats.append(("RESULTATS","problemes url",problemes_url,"","","","","","","","","","")) 
+    list_resultats.append(("RESULTATS","{0} publis deja presentes dans HAL".format(cnt_depot_E),resultat,"","","","","","","","","",""))
+    list_resultats.append(("RESULTATS","{0} depots de publis".format(cnt_depot_D),depots,"","","","","","","","","","")) 
+    list_resultats.append(("RESULTATS","{0} a déposer".format(cnt_depot_A),a_deposer,"","","","","","","","","","")) 
+    list_resultats.append(("RESULTATS","{0} problemes de depot".format(cnt_depot_P),problemes_depot,"","","","","", "","","","",""))
+    list_resultats.append(("RESULTATS","{0} problemes de doublon".format(cnt_depot_2),problemes_doublon,"","","","", "","","","","","")) 
+    list_resultats.append(("RESULTATS","Problemes url",problemes_url,"","","","","","","","","","")) 
 
     print ("####### RESULTATS PARSING BIBTEX ########")
     print ("cnt_article ", cnt_article)
diff --git a/hal/templates/base.html b/hal/templates/base.html
index aab15407c127fbdbbe34e0246cc3ee4f734d5342..c7e7feec4e2d5842d9f2f48853a172d080d9fd92 100644
--- a/hal/templates/base.html
+++ b/hal/templates/base.html
@@ -45,6 +45,7 @@
          <div class="dropdown-menu" x-placement="bottom-start" style="position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 39px, 0px);">
           <a class="dropdown-item" href="{% url "bibtex2hal" %}">Bibtex_2_Hal</a>
           <a class="dropdown-item" href="{% url "bibtexxml" %}">Create XML</a>
+          <a class="dropdown-item" href="{% url "updatehalbibtex" %}">Update HAL</a>
          </div>
       </li>
 
diff --git a/hal/templates/hal/bibtex2hal.html b/hal/templates/hal/bibtex2hal.html
index 876c810398cc3d0ab67bb2ae5211952c949fc70e..18af02e0d4d3bba0d643ae281ed98609d5d0c36e 100644
--- a/hal/templates/hal/bibtex2hal.html
+++ b/hal/templates/hal/bibtex2hal.html
@@ -16,6 +16,15 @@
 <h3>Bibtex to HAL</h3>
   <br/>
   	{% if user.is_authenticated %}
+
+
+	{% if messages %}
+		{% for message in messages %}
+		<div style="color:red"><b>{{ message }} </b></div>
+		{% endfor %}
+	{% endif %}
+
+
   	<p align="left">Remplissez les données demandées ci-dessous
   	<br/>
   	Tous les champs sont requis
@@ -88,7 +97,22 @@
           </div> 
 
 
-          <!--  3e ligne -->
+
+		  <div class="col-lg-7">         
+			<div class="fieldWrapper">
+				{{ form.domains.errors }}
+				{{ form.domains.label_tag }}<br/>
+				{{ form.domains }}
+			</div>           
+	  	  </div>
+		  <div class="col-lg-5">         
+				<div class="fieldWrapper">
+					{{ form.domains2.errors }}
+					{{ form.domains2.label_tag }}<br/>
+					{{ form.domains2 }}
+				</div>           
+		  </div>
+          <!--  
           <div class="col-lg-4">         
 			<div class="fieldWrapper">
 		    {{ form.domain1.errors }}
@@ -111,9 +135,9 @@
 		    {{ form.domain3.label_tag }}<br/>
 		    {{ form.domain3 }}
 			</div>      
-          </div>  
+          </div>  3e ligne -->
 
-          <!--  4e ligne -->
+          <!--  
           <div class="col-lg-4">         
 			<div class="fieldWrapper">
 		    {{ form.domain4.errors }}
@@ -133,9 +157,9 @@
           <div class="col-lg-4">
 			<div class="fieldWrapper">
 			</div>      
-		  </div>
+		  </div> 4e ligne -->
 		       		  
-		  <div class="col-lg-12">         
+		  <!-- <div class="col-lg-12">         
 				<div class="fieldWrapper">
 				<h3>Source</h3>
 				</div>           
@@ -147,7 +171,7 @@
 				{{ form.choice_source.label_tag }}<br/>
 				{{ form.choice_source }}
 				</div>           
-		  </div>
+		  </div> -->
 
           <div class="col-lg-12">         
 			<div class="fieldWrapper">
diff --git a/hal/urls.py b/hal/urls.py
index e3f0e626193dd4a6c6c768972f48680e61a8ab48..094ec11e233dd5d23b5e12cadb729bc63f519653 100644
--- a/hal/urls.py
+++ b/hal/urls.py
@@ -9,6 +9,7 @@ urlpatterns = [
     url(r'^deconnexion$', views.deconnexion, name='deconnexion'),
     url(r'^blog$', views.article_blog, name='blog'),
     url(r'^bibtex2hal$', views.bibtex2hal, name='bibtex2hal'),
+    url(r'^updatehalbibtex$', views.updatehalbibtex, name='updatehalbibtex'),
     url(r'^bibtexxml$', views.bibtexxml, name='bibtexxml'),
     url(r'^csv2hal$', views.csv2hal, name='csv2hal'),
     #url(r'^text2hal$', views.text2hal, name='text2hal'),
diff --git a/hal/views.py b/hal/views.py
index 2f08efeaada2bf87fe4205500b0ad1b6bfbdd16f..6dfd623941d1a55d25f29e15649573e700c8099c 100644
--- a/hal/views.py
+++ b/hal/views.py
@@ -6,15 +6,21 @@ from django.shortcuts import render
 from django.contrib.auth.backends import ModelBackend
 from django.contrib.auth import authenticate, login, logout
 #from django.contrib.auth.views import logout
+from django.contrib import messages
+from django.core.checks.messages import Error
 
-from .forms import ConnexionForm, Bibtex2halForm, Text2halForm, BibtexXmlForm, Csv2halForm, \
-    TextXmlForm, ModifTextForm,TextFromRG
+from .forms import ConnexionForm, Bibtex2halForm, BibtexXmlForm, Csv2halForm, UpdateHalBibtexForm, \
+    TextXmlForm, ModifTextForm,TextFromRG, Text2halForm
+
+from haltools.settings import MEDIA_ROOT
 
 from .scripts_bibtex import script_bibtex_2_hal
 #from .scripts_text import script_text_2_hal
 from .scripts_csv import script_csv_2_hal
+from .script_update_hal_bibtex import script_update_hal_bibtex
 
-
+import random
+import string
 #import httplib
 #import xml.dom.minidom
 import csv
@@ -101,13 +107,17 @@ def bibtex2hal(request):
         labo_auth_final = form.cleaned_data['labo_auth_final']
         id_hal_user = form.cleaned_data['id_hal_user']
         login_user = form.cleaned_data['login_user']
-        domain1 = form.cleaned_data['domain1']
+        domains = form.cleaned_data['domains']
+        domains2 = form.cleaned_data['domains2']
+        """ domain1 = form.cleaned_data['domain1']
         domain2 = form.cleaned_data['domain2']
         domain3 = form.cleaned_data['domain3']
         domain4 = form.cleaned_data['domain4']
-        domain5 = form.cleaned_data['domain5']
+        domain5 = form.cleaned_data['domain5'] """
+        listdomains = domains + domains2
+        print("listdomains {0}".format(listdomains))
 
-        choice_source = form.cleaned_data['choice_source']
+        #choice_source = form.cleaned_data['choice_source']
     
         login_depot = form.cleaned_data['login_depot']
         passwd_depot = form.cleaned_data['passwd_depot']
@@ -127,7 +137,7 @@ def bibtex2hal(request):
             print ("Views.py depot prod")
             bool_depot_prod = True
         
-        print ("choice_source ",choice_source)
+        #print ("choice_source ",choice_source)
         
         # single = False -> ask to deposit many publications 
         single = False
@@ -135,27 +145,28 @@ def bibtex2hal(request):
         labo_auth_final = "struct-"+labo_auth_final
 
         # manage domains  1st domain required, not the others
-        listdomains = []
-        listdomains.append(domain1)
-        if domain2 is not "" :
-            listdomains.append(domain2)
-        if domain3 is not "" :
-            listdomains.append(domain3)
-        if domain4 is not "" :
-            listdomains.append(domain4)
-        if domain5 is not "" :
-            listdomains.append(domain5)
 
         print ("views.py bool_depot_prod ", bool_depot_prod)
         print ("begin script")
-        reponse = script_bibtex_2_hal(bibtex_file, bib_name_user, name_user, firstname_user, labo_auth_final, id_hal_user, login_user, listdomains, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod, single, choice_source)
+
+        URLnameuser = name_user.replace(" ","-")
+        URLnameuser = URLnameuser.replace("'","-")
+
+        randomURL = ''.join(random.choices(string.ascii_uppercase + string.digits, k=6))
+        namenewfile = '{0}_{1}.md'.format(URLnameuser,randomURL)
+
+        msg_to_announce = "Le résultat sera à lire sur la page : {0}/temp_results/{1}".format(MEDIA_ROOT,namenewfile)
+
+        reponse = script_bibtex_2_hal.delay(bibtex_file, bib_name_user, name_user, firstname_user, labo_auth_final, id_hal_user, login_user, listdomains, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod, single, namenewfile)
         
+        messages.add_message(request, messages.WARNING, msg_to_announce)
+
         # in reponse, there's a table of data coming from bibtex file and some results (with "RESULTATS" in first column)
-        reponse_to_post = ""
+        """ reponse_to_post = ""
         list_to_post = []
         for result in reponse :
             if result[0] == "RESULTATS" :
-                reponse_to_post = reponse_to_post+"<br/><br/><b>"+result[1]+"</b><br/>"+result[2]
+                reponse_to_post += "<br/><br/><b>"+result[1]+"</b><br/>"+result[2]
             else :
                 p = PubliDescribe()
                 p.num = result[0]
@@ -172,7 +183,7 @@ def bibtex2hal(request):
                 p.acr = result[11]
                 p.lang = result[12]
                 
-                list_to_post.append(p)
+                list_to_post.append(p) """
                 #list_to_post.append((result[0],result[1],result[2],result[3],result[4],result[5],\
                 #result[6],result[7],result[8],result[9],result[10],result[11],result[12],))
         #reponse=("reponse HAL")
@@ -231,6 +242,87 @@ def bibtexxml(request):
 
 
 
+
+
+
+
+##################################################################################################################################
+## UPDATE_HAL  ######################################################################################################################
+##################################################################################################################################
+      
+def updatehalbibtex(request):
+    '''
+        update HAL from Bitex DBLP -> change name conf
+    '''   
+    reponse = ""
+    form = UpdateHalBibtexForm(request.POST or None)
+    
+    if form.is_valid():
+        # get data from form
+        bib_name_user = form.cleaned_data['bib_name_user']
+        name_user = form.cleaned_data['name_user']
+        firstname_user = form.cleaned_data['firstname_user']
+        labo_auth_final = form.cleaned_data['labo_auth_final']
+        id_hal_user = form.cleaned_data['id_hal_user']
+        login_user = form.cleaned_data['login_user']
+    
+        login_depot = form.cleaned_data['login_depot']
+        passwd_depot = form.cleaned_data['passwd_depot']
+
+        choice_depot = form.cleaned_data['choice_depot']
+        bibtex_file = form.cleaned_data['bibtex_file']
+
+        bool_depot_preprod = False
+        bool_depot_prod = False
+        
+        # recup du type de depot
+        if choice_depot == 'PREPROD' :
+            print ("Views.py depot preprod")
+            bool_depot_preprod = True
+        if choice_depot == 'PRODHAL' :
+            print ("Views.py depot prod")
+            bool_depot_prod = True
+        
+        labo_auth_final = "struct-"+labo_auth_final
+
+        print ("views.py bool_depot_prod ", bool_depot_prod)
+        print ("begin script")
+        reponse = script_update_hal_bibtex(bibtex_file, bib_name_user, name_user, firstname_user, labo_auth_final, id_hal_user, login_user, login_depot, passwd_depot, bool_depot_preprod, bool_depot_prod)        
+        # in reponse, there's a table of data coming from bibtex file and some results (with "RESULTATS" in first column)
+        reponse_to_post = ""
+        list_to_post = []
+        for result in reponse :
+            if result[0] == "RESULTATS" :
+                reponse_to_post += "<br/><br/><b>"+result[1]+"</b><br/>"+result[2]
+            else :
+                p = PubliDescribe()
+                p.num = result[0]
+                p.authors = result[1]
+                p.title = result[2]
+                p.conf = result[3]
+                p.page = result[4]
+                p.vol = result[5]
+                p.date = result[6]
+                p.type = result[7]
+                p.todo = result[8]
+                p.ville = result[9]
+                p.pays = result[10]
+                p.acr = result[11]
+                p.lang = result[12]
+                
+                list_to_post.append(p)
+                #list_to_post.append((result[0],result[1],result[2],result[3],result[4],result[5],\
+                #result[6],result[7],result[8],result[9],result[10],result[11],result[12],))
+        #reponse=("reponse HAL")
+        
+    return render(request, 'hal/updatehalbibtex.html', locals())
+
+
+
+
+
+
+
 ##################################################################################################################################
 ## CSV2HAL  #####################################################################################################################
 ##################################################################################################################################
diff --git a/haltools/celery.py b/haltools/celery.py
new file mode 100644
index 0000000000000000000000000000000000000000..cedbdf5c423a9f6cbf872f7cdba18c8e665efe63
--- /dev/null
+++ b/haltools/celery.py
@@ -0,0 +1,22 @@
+import os
+
+from celery import Celery
+
+# set the default Django settings module for the 'celery' program.
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'haltools.settings')
+
+app = Celery('haltools')
+
+# Using a string here means the worker doesn't have to serialize
+# the configuration object to child processes.
+# - namespace='CELERY' means all celery-related configuration keys
+#   should have a `CELERY_` prefix.
+app.config_from_object('django.conf:settings', namespace='CELERY')
+
+# Load task modules from all registered Django app configs.
+app.autodiscover_tasks()
+
+
+@app.task(bind=True)
+def debug_task(self):
+    print(f'Request: {self.request!r}')
\ No newline at end of file
diff --git a/haltools/settings.py b/haltools/settings.py
index 68aaebc4b1b56cf81e029fac759031e19b7dea95..eefeb9c1ba0912c9c71f092012e067f0f4e63dbb 100644
--- a/haltools/settings.py
+++ b/haltools/settings.py
@@ -102,7 +102,7 @@ DATABASES = {
         'OPTIONS' : {"init_command": "SET foreign_key_checks = 0;"},
         'NAME': 'haltools',
         'USER': 'haladmin',
-        'PASSWORD': '********',
+        'PASSWORD': 'halpasswd',
         'HOST': '127.0.0.1',
         'PORT': '',
     }
@@ -126,18 +126,19 @@ AUTH_PASSWORD_VALIDATORS = [
     },
 ]
 
+# Celery Configuration Options
+CELERYD_NODES="w1 w2"
+CELERY_BROKER_URL = "amqp://halrabbuser:halrabbpwd@localhost:5672//"
+CELERY_TIMEZONE = "UTC"
+CELERY_TASK_TRACK_STARTED = True
 
 # Internationalization
 # https://docs.djangoproject.com/en/1.11/topics/i18n/
 
 LANGUAGE_CODE = 'en-us'
-
 TIME_ZONE = 'UTC'
-
 USE_I18N = True
-
 USE_L10N = True
-
 USE_TZ = True
 
 
diff --git a/requirements.txt b/requirements.txt
index 6968a607e8fb5a04f7431f7cf52f59d30b410780..9202b8753d5e9918706f263e9dfba8ff647f0e1f 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,5 @@
 bibtexparser==1.4.0
+celery==5.2.7
 Django==3.2
 django-bootstrap-themes==3.3.6
 django-bootstrap3==21.1
diff --git a/xml_files/basdoreatemp.xml b/xml_files/basdoreatemp.xml
deleted file mode 100644
index 84db0645b04141f3b9e418c0a3693e784bce53d9..0000000000000000000000000000000000000000
--- a/xml_files/basdoreatemp.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">The minimum weakly connected independent set problem: Polyhedral results and Branch-and-Cut</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Djelloul</forename>
-                <surname>Mameri</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">The minimum weakly connected independent set problem: Polyhedral results and Branch-and-Cut</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Djelloul</forename>
-                    <surname>Mameri</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Discrete Optimization</title>
-                <imprint>
-                  <biblScope unit="volume">22</biblScope>
-                  <biblScope unit="pp">87--110</biblScope>
-                  <date type="datePub">2016</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.disopt.2016.04.006</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-dm"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI1.xml b/xml_files/bdoreauCI1.xml
deleted file mode 100644
index a66865ee362df052682e2048ea336df1cff5b2c3..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI1.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Novel Hybrid Multi-criteria Decision-Making Model to Solve UA-FLP</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hern&#225;ndez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Novel Hybrid Multi-criteria Decision-Making Model to Solve UA-FLP</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hern&#225;ndez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Distributed Computing and Artificial Intelligence</title>
-                <meeting>
-                  <title>Distributed Computing and Artificial Intelligence</title>
-                  <date type="start">2018</date>
-                  <settlement>Toledo</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">292--299</biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1007/978-3-319-94649-8_35</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI10.xml b/xml_files/bdoreauCI10.xml
deleted file mode 100644
index f6bfa4e3370336178bbe50d852571e1d02dfd815..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI10.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Modeling Human Real Time Decisions: An Approach Based on Automatic Learning and Visual Interactive Simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Anne-Lise</forename>
-                <surname>Huyet</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Modeling Human Real Time Decisions: An Approach Based on Automatic Learning and Visual Interactive Simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Anne-Lise</forename>
-                    <surname>Huyet</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 10th EUROS/UKSim International Conference on Computer Modelling and Simulation</title>
-                <imprint>
-                  <biblScope unit="pp">253--259</biblScope>
-                  <date type="datePub">2008</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/UKSIM.2008.80</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI11.xml b/xml_files/bdoreauCI11.xml
deleted file mode 100644
index f4133265672492d02aadf2eb2cf0d33d9ead7e0a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI11.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Parallel Evolutionary Algorithms for Simulation Optimization</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">L.</forename>
-                <surname>Tautou</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">B.</forename>
-                <surname>Bzeznik</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Parallel Evolutionary Algorithms for Simulation Optimization</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">L.</forename>
-                    <surname>Tautou</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">B.</forename>
-                    <surname>Bzeznik</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">EUROSIM'96</title>
-                <meeting>
-                  <title>EUROSIM'96</title>
-                  <date type="start">1995</date>
-                  <settlement>Vienna</settlement>
-                  <country key="AT">AUSTRIA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">225--230</biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI12.xml b/xml_files/bdoreauCI12.xml
deleted file mode 100644
index 1a3f17f0881bf4ef3fc97c7075ffbe57b45e8f5e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI12.xml
+++ /dev/null
@@ -1,93 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Contribution of Model-Driven Engineering to Crop Modeling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Guillaume</forename>
-                <surname>Barbier</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">V&#233;ronique</forename>
-                <surname>Cucchi</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Contribution of Model-Driven Engineering to Crop Modeling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Guillaume</forename>
-                    <surname>Barbier</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">V&#233;ronique</forename>
-                    <surname>Cucchi</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Computational Science and Its Applications - ICCSA 2013 - 13th International Conference</title>
-                <meeting>
-                  <title>Computational Science and Its Applications - ICCSA 2013 - 13th International Conference</title>
-                  <date type="start">2013</date>
-                  <settlement>Ho Chi Minh City</settlement>
-                  <country key="VN">VIETNAM</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">253--263</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1007/978-3-642-39637-3_21</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI13.xml b/xml_files/bdoreauCI13.xml
deleted file mode 100644
index 083b9a3fe4db53d0825b7dad18267963fe46b442..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI13.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Fast distributed computing for complete large scale backtranslation of oligopeptides: Application to probe design</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Faouzi</forename>
-                <surname>Jaziri</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Eric</forename>
-                <surname>Peyretaillade</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Pierre</forename>
-                <surname>Peyret</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Fast distributed computing for complete large scale backtranslation of oligopeptides: Application to probe design</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Faouzi</forename>
-                    <surname>Jaziri</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Eric</forename>
-                    <surname>Peyretaillade</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Pierre</forename>
-                    <surname>Peyret</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2013</date>
-                  <settlement>Helsinki</settlement>
-                  <country key="FI">FINLAND</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">251--258</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCSim.2013.6641423</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI15.xml b/xml_files/bdoreauCI15.xml
deleted file mode 100644
index 09ef7df7e39a76a3fd0629239971399d6a61b29d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI15.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Proper parallel Monte Carlo for computed tomography of volcanoes</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Pierre</forename>
-                <surname>Schweitzer</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Claude</forename>
-                <surname>Mazel</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Felix</forename>
-                <surname>Fehr</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Cristina</forename>
-                <surname>Carloganu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Proper parallel Monte Carlo for computed tomography of volcanoes</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Pierre</forename>
-                    <surname>Schweitzer</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Claude</forename>
-                    <surname>Mazel</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Felix</forename>
-                    <surname>Fehr</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Cristina</forename>
-                    <surname>Carloganu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2013</date>
-                  <settlement>Helsinki</settlement>
-                  <country key="FI">FINLAND</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">519--526</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCSim.2013.6641463</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI18.xml b/xml_files/bdoreauCI18.xml
deleted file mode 100644
index e2febd895c893da4382de93435c96686a0736497..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI18.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">HPCS 2012 tutorials: Tutorial I: High performance computing in biomedical informatics</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Hesham</forename>
-                <surname>Ali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Ricci</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Italo</forename>
-                <surname>Epicoco</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Manuel</forename>
-                <surname>Ujaldon</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jonathan</forename>
-                <surname>Passerat-Palmbach</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Manuel</forename>
-                <surname>Vill&#233;n-Altamirano</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">HPCS 2012 tutorials: Tutorial I: High performance computing in biomedical informatics</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Hesham</forename>
-                    <surname>Ali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Ricci</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Italo</forename>
-                    <surname>Epicoco</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Manuel</forename>
-                    <surname>Ujaldon</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jonathan</forename>
-                    <surname>Passerat-Palmbach</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Manuel</forename>
-                    <surname>Vill&#233;n-Altamirano</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2012 International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>2012 International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2012</date>
-                  <settlement>Madrid</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <date type="datePub">2012</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCSim.2012.6266878</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI19.xml b/xml_files/bdoreauCI19.xml
deleted file mode 100644
index 9c721a86012bcfd319230ec235e85d10d91a0966..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI19.xml
+++ /dev/null
@@ -1,284 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">HPCS 2012 panels: Panel I: Energy efficient systems in next generation high performance data and compute centers</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laurent</forename>
-                <surname>Lef&#232;vre</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Vicente</forename>
-                <surname>Martin</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Miguel</forename>
-                <surname>Ordonez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Johnatan</forename>
-                <surname>Pecero</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean-Marc</forename>
-                <surname>Pierson</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jes&#250;s</forename>
-                <surname>Carretero</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Pascal</forename>
-                <surname>Bouvry</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jes&#250;s</forename>
-                <surname>Labarta</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Reinhard</forename>
-                <surname>Schneider</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">James</forename>
-                <surname>Sexton</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mads</forename>
-                <surname>Nyg&#229;rd</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Gorka</forename>
-                <surname>Lopez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Maria</forename>
-                <surname>Mirto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Marco</forename>
-                <surname>Passante</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Giovanni</forename>
-                <surname>Aloisio</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Carsten</forename>
-                <surname>Trinitis</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexander</forename>
-                <surname>Heinecke</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lamia</forename>
-                <surname>Djoudi</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">HPCS 2012 panels: Panel I: Energy efficient systems in next generation high performance data and compute centers</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laurent</forename>
-                    <surname>Lef&#232;vre</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Vicente</forename>
-                    <surname>Martin</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Miguel</forename>
-                    <surname>Ordonez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Johnatan</forename>
-                    <surname>Pecero</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean-Marc</forename>
-                    <surname>Pierson</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jes&#250;s</forename>
-                    <surname>Carretero</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Pascal</forename>
-                    <surname>Bouvry</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jes&#250;s</forename>
-                    <surname>Labarta</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Reinhard</forename>
-                    <surname>Schneider</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">James</forename>
-                    <surname>Sexton</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mads</forename>
-                    <surname>Nyg&#229;rd</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Gorka</forename>
-                    <surname>Lopez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Maria</forename>
-                    <surname>Mirto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Marco</forename>
-                    <surname>Passante</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Giovanni</forename>
-                    <surname>Aloisio</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Carsten</forename>
-                    <surname>Trinitis</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexander</forename>
-                    <surname>Heinecke</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lamia</forename>
-                    <surname>Djoudi</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2012 International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>2012 International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2012</date>
-                  <settlement>Madrid</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <date type="datePub">2012</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCSim.2012.6266879</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI2 .xml b/xml_files/bdoreauCI2 .xml
deleted file mode 100644
index 271fb433714e7311703ae7bfb4a2f21ad07d3f59..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI2 .xml	
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Petri Nets to OCCAM 2 translation techniques</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">M.</forename>
-                <surname>GOURGAND</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Petri Nets to OCCAM 2 translation techniques</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">M.</forename>
-                    <surname>GOURGAND</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Parallel Distributed and Concurrent Systems 90</title>
-                <meeting>
-                  <title>Parallel Distributed and Concurrent Systems 90</title>
-                  <date type="start">1990</date>
-                  <settlement>New-York</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">319-320</biblScope>
-                  <date type="datePub">1990</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI2.xml b/xml_files/bdoreauCI2.xml
deleted file mode 100644
index bd3e693f7f7173959f6046772f71641180447ede..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI2.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Integrated Simulation Optimization for Layout Problems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Integrated Simulation Optimization for Layout Problems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2018 IEEE International Conference on Industrial Engineering and Engineering Management</title>
-                <meeting>
-                  <title>2018 IEEE International Conference on Industrial Engineering and Engineering Management</title>
-                  <date type="start">2018</date>
-                  <settlement>Bangkok</settlement>
-                  <country key="TH">THAILAND</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">1486--1490</biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/IEEM.2018.8607591</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI20.xml b/xml_files/bdoreauCI20.xml
deleted file mode 100644
index 73fd1cdab2f9e279cd42dbe5c2d566c0a4a1a619..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI20.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">How to correctly deal with pseudorandom numbers in manycore environments: Application to GPU programming with Shoverand</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jonathan</forename>
-                <surname>Passerat-Palmbach</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">How to correctly deal with pseudorandom numbers in manycore environments: Application to GPU programming with Shoverand</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jonathan</forename>
-                    <surname>Passerat-Palmbach</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2012 International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>2012 International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2012</date>
-                  <settlement>Madrid</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">25--31</biblScope>
-                  <date type="datePub">2012</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCSim.2012.6266887</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI24.xml b/xml_files/bdoreauCI24.xml
deleted file mode 100644
index 6e2f8152018d9db9f12f4a07ad22a15ee5f972f6..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI24.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Distribution of Random Streams in Stochastic Models in the Age of Multi-Core and Manycore Processors</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Distribution of Random Streams in Stochastic Models in the Age of Multi-Core and Manycore Processors</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">25th ACM/IEEE/SCS Workshop on Principles of Advanced and Distributed Simulation</title>
-                <meeting>
-                  <title>25th ACM/IEEE/SCS Workshop on Principles of Advanced and Distributed Simulation</title>
-                  <date type="start">2011</date>
-                  <settlement>Nice</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">1</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/PADS.2011.5936759</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI26 .xml b/xml_files/bdoreauCI26 .xml
deleted file mode 100644
index 4c5a37cf99b8348d77f12d9311782178e520ab4d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI26 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Queuing Approximation Method for Capacity Planning of Emergency Department with Time-Varying Demand</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qiang</forename>
-                <surname>Liu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ran</forename>
-                <surname>Liu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Queuing Approximation Method for Capacity Planning of Emergency Department with Time-Varying Demand</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qiang</forename>
-                    <surname>Liu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ran</forename>
-                    <surname>Liu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI26.xml b/xml_files/bdoreauCI26.xml
deleted file mode 100644
index 3ee29f34fe814dab20e5cdce19a3eac3be870029..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI26.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A model-driven software environment for modeling, simulation and analysis of complex systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Luc</forename>
-                <surname>Touraille</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mamadou</forename>
-                <surname>Traor&#233;</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A model-driven software environment for modeling, simulation and analysis of complex systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Luc</forename>
-                    <surname>Touraille</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mamadou</forename>
-                    <surname>Traor&#233;</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2011 Spring Simulation Multi-conference</title>
-                <meeting>
-                  <title>2011 Spring Simulation Multi-conference</title>
-                  <date type="start">2011</date>
-                  <settlement>Boston</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">229--237</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI27 .xml b/xml_files/bdoreauCI27 .xml
deleted file mode 100644
index 9a01e5551dc182b1910251f7a9f94619ed10b137..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI27 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Markov Decision Process Model for Elective Inpatient Admission with Delay Announcement</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Yuwei</forename>
-                <surname>Lu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zhibin</forename>
-                <surname>Jiang</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Markov Decision Process Model for Elective Inpatient Admission with Delay Announcement</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Yuwei</forename>
-                    <surname>Lu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zhibin</forename>
-                    <surname>Jiang</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI27.xml b/xml_files/bdoreauCI27.xml
deleted file mode 100644
index 33a7949ad4d935acf79d3068dd51a7cabf8439c3..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI27.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">What is new with the activity world view in modeling and simulation?: using activity as a unifying guide for modeling and simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexandre</forename>
-                <surname>Muzy</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">What is new with the activity world view in modeling and simulation?: using activity as a unifying guide for modeling and simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexandre</forename>
-                    <surname>Muzy</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Winter Simulation Conference 2011</title>
-                <meeting>
-                  <title>Winter Simulation Conference 2011</title>
-                  <date type="start">2011</date>
-                  <settlement>Phoenix</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">2887--2899</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/WSC.2011.6147991</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI28 .xml b/xml_files/bdoreauCI28 .xml
deleted file mode 100644
index 6ce5a74c56a2b5648ce1bf8ca1a36222f38afb84..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI28 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Queuing Approach for Radiotherapy Treatment Capacity Planning</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Siqiao</forename>
-                <surname>Li</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Na</forename>
-                <surname>Geng</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Queuing Approach for Radiotherapy Treatment Capacity Planning</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Siqiao</forename>
-                    <surname>Li</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Na</forename>
-                    <surname>Geng</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI28.xml b/xml_files/bdoreauCI28.xml
deleted file mode 100644
index 3270fa222d2c4347cf85b0ceb4917b6ed1ebf766..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI28.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Practical distribution of random streams for stochastic High Performance Computing</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Practical distribution of random streams for stochastic High Performance Computing</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 2010 International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>Proceedings of the 2010 International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2010</date>
-                  <settlement>Caen</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">1--8</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCS.2010.5547156</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI29.xml b/xml_files/bdoreauCI29.xml
deleted file mode 100644
index 9a66e668cbecf84a6ec51179e4be249b3a94f089..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI29.xml
+++ /dev/null
@@ -1,129 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Declarative task delegation in OpenMOLE</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Romain</forename>
-                <surname>Reuillon</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Florent</forename>
-                <surname>Chuffart</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mathieu</forename>
-                <surname>Leclaire</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Thierry</forename>
-                <surname>Faure</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Nicolas</forename>
-                <surname>Dumoulin</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Declarative task delegation in OpenMOLE</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Romain</forename>
-                    <surname>Reuillon</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Florent</forename>
-                    <surname>Chuffart</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mathieu</forename>
-                    <surname>Leclaire</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Thierry</forename>
-                    <surname>Faure</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Nicolas</forename>
-                    <surname>Dumoulin</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 2010 International Conference on High Performance Computing &amp; Simulation</title>
-                <meeting>
-                  <title>Proceedings of the 2010 International Conference on High Performance Computing &amp; Simulation</title>
-                  <date type="start">2010</date>
-                  <settlement>Caen</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">55--62</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/HPCS.2010.5547155</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI3 .xml b/xml_files/bdoreauCI3 .xml
deleted file mode 100644
index 5b83ed40a23180d70809fba5ee292097687f93b8..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI3 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Petri Net Simulation and Animation in a Graphical Object-Oriented Environment</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">C.</forename>
-                <surname>CAUX</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">M.</forename>
-                <surname>GOURGAND</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Petri Net Simulation and Animation in a Graphical Object-Oriented Environment</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">C.</forename>
-                    <surname>CAUX</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">M.</forename>
-                    <surname>GOURGAND</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Parallel and Distributed Sytems Conference 91</title>
-                <meeting>
-                  <title>Parallel and Distributed Sytems Conference 91</title>
-                  <date type="start">1991</date>
-                  <settlement>Trani</settlement>
-                  <country key="IT">ITALIE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">359-362</biblScope>
-                  <date type="datePub">1991</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI3.xml b/xml_files/bdoreauCI3.xml
deleted file mode 100644
index 072f70f00d5be5a676b3f9394e773a85e7899d7e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI3.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dealing with Capacitated Aisles in Facility Layout: A Simulation Optimization Approach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Hani</forename>
-                <surname>Pourvaziri</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dealing with Capacitated Aisles in Facility Layout: A Simulation Optimization Approach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Hani</forename>
-                    <surname>Pourvaziri</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">International Joint Conference SOCO'18-CISIS'18-ICEUTE'18 -</title>
-                <meeting>
-                  <title>International Joint Conference SOCO'18-CISIS'18-ICEUTE'18 -</title>
-                  <date type="start">2018</date>
-                  <settlement>San Sebasti&#225;n</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">260--269</biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1007/978-3-319-94120-2_25</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI30 .xml b/xml_files/bdoreauCI30 .xml
deleted file mode 100644
index c5394e11c7e149afc588e56de289b9b874ce71e7..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI30 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Simulation-Based Surgery Appointment Sequencing and Scheduling of Multiple Operating Rooms</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zheng</forename>
-                <surname>Zhang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Na</forename>
-                <surname>Geng</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Simulation-Based Surgery Appointment Sequencing and Scheduling of Multiple Operating Rooms</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zheng</forename>
-                    <surname>Zhang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Na</forename>
-                    <surname>Geng</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI30.xml b/xml_files/bdoreauCI30.xml
deleted file mode 100644
index 43cd1acb0c4afe2c78d115154a9ab81dafa31247..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI30.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Hash-life algorithm on 3D excitable medium application to integrative biology</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jonathan</forename>
-                <surname>Caux</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Pridi</forename>
-                <surname>Siregar</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Hash-life algorithm on 3D excitable medium application to integrative biology</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jonathan</forename>
-                    <surname>Caux</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Pridi</forename>
-                    <surname>Siregar</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">SummerSim '10 - 2010 Summer Simulation Multiconference</title>
-                <meeting>
-                  <title>SummerSim '10 - 2010 Summer Simulation Multiconference</title>
-                  <date type="start">2010</date>
-                  <settlement>Ottawa</settlement>
-                  <country key="CA">CANADA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">387--393</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI31 .xml b/xml_files/bdoreauCI31 .xml
deleted file mode 100644
index 15a3be5708dca9919a7d72d0b68cf1e72be4ca51..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI31 .xml	
+++ /dev/null
@@ -1,116 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">EV Charging Load Scheduling Following Uncertain Renewable Energy Supply by Stochastic Matching</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qilong</forename>
-                <surname>Huang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qingshan</forename>
-                <surname>Jia</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaohong</forename>
-                <surname>Guan</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">EV Charging Load Scheduling Following Uncertain Renewable Energy Supply by Stochastic Matching</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qilong</forename>
-                    <surname>Huang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qingshan</forename>
-                    <surname>Jia</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaohong</forename>
-                    <surname>Guan</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI31.xml b/xml_files/bdoreauCI31.xml
deleted file mode 100644
index 142860b2194dfb2b32fa5f19431e45fce2607cdc..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI31.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Enhancing DEVS simulation through template metaprogramming: DEVS-MetaSimulator</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Luc</forename>
-                <surname>Touraille</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mamadou</forename>
-                <surname>Traor&#233;</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Enhancing DEVS simulation through template metaprogramming: DEVS-MetaSimulator</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Luc</forename>
-                    <surname>Touraille</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mamadou</forename>
-                    <surname>Traor&#233;</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">SummerSim '10 - 2010 Summer Simulation Multiconference</title>
-                <meeting>
-                  <title>SummerSim '10 - 2010 Summer Simulation Multiconference</title>
-                  <date type="start">2010</date>
-                  <settlement>Ottawa</settlement>
-                  <country key="CA">CANADA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">394--402</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI32 .xml b/xml_files/bdoreauCI32 .xml
deleted file mode 100644
index 15a3be5708dca9919a7d72d0b68cf1e72be4ca51..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI32 .xml	
+++ /dev/null
@@ -1,116 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">EV Charging Load Scheduling Following Uncertain Renewable Energy Supply by Stochastic Matching</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qilong</forename>
-                <surname>Huang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qingshan</forename>
-                <surname>Jia</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaohong</forename>
-                <surname>Guan</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">EV Charging Load Scheduling Following Uncertain Renewable Energy Supply by Stochastic Matching</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qilong</forename>
-                    <surname>Huang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qingshan</forename>
-                    <surname>Jia</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaohong</forename>
-                    <surname>Guan</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI32.xml b/xml_files/bdoreauCI32.xml
deleted file mode 100644
index be1fc7985ccaa53e8059c2d13b7199f851e46550..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI32.xml
+++ /dev/null
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Activity regions for the specification of discrete event systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexandre</forename>
-                <surname>Muzy</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Luc</forename>
-                <surname>Touraille</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Hans</forename>
-                <surname>Vangheluwe</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Olivier</forename>
-                <surname>Michel</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mamadou</forename>
-                <surname>Traor&#233;</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Activity regions for the specification of discrete event systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexandre</forename>
-                    <surname>Muzy</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Luc</forename>
-                    <surname>Touraille</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Hans</forename>
-                    <surname>Vangheluwe</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Olivier</forename>
-                    <surname>Michel</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mamadou</forename>
-                    <surname>Traor&#233;</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 2010 Spring Simulation Multiconference</title>
-                <meeting>
-                  <title>Proceedings of the 2010 Spring Simulation Multiconference</title>
-                  <date type="start">2010</date>
-                  <settlement>Orlando</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">136</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI33 .xml b/xml_files/bdoreauCI33 .xml
deleted file mode 100644
index efb5260206a0c91deb70be54faf322188391f7b3..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI33 .xml	
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A New Method to Solve Large-Scale Building Energy Management for Energy Saving</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zhanba</forename>
-                <surname>Xu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qingshan</forename>
-                <surname>Jia</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaohong</forename>
-                <surname>Guan</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A New Method to Solve Large-Scale Building Energy Management for Energy Saving</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zhanba</forename>
-                    <surname>Xu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qingshan</forename>
-                    <surname>Jia</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaohong</forename>
-                    <surname>Guan</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI34 .xml b/xml_files/bdoreauCI34 .xml
deleted file mode 100644
index c582b584d5356f38c28cc5ba7d3d25f31c3d8480..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI34 .xml	
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Dual-Infrared Sensing System for Occupant Distribution Estimation in Buildings</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zhenning</forename>
-                <surname>Lang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Qingshan</forename>
-                <surname>Jia</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Yulin</forename>
-                <surname>Lei</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Dual-Infrared Sensing System for Occupant Distribution Estimation in Buildings</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zhenning</forename>
-                    <surname>Lang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Qingshan</forename>
-                    <surname>Jia</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Yulin</forename>
-                    <surname>Lei</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                <meeting>
-                  <title>Proc. IEEE Conf. Automation Science &amp; Engineering (CASE'14)</title>
-                  <date type="start">2014</date>
-                  <settlement>Taipei</settlement>
-                  <country key="TW">Taiwan</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI34.xml b/xml_files/bdoreauCI34.xml
deleted file mode 100644
index 0e6440af4535f9f4d3f5a57a50ac19a1a8068682..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI34.xml
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A mark-up language for the storage, retrieval, sharing and interoperability of DEVS models</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Luc</forename>
-                <surname>Touraille</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mamadou</forename>
-                <surname>Traor&#233;</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A mark-up language for the storage, retrieval, sharing and interoperability of DEVS models</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Luc</forename>
-                    <surname>Touraille</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mamadou</forename>
-                    <surname>Traor&#233;</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 2009 Spring Simulation Multiconference</title>
-                <meeting>
-                  <title>Proceedings of the 2009 Spring Simulation Multiconference</title>
-                  <date type="start">2009</date>
-                  <settlement>San Diego</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <date type="datePub">2009</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI35.xml b/xml_files/bdoreauCI35.xml
deleted file mode 100644
index 619c54e78d375a20d6e1cef8b029ea367a0ad1ba..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI35.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A post-processed 3D visualization tool for forest fire simulations</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexandre</forename>
-                <surname>Muzy</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mathieu</forename>
-                <surname>Joubert</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Eric</forename>
-                <surname>Innocenti</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A post-processed 3D visualization tool for forest fire simulations</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexandre</forename>
-                    <surname>Muzy</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mathieu</forename>
-                    <surname>Joubert</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Eric</forename>
-                    <surname>Innocenti</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the 1st International Conference on Simulation Tools and Techniques for Communications</title>
-                <meeting>
-                  <title>Proceedings of the 1st International Conference on Simulation Tools and Techniques for Communications</title>
-                  <date type="start">2008</date>
-                  <settlement>Marseille</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">41</biblScope>
-                  <date type="datePub">2008</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.4108/ICST.SIMUTOOLS2008.3028</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI36 .xml b/xml_files/bdoreauCI36 .xml
deleted file mode 100644
index f2b066d0fba23d6b4cdc0bd395e7597925329af7..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI36 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Evaluation de l'impact des Syst&#232;mes d'Information de Sant&#233; sur la communication ville-h&#244;pital: Revue de la litt&#233;rature</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sabri</forename>
-                <surname>Hamana</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Vincent</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Evaluation de l'impact des Syst&#232;mes d'Information de Sant&#233; sur la communication ville-h&#244;pital: Revue de la litt&#233;rature</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sabri</forename>
-                    <surname>Hamana</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Vincent</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. GISEH</title>
-                <meeting>
-                  <title>Proc. GISEH</title>
-                  <date type="start">2014</date>
-                  <settlement>Liege</settlement>
-                  <country key="BE">Belgique</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI37.xml b/xml_files/bdoreauCI37.xml
deleted file mode 100644
index a0b1e2d5614914ec4da990f2d1471186be876455..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI37.xml
+++ /dev/null
@@ -1,104 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">DistMe: A Java Based Toolbox for the Distribution of Parallel Monte Carlo Simulations. Application to Nuclear Medicine Using the GATE Simulation Package</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Romain</forename>
-                <surname>Reuillon</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ziad</forename>
-                <surname>Bitar</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Vincent</forename>
-                <surname>Breton</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">DistMe: A Java Based Toolbox for the Distribution of Parallel Monte Carlo Simulations. Application to Nuclear Medicine Using the GATE Simulation Package</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Romain</forename>
-                    <surname>Reuillon</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ziad</forename>
-                    <surname>Bitar</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Vincent</forename>
-                    <surname>Breton</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings of the International Conference on Parallel and Distributed Processing Techniques and Applications</title>
-                <meeting>
-                  <title>Proceedings of the International Conference on Parallel and Distributed Processing Techniques and Applications</title>
-                  <date type="start">2007</date>
-                  <settlement>Las Vegas</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">122--127</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI39 .xml b/xml_files/bdoreauCI39 .xml
deleted file mode 100644
index c1a5515b2a65a42f87f441461f9a0a6e14be1f85..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI39 .xml	
+++ /dev/null
@@ -1,138 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Performance evaluation of health information systems using aris modeling and discrete-event simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">V.</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">O.</forename>
-                <surname>Rejeb</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">S.</forename>
-                <surname>Aloui</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">L.</forename>
-                <surname>Perrier</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>Biron</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">T.</forename>
-                <surname>Durand</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Performance evaluation of health information systems using aris modeling and discrete-event simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">V.</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">O.</forename>
-                    <surname>Rejeb</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">S.</forename>
-                    <surname>Aloui</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">L.</forename>
-                    <surname>Perrier</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>Biron</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">T.</forename>
-                    <surname>Durand</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Pro. Winter Simulation Conference</title>
-                <meeting>
-                  <title>Pro. Winter Simulation Conference</title>
-                  <date type="start">2015</date>
-                  <settlement>Huntington-Beach</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI4 .xml b/xml_files/bdoreauCI4 .xml
deleted file mode 100644
index e5e17aa1fd6910df85312e9b4f3403b7f301e4c5..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI4 .xml	
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">GAME: An O-O Approach to Computer Animation and Flexible Manufacturing System Modelling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">D</forename>
-                <surname>BREUGNOT</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">M</forename>
-                <surname>GOURGAND</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>KELLERT</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">GAME: An O-O Approach to Computer Animation and Flexible Manufacturing System Modelling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">D</forename>
-                    <surname>BREUGNOT</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">M</forename>
-                    <surname>GOURGAND</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>KELLERT</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">In Proceedings of the 24th Annual Simulation Symposium IEEE / SCS / ACM</title>
-                <meeting>
-                  <title>In Proceedings of the 24th Annual Simulation Symposium IEEE / SCS / ACM</title>
-                  <date type="start">1991</date>
-                  <settlement>New-Orleans</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">217-227</biblScope>
-                  <date type="datePub">1991</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI4.xml b/xml_files/bdoreauCI4.xml
deleted file mode 100644
index 808d5f3def6e19cccece5ec53eaf529dd63038fa..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI4.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Handling Qualitative Aspects in Unequal Area Facility Layout Problem: A Novel Multi-Criteria Decision-Making Model</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hern&#225;ndez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Handling Qualitative Aspects in Unequal Area Facility Layout Problem: A Novel Multi-Criteria Decision-Making Model</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hern&#225;ndez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">New Trends in Intelligent Software Methodologies</title>
-                <meeting>
-                  <title>New Trends in Intelligent Software Methodologies</title>
-                  <date type="start">2018</date>
-                  <settlement>Granada</settlement>
-                  <country key="ES">SPAIN</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">386--394</biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.3233/978-1-61499-900-3-386</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI40 .xml b/xml_files/bdoreauCI40 .xml
deleted file mode 100644
index aaaac61481f7dd3cca2636135a109b16c76c0830..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI40 .xml	
+++ /dev/null
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Performance evaluation of an integrated care for geriatric departments using discrete-event simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">T.</forename>
-                <surname>Franck</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">V.</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">R.</forename>
-                <surname>Gonthier</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">E.</forename>
-                <surname>Achour</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Performance evaluation of an integrated care for geriatric departments using discrete-event simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">T.</forename>
-                    <surname>Franck</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">V.</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">R.</forename>
-                    <surname>Gonthier</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">E.</forename>
-                    <surname>Achour</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Pro. Winter Simulation Conference</title>
-                <meeting>
-                  <title>Pro. Winter Simulation Conference</title>
-                  <date type="start">2015</date>
-                  <settlement>Huntington-Beach</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI41.xml b/xml_files/bdoreauCI41.xml
deleted file mode 100644
index 1d07ed79f614a82ef598336a12cf11f5a189254a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI41.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Nouveaux d&#233;fis pour les simulations et les syst&#232;mes multi-agents</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Nouveaux d&#233;fis pour les simulations et les syst&#232;mes multi-agents</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Syst&#232;mes multi-agents et syst&#232;mes complexes : ing&#233;nierie</title>
-                <meeting>
-                  <title>Syst&#232;mes multi-agents et syst&#232;mes complexes : ing&#233;nierie</title>
-                  <date type="start">2002</date>
-                  <settlement>Lille</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">13--14</biblScope>
-                  <date type="datePub">2002</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI42 .xml b/xml_files/bdoreauCI42 .xml
deleted file mode 100644
index 771393054c2c3a3cc0698247009e81c0755dfd61..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI42 .xml	
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Evaluation of Discovered Clinical Pathways using Process Mining and Joint Agent-Base Discrete-Event Simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Martin</forename>
-                <surname>Prodel</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Vincent</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Baptiste</forename>
-                <surname>Jouaneton</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Evaluation of Discovered Clinical Pathways using Process Mining and Joint Agent-Base Discrete-Event Simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Martin</forename>
-                    <surname>Prodel</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Vincent</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Baptiste</forename>
-                    <surname>Jouaneton</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proc. Winter Simulation Conference</title>
-                <meeting>
-                  <title>Proc. Winter Simulation Conference</title>
-                  <date type="start">2016</date>
-                  <settlement>Washington</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2016</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI42.xml b/xml_files/bdoreauCI42.xml
deleted file mode 100644
index 91057cafc753502c549abfeedb41d0ab989c3095..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI42.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Modelling Spatial Memory of Sheep at Pasture with Multi-Agents and UML</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">B.</forename>
-                <surname>Dumont</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">C.</forename>
-                <surname>Roux</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Modelling Spatial Memory of Sheep at Pasture with Multi-Agents and UML</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">B.</forename>
-                    <surname>Dumont</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">C.</forename>
-                    <surname>Roux</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">12\(^\mboxth\) European Simulation Multiconference - Simulation - Past</title>
-                <meeting>
-                  <title>12\(^\mboxth\) European Simulation Multiconference - Simulation - Past</title>
-                  <date type="start">1998</date>
-                  <settlement>Manchester</settlement>
-                  <country key="GB">UNITED KINGDOM</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">348--352</biblScope>
-                  <date type="datePub">1998</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI43.xml b/xml_files/bdoreauCI43.xml
deleted file mode 100644
index 8eec57c333b6cd2a6e9b459099ae617b82b64571..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI43.xml
+++ /dev/null
@@ -1,104 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Stochastic Model with Spatial Constraints: Simulation of \emphCaulerpa Taxifolia Development in the North-Mediterranean Sea</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Patrick</forename>
-                <surname>Coquillard</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Vaugelas</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexandre</forename>
-                <surname>Meinez</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Stochastic Model with Spatial Constraints: Simulation of \emphCaulerpa Taxifolia Development in the North-Mediterranean Sea</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Patrick</forename>
-                    <surname>Coquillard</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Vaugelas</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexandre</forename>
-                    <surname>Meinez</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">EUROSIM'96</title>
-                <meeting>
-                  <title>EUROSIM'96</title>
-                  <date type="start">1995</date>
-                  <settlement>Vienna</settlement>
-                  <country key="AT">AUSTRIA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">999--1004</biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI44.xml b/xml_files/bdoreauCI44.xml
deleted file mode 100644
index 48d0035e1dc566c929912500bf326f5fec045008..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI44.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A specification and validation method to improve concurrent systems reliability based on object messaging and rewriting logic</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ammar</forename>
-                <surname>Attoui</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A specification and validation method to improve concurrent systems reliability based on object messaging and rewriting logic</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ammar</forename>
-                    <surname>Attoui</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Sixth International Symposium on Software Reliability Engineering</title>
-                <meeting>
-                  <title>Sixth International Symposium on Software Reliability Engineering</title>
-                  <date type="start">1995</date>
-                  <settlement>Toulouse</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">387--392</biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/ISSRE.1995.497682</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI45.xml b/xml_files/bdoreauCI45.xml
deleted file mode 100644
index ba417d7ec6f784a5d8137d1a5cc8c160c3b41f7d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI45.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">O-O Modeling for Flexible Manufacturing Systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">O-O Modeling for Flexible Manufacturing Systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">TOOLS 1994: 13th International Conference on Technology of Object-Oriented Languages and Systems</title>
-                <meeting>
-                  <title>TOOLS 1994: 13th International Conference on Technology of Object-Oriented Languages and Systems</title>
-                  <date type="start">1994</date>
-                  <settlement>Versailles</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">521</biblScope>
-                  <date type="datePub">1994</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI46.xml b/xml_files/bdoreauCI46.xml
deleted file mode 100644
index b20d266c15fac5883730760cba2363b8155cb78f..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI46.xml
+++ /dev/null
@@ -1,93 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Object-oriented Simulation Animation Builder</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Michel</forename>
-                <surname>Gourgand</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Patrick</forename>
-                <surname>Kellert</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Object-oriented Simulation Animation Builder</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Michel</forename>
-                    <surname>Gourgand</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Patrick</forename>
-                    <surname>Kellert</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings 26th Annual Simulation Symposium</title>
-                <meeting>
-                  <title>Proceedings 26th Annual Simulation Symposium</title>
-                  <date type="start">1993</date>
-                  <settlement>Arlington</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">237--246</biblScope>
-                  <date type="datePub">1993</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/SIMSYM.1993.639140</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI47.xml b/xml_files/bdoreauCI47.xml
deleted file mode 100644
index 2742b196bcca3a5a4162ffd691e353952836d544..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI47.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Multi-Domain Tool for Object-Oriented Simulation Animation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Michel</forename>
-                <surname>Gourgand</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Multi-Domain Tool for Object-Oriented Simulation Animation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Michel</forename>
-                    <surname>Gourgand</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">TOOLS 1993: 10th International Conference on Technology of Object-Oriented Languages and Systems</title>
-                <meeting>
-                  <title>TOOLS 1993: 10th International Conference on Technology of Object-Oriented Languages and Systems</title>
-                  <date type="start">1993</date>
-                  <settlement>Versailles</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">181--195</biblScope>
-                  <date type="datePub">1993</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI48.xml b/xml_files/bdoreauCI48.xml
deleted file mode 100644
index eb8aa910c6e6770f00b07b0af3b7196900d3cdfe..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI48.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">GAME: an object-oriented approach to computer animation in flexible manufacturing system modelling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Daniel</forename>
-                <surname>Breugnot</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Michel</forename>
-                <surname>Gourgand</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Patrick</forename>
-                <surname>Kellert</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">GAME: an object-oriented approach to computer animation in flexible manufacturing system modelling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Daniel</forename>
-                    <surname>Breugnot</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Michel</forename>
-                    <surname>Gourgand</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Patrick</forename>
-                    <surname>Kellert</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Proceedings 24th Annual Simulation Symposium (ANSS-24 1991)</title>
-                <meeting>
-                  <title>Proceedings 24th Annual Simulation Symposium (ANSS-24 1991)</title>
-                  <date type="start">1991</date>
-                  <settlement>New Orleans</settlement>
-                  <country key="US">USA</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">217--227</biblScope>
-                  <date type="datePub">1991</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/SIMSYM.1991.151508</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI5.xml b/xml_files/bdoreauCI5.xml
deleted file mode 100644
index d4fa15ecf535ec4b40f392c1149d3b2e4ed25296..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI5.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dealing with Variations for a Supplier Selection Problem in a Flexible Supply Chain - A Dynamic Optimization Approach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Akram</forename>
-                <surname>Chibani</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xavier</forename>
-                <surname>Delorme</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alexandre</forename>
-                <surname>Dolgui</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dealing with Variations for a Supplier Selection Problem in a Flexible Supply Chain - A Dynamic Optimization Approach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Akram</forename>
-                    <surname>Chibani</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xavier</forename>
-                    <surname>Delorme</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alexandre</forename>
-                    <surname>Dolgui</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">ICORES 2014 - Proceedings of the 3rd International Conference on Operations Research and Enterprise Systems</title>
-                <meeting>
-                  <title>ICORES 2014 - Proceedings of the 3rd International Conference on Operations Research and Enterprise Systems</title>
-                  <date type="start">2014</date>
-                  <settlement>Angers</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">322--327</biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.5220/0004924603220327</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI6.xml b/xml_files/bdoreauCI6.xml
deleted file mode 100644
index 6a9c6f4fffc34d0b5c1482e8a9d77fadf019a22e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI6.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An approach based on simulation optimization and AHP to support collaborative design: With an application to supply chains</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ahlem</forename>
-                <surname>Baccouche</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sel&#231;uk</forename>
-                <surname>G&#246;ren</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Anne-Lise</forename>
-                <surname>Huyet</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An approach based on simulation optimization and AHP to support collaborative design: With an application to supply chains</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ahlem</forename>
-                    <surname>Baccouche</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sel&#231;uk</forename>
-                    <surname>G&#246;ren</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Anne-Lise</forename>
-                    <surname>Huyet</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">2011 IEEE Workshop On Computational Intelligence In Production And Logistics Systems</title>
-                <meeting>
-                  <title>2011 IEEE Workshop On Computational Intelligence In Production And Logistics Systems</title>
-                  <date type="start">2011</date>
-                  <settlement>Paris</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">53--59</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/CIPLS.2011.5953360</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI7.xml b/xml_files/bdoreauCI7.xml
deleted file mode 100644
index 987e5f1d8ca609a23023fe50f8f352470e310a39..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI7.xml
+++ /dev/null
@@ -1,93 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Using ontologies to capture and structure knowledge about disruptions in manufacturing systems: An immune driven approach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Saber</forename>
-                <surname>Darmoul</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Using ontologies to capture and structure knowledge about disruptions in manufacturing systems: An immune driven approach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Saber</forename>
-                    <surname>Darmoul</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">IEEE 16th Conference on Emerging Technologies &amp; Factory Automation</title>
-                <meeting>
-                  <title>IEEE 16th Conference on Emerging Technologies &amp; Factory Automation</title>
-                  <date type="start">2011</date>
-                  <settlement>Toulouse</settlement>
-                  <country key="FR">FRANCE</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">1--7</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/ETFA.2011.6059033</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI8.xml b/xml_files/bdoreauCI8.xml
deleted file mode 100644
index 9f835e66e0dad7f2f170d225bb8af09129599d05..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI8.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An Interactive Genetic Algorithm with c-Means clustering for the Unequal Area Facility Layout Problem</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hernandez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An Interactive Genetic Algorithm with c-Means clustering for the Unequal Area Facility Layout Problem</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hernandez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">10th International Conference on Intelligent Systems Design and Applications</title>
-                <meeting>
-                  <title>10th International Conference on Intelligent Systems Design and Applications</title>
-                  <date type="start">2010</date>
-                  <settlement>Cairo</settlement>
-                  <country key="EG">EGYPT</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">61--66</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/ISDA.2010.5687291</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCI9.xml b/xml_files/bdoreauCI9.xml
deleted file mode 100644
index deb40c724330497be417e6c08992e7e994430a5d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCI9.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Encoding Structures and Operators Used in Facility Layout Problems with Genetic Algorithms</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hernandez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Encoding Structures and Operators Used in Facility Layout Problems with Genetic Algorithms</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hernandez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Ninth International Conference on Intelligent Systems Design and Applications</title>
-                <meeting>
-                  <title>Ninth International Conference on Intelligent Systems Design and Applications</title>
-                  <date type="start">2009</date>
-                  <settlement>Pisa</settlement>
-                  <country key="IT">ITALY</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="pp">43--48</biblScope>
-                  <date type="datePub">2009</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/ISDA.2009.206</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCN1 .xml b/xml_files/bdoreauCN1 .xml
deleted file mode 100644
index c96a1711f97a8dc08d6ae499b2f500d8e69dd402..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCN1 .xml	
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="fr">Environnement orient&#233; objet d&#8217;animation de simulation de syst&#232;mes de production sur station de travail Unix</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">M.</forename>
-                <surname>GOURGAND</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>KELLERT</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>TOURRON</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="fr">Environnement orient&#233; objet d&#8217;animation de simulation de syst&#232;mes de production sur station de travail Unix</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">M.</forename>
-                    <surname>GOURGAND</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>KELLERT</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>TOURRON</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Actes d&#8217;Interface des mondes r&#233;els et virtuels</title>
-                <meeting>
-                  <title>Actes d&#8217;Interface des mondes r&#233;els et virtuels</title>
-                  <date type="start">1991</date>
-                  <settlement>Montpellier</settlement>
-                  <country key="FR">France</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">423-435</biblScope>
-                  <date type="datePub">1991</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="fr"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCN2 .xml b/xml_files/bdoreauCN2 .xml
deleted file mode 100644
index 696e6ab4835a969d747e4023f4037ef92603787d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCN2 .xml	
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="fr">Etude de quelques concepts pour une analyse et une conception par objets</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="fr">Etude de quelques concepts pour une analyse et une conception par objets</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Actes du Congr&#232;s INFORSID</title>
-                <meeting>
-                  <title>Actes du Congr&#232;s INFORSID</title>
-                  <date type="start">1992</date>
-                  <settlement>Clermont-Ferrand</settlement>
-                  <country key="FR">France</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">307-326</biblScope>
-                  <date type="datePub">1992</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="fr"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COMM"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCO1 .xml b/xml_files/bdoreauCO1 .xml
deleted file mode 100644
index 453d7b291f3aee4d3d27561c8ffa1503ca85e11a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCO1 .xml	
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Model synthesis, planning, scheduling and simulation of health care delivery systems using Petri nets</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">V.</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Model synthesis, planning, scheduling and simulation of health care delivery systems using Petri nets</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">V.</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title/>
-                <title level="m">Formal Methods in Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COUV"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauCO3 .xml b/xml_files/bdoreauCO3 .xml
deleted file mode 100644
index 8893a6178a891265a2c8baa6d52bde4c98dd167f..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauCO3 .xml	
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Ecological Modelling and Simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Ecological Modelling and Simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title/>
-                <title level="m">Handbook of Dynamic System Modeling</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">29-1</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="COUV"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauO1 .xml b/xml_files/bdoreauO1 .xml
deleted file mode 100644
index 9ee0e14bd75fcc10af714e88419b732d3ceef259..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauO1 .xml	
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Formal Methods in Manufacturing</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>Campos</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">C.</forename>
-                <surname>Seatzu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Formal Methods in Manufacturing</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>Campos</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">C.</forename>
-                    <surname>Seatzu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title/>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="OUV"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauO1.xml b/xml_files/bdoreauO1.xml
deleted file mode 100644
index 69f388d90829ee878c6b83e5396c9e36fdc7b838..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauO1.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Handbook of Dynamic System Modeling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Handbook of Dynamic System Modeling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title/>
-                <imprint>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1201/9781420010855</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="OUV"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauP1 .xml b/xml_files/bdoreauP1 .xml
deleted file mode 100644
index 09a3e0e753697d175d25464a7ffda69d355eca3f..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauP1 .xml	
+++ /dev/null
@@ -1,126 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Sustainable herbivores production and ecological land use in mountains areas a multidiciplinary approach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Y.</forename>
-                <surname>MICHELIN</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">G.</forename>
-                <surname>L'HOMME</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>LOISEAU</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">D.</forename>
-                <surname>MICOL</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Sustainable herbivores production and ecological land use in mountains areas a multidiciplinary approach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Y.</forename>
-                    <surname>MICHELIN</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">G.</forename>
-                    <surname>L'HOMME</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>LOISEAU</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">D.</forename>
-                    <surname>MICOL</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">IV International Symposium on the Nutrition of Herbivores</title>
-                <meeting>
-                  <title>IV International Symposium on the Nutrition of Herbivores</title>
-                  <date type="start">1995</date>
-                  <settlement>Clermont-Ferrand</settlement>
-                  <country key="FR">France</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="POSTER"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauP2 .xml b/xml_files/bdoreauP2 .xml
deleted file mode 100644
index 03a22865e00f3161cd275267e3f601b18971b5c1..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauP2 .xml	
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Object-Oriented Modelling for Forest Growth Simulation Environments</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>GUEUGNOT</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Object-Oriented Modelling for Forest Growth Simulation Environments</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>GUEUGNOT</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="m">Object Technology 95</title>
-                <meeting>
-                  <title>Object Technology 95</title>
-                  <date type="start">1995</date>
-                  <settlement>Oxford</settlement>
-                  <country key="GB">Royaume-Uni</country>
-                </meeting>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="POSTER"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI1 .xml b/xml_files/bdoreauRI1 .xml
deleted file mode 100644
index 26a58cf2df165c51db4b516a9fc105420c0593a1..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI1 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Object-oriented Simulation of Scots Pine Growth interactions</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Object-oriented Simulation of Scots Pine Growth interactions</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">in J. McLeod Simulation in the Service of Society</title>
-                <imprint>
-                  <biblScope unit="volume">65</biblScope>
-                  <biblScope unit="pp">917-923)</biblScope>
-                  <date type="datePub">1995</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI1.xml b/xml_files/bdoreauRI1.xml
deleted file mode 100644
index a581bf156875608c9c63cd1e431c25c915ef1071..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI1.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Adaptive smart card-based pull control systems in context-aware manufacturing systems: Training a neural network through multi-objective simulation optimization</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Nesrine</forename>
-                <surname>Azouz</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Adaptive smart card-based pull control systems in context-aware manufacturing systems: Training a neural network through multi-objective simulation optimization</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Nesrine</forename>
-                    <surname>Azouz</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Appl. Soft Comput.</title>
-                <imprint>
-                  <biblScope unit="volume">75</biblScope>
-                  <biblScope unit="pp">46--57</biblScope>
-                  <date type="datePub">2019</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.asoc.2018.10.051</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI10.xml b/xml_files/bdoreauRI10.xml
deleted file mode 100644
index c415499944a26f84c117d110c949b72ebfeec57e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI10.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Cooperative networks games with elastic demands</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alain</forename>
-                <surname>Quilliot</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Cooperative networks games with elastic demands</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alain</forename>
-                    <surname>Quilliot</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">RAIRO - Operations Research</title>
-                <imprint>
-                  <biblScope unit="volume">41</biblScope>
-                  <biblScope unit="pp">345--360</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1051/ro:2007034</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI11.xml b/xml_files/bdoreauRI11.xml
deleted file mode 100644
index d54057289619f487e06e256e9fc759c19e487878..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI11.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Simulation-optimization of complex systems: Methods and applications</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Gabriella</forename>
-                <surname>Dellino</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Carlo</forename>
-                <surname>Meloni</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Simulation-optimization of complex systems: Methods and applications</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Gabriella</forename>
-                    <surname>Dellino</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Carlo</forename>
-                    <surname>Meloni</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation Modelling Practice and Theory</title>
-                <imprint>
-                  <biblScope unit="volume">46</biblScope>
-                  <biblScope unit="pp">1--3</biblScope>
-                  <date type="datePub">2014</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.simpat.2014.05.001</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI12.xml b/xml_files/bdoreauRI12.xml
deleted file mode 100644
index 9a6c8a912a720c8882fa60983a9bc22428c70155..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI12.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Handling qualitative aspects in Unequal Area Facility Layout Problem: An Interactive Genetic Algorithm</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hern&#225;ndez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Handling qualitative aspects in Unequal Area Facility Layout Problem: An Interactive Genetic Algorithm</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hern&#225;ndez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Appl. Soft Comput.</title>
-                <imprint>
-                  <biblScope unit="volume">13</biblScope>
-                  <biblScope unit="pp">1718--1727</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.asoc.2013.01.003</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI13.xml b/xml_files/bdoreauRI13.xml
deleted file mode 100644
index f55b340cf49ed8624705ff247f7169cd224e7a8d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI13.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Taking advantage of a diverse set of efficient production schedules: A two-step approach for scheduling with side concerns</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sel&#231;uk</forename>
-                <surname>G&#246;ren</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Taking advantage of a diverse set of efficient production schedules: A two-step approach for scheduling with side concerns</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sel&#231;uk</forename>
-                    <surname>G&#246;ren</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Computers &amp; OR</title>
-                <imprint>
-                  <biblScope unit="volume">40</biblScope>
-                  <biblScope unit="pp">1979--1990</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.cor.2013.02.016</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI14 .xml b/xml_files/bdoreauRI14 .xml
deleted file mode 100644
index 9d9e0cc8adc78b1f8164f8d83b62b09e3424ee62..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI14 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Optimal Dynamic Outpatient Scheduling for a Diagnostic Facility with Two Waiting Time Targets</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">N.</forename>
-                <surname>Geng</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Optimal Dynamic Outpatient Scheduling for a Diagnostic Facility with Two Waiting Time Targets</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">N.</forename>
-                    <surname>Geng</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">IEEE Transactions on Automatic Control</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2016</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI14.xml b/xml_files/bdoreauRI14.xml
deleted file mode 100644
index 864d90a24967d27ccad5f67082336ee7e83f9a5e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI14.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Handling disruptions in manufacturing systems: An immune perspective</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Saber</forename>
-                <surname>Darmoul</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Handling disruptions in manufacturing systems: An immune perspective</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Saber</forename>
-                    <surname>Darmoul</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Eng. Appl. of AI</title>
-                <imprint>
-                  <biblScope unit="volume">26</biblScope>
-                  <biblScope unit="pp">110--121</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.engappai.2012.09.021</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI15 .xml b/xml_files/bdoreauRI15 .xml
deleted file mode 100644
index ca6fa7733f8a0d50927b69b8877c952219269bab..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI15 .xml	
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dynamic appointment scheduling with wait-dependent abandonment</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Yuwei</forename>
-                <surname>Lu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zhibin</forename>
-                <surname>Jiang</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dynamic appointment scheduling with wait-dependent abandonment</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Yuwei</forename>
-                    <surname>Lu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zhibin</forename>
-                    <surname>Jiang</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">European Journal of Operational Research</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI15.xml b/xml_files/bdoreauRI15.xml
deleted file mode 100644
index 3718d04e3cc9b7fa9a863e6e5c08d3c810a5f962..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI15.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Design of a robust layout with information uncertainty increasing over time: A fuzzy evolutionaryapproach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Amine</forename>
-                <surname>Drira</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Design of a robust layout with information uncertainty increasing over time: A fuzzy evolutionaryapproach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Amine</forename>
-                    <surname>Drira</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Eng. Appl. of AI</title>
-                <imprint>
-                  <biblScope unit="volume">26</biblScope>
-                  <biblScope unit="pp">1052--1060</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.engappai.2012.12.007</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI16 .xml b/xml_files/bdoreauRI16 .xml
deleted file mode 100644
index af4a6fd12b74ae83dd81ef9fe832444940d8000a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI16 .xml	
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Addressing healthcare operational deficiencies using stochastic and dynamic programming</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Na</forename>
-                <surname>Geng</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zheng</forename>
-                <surname>Zhang</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Addressing healthcare operational deficiencies using stochastic and dynamic programming</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Na</forename>
-                    <surname>Geng</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zheng</forename>
-                    <surname>Zhang</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">International Journal of Production Research</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub"></date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI16.xml b/xml_files/bdoreauRI16.xml
deleted file mode 100644
index f792f60f2f179bd6c6dd0625f4e064d34ad52387..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI16.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Recycling Plants Layout Design by Means of an Interactive Genetic Algorithm</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hern&#225;ndez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Emilio</forename>
-                <surname>Corchado</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Recycling Plants Layout Design by Means of an Interactive Genetic Algorithm</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hern&#225;ndez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Emilio</forename>
-                    <surname>Corchado</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Intelligent Automation &amp; Soft Computing</title>
-                <imprint>
-                  <biblScope unit="volume">19</biblScope>
-                  <biblScope unit="pp">457--468</biblScope>
-                  <date type="datePub">2013</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1080/10798587.2013.803679</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI17 .xml b/xml_files/bdoreauRI17 .xml
deleted file mode 100644
index 067d70a21083d6ae50404a43763a9c04a8170528..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI17 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Physician Staffing for Emergency Departments with Time-Varying Demand</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ran</forename>
-                <surname>Liu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Physician Staffing for Emergency Departments with Time-Varying Demand</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ran</forename>
-                    <surname>Liu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">INFORMS Journal On Computing</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI17.xml b/xml_files/bdoreauRI17.xml
deleted file mode 100644
index 423676e24bee7774975b3fd8002acd02595e0823..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI17.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Special issue on pull strategies in manufacturing systems and supply chains: recent advances</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jose</forename>
-                <surname>Frami&#241;an</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Special issue on pull strategies in manufacturing systems and supply chains: recent advances</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jose</forename>
-                    <surname>Frami&#241;an</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">J. Intelligent Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">23</biblScope>
-                  <biblScope unit="pp">1--3</biblScope>
-                  <date type="datePub">2012</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1007/s10845-011-0598-1</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI18 .xml b/xml_files/bdoreauRI18 .xml
deleted file mode 100644
index 1b61014f69d944d905bf17a43667c446d80019df..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI18 .xml	
+++ /dev/null
@@ -1,108 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Optimal Process Mining for Large and Complex Event Logs</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">PRODEL</forename>
-                <surname>Martin</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Augusto</forename>
-                <surname>Vincent</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jouaneton</forename>
-                <surname>Baptiste</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lamarsalle</forename>
-                <surname>Ludovic</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Optimal Process Mining for Large and Complex Event Logs</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">PRODEL</forename>
-                    <surname>Martin</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Augusto</forename>
-                    <surname>Vincent</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jouaneton</forename>
-                    <surname>Baptiste</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lamarsalle</forename>
-                    <surname>Ludovic</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">IEEE Transactions on Automation Science and Engineering</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI18.xml b/xml_files/bdoreauRI18.xml
deleted file mode 100644
index 005c7e1fca57aaf3be98a56ddce3efe0219f474b..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI18.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Token-based pull production control systems: an introductory overview</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Pedro</forename>
-                <surname>Gonzalez-R</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jose</forename>
-                <surname>Frami&#241;an</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Token-based pull production control systems: an introductory overview</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Pedro</forename>
-                    <surname>Gonzalez-R</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jose</forename>
-                    <surname>Frami&#241;an</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">J. Intelligent Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">23</biblScope>
-                  <biblScope unit="pp">5--22</biblScope>
-                  <date type="datePub">2012</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1007/s10845-011-0534-4</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI19.xml b/xml_files/bdoreauRI19.xml
deleted file mode 100644
index a67d9816972abfa7d1d6989cf467309429b40286..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI19.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Methodology for determining the acceptability of system designs in uncertain environments</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jack</forename>
-                <surname>Kleijnen</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jin</forename>
-                <surname>Zhang</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Methodology for determining the acceptability of system designs in uncertain environments</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jack</forename>
-                    <surname>Kleijnen</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jin</forename>
-                    <surname>Zhang</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">European Journal of Operational Research</title>
-                <imprint>
-                  <biblScope unit="volume">209</biblScope>
-                  <biblScope unit="pp">176--183</biblScope>
-                  <date type="datePub">2011</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.ejor.2010.09.026</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI2 .xml b/xml_files/bdoreauRI2 .xml
deleted file mode 100644
index 6b019d1d2f5fb177a056bf71f0f457cea4bf46ff..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI2 .xml	
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">On Quality of Life Variables in Environmental Modeling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">On Quality of Life Variables in Environmental Modeling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation</title>
-                <imprint>
-                  <biblScope unit="volume">67</biblScope>
-                  <biblScope unit="pp">294-296</biblScope>
-                  <date type="datePub">1996</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI2.xml b/xml_files/bdoreauRI2.xml
deleted file mode 100644
index 96baeb89e5968977c0a05977dfc35a10d5cc11b7..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI2.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Addressing over-correction in adaptive card-based pull control systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Nesrine</forename>
-                <surname>Azouz</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorena</forename>
-                <surname>Belis&#225;rio</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Achraf</forename>
-                <surname>Ammar</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Addressing over-correction in adaptive card-based pull control systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Nesrine</forename>
-                    <surname>Azouz</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorena</forename>
-                    <surname>Belis&#225;rio</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Achraf</forename>
-                    <surname>Ammar</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Int. J. Computer Integrated Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">31</biblScope>
-                  <biblScope unit="pp">1189--1204</biblScope>
-                  <date type="datePub">2018</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1080/0951192X.2018.1509132</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI20.xml b/xml_files/bdoreauRI20.xml
deleted file mode 100644
index 832d2fa9cc9ff337e9b9c649e852a1dad0bb367f..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI20.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Analysis of robustness in proactive scheduling: A graphical approach</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Feiza</forename>
-                <surname>Ghezail</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Analysis of robustness in proactive scheduling: A graphical approach</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Feiza</forename>
-                    <surname>Ghezail</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Computers &amp; Industrial Engineering</title>
-                <imprint>
-                  <biblScope unit="volume">58</biblScope>
-                  <biblScope unit="pp">193--198</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.cie.2009.03.004</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI21.xml b/xml_files/bdoreauRI21.xml
deleted file mode 100644
index f618bf4c69afdfeb28ff70a138d2337c572a23bb..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI21.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Training a neural network to select dispatching rules in real time</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Wiem</forename>
-                <surname>Mouelhi-Chibani</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Training a neural network to select dispatching rules in real time</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Wiem</forename>
-                    <surname>Mouelhi-Chibani</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Computers &amp; Industrial Engineering</title>
-                <imprint>
-                  <biblScope unit="volume">58</biblScope>
-                  <biblScope unit="pp">249--256</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.cie.2009.03.008</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI22 .xml b/xml_files/bdoreauRI22 .xml
deleted file mode 100644
index 7fdbb9612b5fe7fd86e431dabbc6b5cdcc471d05..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI22 .xml	
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Appointment Scheduling and the Effects of Customer Congestion on Service</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zheng</forename>
-                <surname>Zhang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Bjorn</forename>
-                <surname>P.</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Brian</forename>
-                <surname>Denton</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Appointment Scheduling and the Effects of Customer Congestion on Service</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zheng</forename>
-                    <surname>Zhang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Bjorn</forename>
-                    <surname>P.</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Brian</forename>
-                    <surname>Denton</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">IISE Transactions</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub"></date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI22.xml b/xml_files/bdoreauRI22.xml
deleted file mode 100644
index 56197ab0a0715a1c0530fd86105c36a496baab9f..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI22.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dimensionnement des syst&#232;mes de production. Une approche stochastique et multicrit&#232;re bas&#233;e sur la simulation</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Orhan</forename>
-                <surname>Feyzioglu</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dimensionnement des syst&#232;mes de production. Une approche stochastique et multicrit&#232;re bas&#233;e sur la simulation</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Orhan</forename>
-                    <surname>Feyzioglu</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Journal of Decision Systems</title>
-                <imprint>
-                  <biblScope unit="volume">17</biblScope>
-                  <biblScope unit="pp">369--385</biblScope>
-                  <date type="datePub">2008</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.3166/jds.17.369-385</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI23 .xml b/xml_files/bdoreauRI23 .xml
deleted file mode 100644
index 8466eec621ba97c84fbe5566b0b6dae6e30de601..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI23 .xml	
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Branch and Price for Chance Constrained Bin Packin</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Zheng</forename>
-                <surname>Zhang</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Brian</forename>
-                <surname>Denton</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Branch and Price for Chance Constrained Bin Packin</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Zheng</forename>
-                    <surname>Zhang</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Brian</forename>
-                    <surname>Denton</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">INFORMS Journal On Computing</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp"></biblScope>
-                  <date type="datePub"></date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI23.xml b/xml_files/bdoreauRI23.xml
deleted file mode 100644
index d43b31783d39a2c6eb087b2225678ad4ab10c77d..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI23.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Facility layout problems: A survey</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Amine</forename>
-                <surname>Drira</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Facility layout problems: A survey</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Amine</forename>
-                    <surname>Drira</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Annual Reviews in Control</title>
-                <imprint>
-                  <biblScope unit="volume">31</biblScope>
-                  <biblScope unit="pp">255--267</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.arcontrol.2007.04.001</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI24 .xml b/xml_files/bdoreauRI24 .xml
deleted file mode 100644
index ca20ad1daad79a94792458780290de83bf576c32..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI24 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Editorial: Operations research in healthcare</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">M.A.</forename>
-                <surname>Lawley</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Editorial: Operations research in healthcare</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">M.A.</forename>
-                    <surname>Lawley</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">International Journal of Production Research</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">7173-7176</biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI24.xml b/xml_files/bdoreauRI24.xml
deleted file mode 100644
index 0ec1b837dd6eb015c2cdec1d93d1044fc0da9b79..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI24.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Robust simulation with a base environmental scenario</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">S&#233;verine</forename>
-                <surname>Durieux-Paris</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Robust simulation with a base environmental scenario</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">S&#233;verine</forename>
-                    <surname>Durieux-Paris</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">European Journal of Operational Research</title>
-                <imprint>
-                  <biblScope unit="volume">182</biblScope>
-                  <biblScope unit="pp">783--793</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.ejor.2006.07.045</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI25 .xml b/xml_files/bdoreauRI25 .xml
deleted file mode 100644
index 15e15ae9babc477fe682a0e501027c56188a3787..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI25 .xml	
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Gest Editorial: Special Issue on Automation Science and Engineering for Smart and Interconnected Healthcare Delivery Systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>Li</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>Song</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">H.G.</forename>
-                <surname>Yang</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Gest Editorial: Special Issue on Automation Science and Engineering for Smart and Interconnected Healthcare Delivery Systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>Li</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>Song</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">H.G.</forename>
-                    <surname>Yang</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">IEEE Transactions on Automation Science and Engineering</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">02-05</biblScope>
-                  <date type="datePub">2019</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI25.xml b/xml_files/bdoreauRI25.xml
deleted file mode 100644
index 42a46b8d4e1107f362990cc0fdf6160980f0eb56..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI25.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Modeling and Simulation of Manufacturing Systems and Extended Enterprises</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean-Luc</forename>
-                <surname>Paris</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Modeling and Simulation of Manufacturing Systems and Extended Enterprises</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean-Luc</forename>
-                    <surname>Paris</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation Modelling Practice and Theory</title>
-                <imprint>
-                  <biblScope unit="volume">15</biblScope>
-                  <biblScope unit="pp">111--112</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.simpat.2006.09.015</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI26.xml b/xml_files/bdoreauRI26.xml
deleted file mode 100644
index 67b26e9769cc33071d04bac02adea52ebebce312..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI26.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A continuous simulation approach for supply chains in the automotive industry</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Romain</forename>
-                <surname>Bruniaux</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Christophe</forename>
-                <surname>Caux</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A continuous simulation approach for supply chains in the automotive industry</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Romain</forename>
-                    <surname>Bruniaux</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Christophe</forename>
-                    <surname>Caux</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation Modelling Practice and Theory</title>
-                <imprint>
-                  <biblScope unit="volume">15</biblScope>
-                  <biblScope unit="pp">185--198</biblScope>
-                  <date type="datePub">2007</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.simpat.2006.09.019</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI28.xml b/xml_files/bdoreauRI28.xml
deleted file mode 100644
index 3ede5fbe5987b6262a6e005aa87ef8451d459237..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI28.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An approach to the design of a hybrid organization of workshops into functional layout and group technology cells</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Franck</forename>
-                <surname>Viguier</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An approach to the design of a hybrid organization of workshops into functional layout and group technology cells</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Franck</forename>
-                    <surname>Viguier</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Int. J. Computer Integrated Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">17</biblScope>
-                  <biblScope unit="pp">108--116</biblScope>
-                  <date type="datePub">2004</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1080/09511920310001593092</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI29.xml b/xml_files/bdoreauRI29.xml
deleted file mode 100644
index b81330f45240c02df2d6212fc6a971b41a198482..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI29.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">From 'simulation optimization' to 'simulation configuration' of systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean-Luc</forename>
-                <surname>Paris</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">From 'simulation optimization' to 'simulation configuration' of systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean-Luc</forename>
-                    <surname>Paris</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation Modelling Practice and Theory</title>
-                <imprint>
-                  <biblScope unit="volume">11</biblScope>
-                  <biblScope unit="pp">5--19</biblScope>
-                  <date type="datePub">2003</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/S1569-190X(02)00096-5</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI3 .xml b/xml_files/bdoreauRI3 .xml
deleted file mode 100644
index ea12c768e5db1a4a1968923e0850e99fe4922029..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI3 .xml	
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Discrete-Event Simulation of Alga Expansion</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">VAUGELAS</forename>
-                <surname>De</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Discrete-Event Simulation of Alga Expansion</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">VAUGELAS</forename>
-                    <surname>De</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation</title>
-                <imprint>
-                  <biblScope unit="volume">68</biblScope>
-                  <biblScope unit="pp">269-277</biblScope>
-                  <date type="datePub">1997</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI3.xml b/xml_files/bdoreauRI3.xml
deleted file mode 100644
index 472749bbd09844ee7ca5e3ecb00e9392843ac35a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI3.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A simulation-optimization based heuristic for the online assignment of multi-skilled workers subjected to fatigue in manufacturing systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Aicha</forename>
-                <surname>Ferjani</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Achraf</forename>
-                <surname>Ammar</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sabeur</forename>
-                <surname>Elkosantini</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A simulation-optimization based heuristic for the online assignment of multi-skilled workers subjected to fatigue in manufacturing systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Aicha</forename>
-                    <surname>Ferjani</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Achraf</forename>
-                    <surname>Ammar</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sabeur</forename>
-                    <surname>Elkosantini</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Computers &amp; Industrial Engineering</title>
-                <imprint>
-                  <biblScope unit="volume">112</biblScope>
-                  <biblScope unit="pp">663--674</biblScope>
-                  <date type="datePub">2017</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.cie.2017.02.008</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI30.xml b/xml_files/bdoreauRI30.xml
deleted file mode 100644
index 27a02b5d1ad8eb0294d7d10f83e2df25269c144a..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI30.xml
+++ /dev/null
@@ -1,124 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Modeling the Ultimate Seaweed Expansion</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Patrick</forename>
-                <surname>Coquillard</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Alex</forename>
-                <surname>Aussem</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Vaugelas</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">T.</forename>
-                <surname>Thibaut</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">A.</forename>
-                <surname>Meinesz</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Modeling the Ultimate Seaweed Expansion</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Patrick</forename>
-                    <surname>Coquillard</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Alex</forename>
-                    <surname>Aussem</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Vaugelas</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">T.</forename>
-                    <surname>Thibaut</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">A.</forename>
-                    <surname>Meinesz</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation</title>
-                <imprint>
-                  <biblScope unit="volume">76</biblScope>
-                  <biblScope unit="pp">126--134</biblScope>
-                  <date type="datePub">2001</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1177/003754970107600221</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI31.xml b/xml_files/bdoreauRI31.xml
deleted file mode 100644
index f06cf59c8f5778e182e9c651676ad36a0749d620..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI31.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A distributed evolutionary simulation optimization approach for the configuration of multiproduct kanban systems</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean-Luc</forename>
-                <surname>Paris</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A distributed evolutionary simulation optimization approach for the configuration of multiproduct kanban systems</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean-Luc</forename>
-                    <surname>Paris</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Int. J. Computer Integrated Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">14</biblScope>
-                  <biblScope unit="pp">421--430</biblScope>
-                  <date type="datePub">2001</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1080/09511920010021784</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI32.xml b/xml_files/bdoreauRI32.xml
deleted file mode 100644
index 84aeeaa2ebc74363a96cb27e9fcd079e7b283426..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI32.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An evolutionary approach to select a pull system among Kanban, Conwip and Hybrid</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">E.</forename>
-                <surname>Gaury</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jack</forename>
-                <surname>Kleijnen</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An evolutionary approach to select a pull system among Kanban, Conwip and Hybrid</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">E.</forename>
-                    <surname>Gaury</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jack</forename>
-                    <surname>Kleijnen</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">J. Intelligent Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">11</biblScope>
-                  <biblScope unit="pp">157--167</biblScope>
-                  <date type="datePub">2000</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1023/A%3A1008938816257</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI33.xml b/xml_files/bdoreauRI33.xml
deleted file mode 100644
index 2c62f54144d49d253c644361a2aa1c6ff561d2a3..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI33.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Distributed evolutionary algorithms for simulation optimization</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean-Luc</forename>
-                <surname>Paris</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Distributed evolutionary algorithms for simulation optimization</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean-Luc</forename>
-                    <surname>Paris</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">IEEE Trans. Systems, Man, and Cybernetics, Part A</title>
-                <imprint>
-                  <biblScope unit="volume">30</biblScope>
-                  <biblScope unit="pp">15--24</biblScope>
-                  <date type="datePub">2000</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1109/3468.823477</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI34.xml b/xml_files/bdoreauRI34.xml
deleted file mode 100644
index 5dba1b0c6e8bcd715a5ca0a77c3a66925413d9ef..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI34.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Using multi-agent architecture in FMS for dynamic scheduling</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Khalid</forename>
-                <surname>Kouiss</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Nasser</forename>
-                <surname>Mebarki</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Using multi-agent architecture in FMS for dynamic scheduling</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Khalid</forename>
-                    <surname>Kouiss</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Nasser</forename>
-                    <surname>Mebarki</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">J. Intelligent Manufacturing</title>
-                <imprint>
-                  <biblScope unit="volume">8</biblScope>
-                  <biblScope unit="pp">41--47</biblScope>
-                  <date type="datePub">1997</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1023/A%3A1018540317470</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI35.xml b/xml_files/bdoreauRI35.xml
deleted file mode 100644
index 2ec5de0ec328f39a559adfd18dbd744ab93edc4e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI35.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A Metamodeling Approach Based on Neural Networks</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A Metamodeling Approach Based on Neural Networks</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Int. Journal in Computer Simulation</title>
-                <imprint>
-                  <biblScope unit="volume">6</biblScope>
-                  <biblScope unit="pp">365</biblScope>
-                  <date type="datePub">1996</date>
-                </imprint>
-              </monogr>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI4 .xml b/xml_files/bdoreauRI4 .xml
deleted file mode 100644
index d12b6724328199a1ce9e7ee2a190abe4321195d6..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI4 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An Agent Based Framework for Visual-Interactive Ecosystem Simulations</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">A.</forename>
-                <surname>CAMPOS</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An Agent Based Framework for Visual-Interactive Ecosystem Simulations</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">A.</forename>
-                    <surname>CAMPOS</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Simulation Transactions of the SCS</title>
-                <imprint>
-                  <biblScope unit="volume">15</biblScope>
-                  <biblScope unit="pp">139-152</biblScope>
-                  <date type="datePub">1998</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI4.xml b/xml_files/bdoreauRI4.xml
deleted file mode 100644
index 1376f5e35348c307422d18a3b6999250e9c8f22e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI4.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dynamic facility layout problem based on open queuing network theory</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Hani</forename>
-                <surname>Pourvaziri</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dynamic facility layout problem based on open queuing network theory</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Hani</forename>
-                    <surname>Pourvaziri</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">European Journal of Operational Research</title>
-                <imprint>
-                  <biblScope unit="volume">259</biblScope>
-                  <biblScope unit="pp">538--553</biblScope>
-                  <date type="datePub">2017</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.ejor.2016.11.011</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI5 .xml b/xml_files/bdoreauRI5 .xml
deleted file mode 100644
index c8ef2ab1c9ad0a45ebd9d70f64aa4cf9b1e3ffad..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI5 .xml	
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Dealing with Distributed Dilemmas</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">E.</forename>
-                <surname>VIGOR</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Dealing with Distributed Dilemmas</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">E.</forename>
-                    <surname>VIGOR</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Application Development Advisor (remplace Object Expert)</title>
-                <imprint>
-                  <biblScope unit="volume">1</biblScope>
-                  <biblScope unit="pp">60-63</biblScope>
-                  <date type="datePub">1998</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI5.xml b/xml_files/bdoreauRI5.xml
deleted file mode 100644
index f24340b8d119d7464701d0733f8d1843a5ae3337..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI5.xml
+++ /dev/null
@@ -1,95 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">The k edge-disjoint 3-hop-constrained paths polytope</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">I.</forename>
-                <surname>Diarrassouba</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ali</forename>
-                <surname>Mahjoub</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">The k edge-disjoint 3-hop-constrained paths polytope</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">I.</forename>
-                    <surname>Diarrassouba</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ali</forename>
-                    <surname>Mahjoub</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Discrete Optimization</title>
-                <imprint>
-                  <biblScope unit="volume">7</biblScope>
-                  <biblScope unit="pp">222--233</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.disopt.2010.05.001</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI6 .xml b/xml_files/bdoreauRI6 .xml
deleted file mode 100644
index 47f6e8084c50d15777bc07befdbe994d74ed8221..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI6 .xml	
+++ /dev/null
@@ -1,94 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">An algorithmic Model for Invasive Species Application to Caulerpa taxifolia (Vahl) C. Agardh development in the North&#8211;Western Mediterranean Sea</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">D.</forename>
-                <surname>Hill</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>Coquillard</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>Vaugelas</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">A.</forename>
-                <surname>Meinesz</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">An algorithmic Model for Invasive Species Application to Caulerpa taxifolia (Vahl) C. Agardh development in the North&#8211;Western Mediterranean Sea</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">D.</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>Coquillard</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>Vaugelas</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">A.</forename>
-                    <surname>Meinesz</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Ecological modelling</title>
-                <imprint>
-                  <biblScope unit="volume">109</biblScope>
-                  <biblScope unit="pp">251-265</biblScope>
-                  <date type="datePub">1998</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI6.xml b/xml_files/bdoreauRI6.xml
deleted file mode 100644
index 34d7e892306cf5c3d164942aca1b3c46e948ce5e..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI6.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A branch-and-cut algorithm for the \emphk-edge connected subgraph problem</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">I.</forename>
-                <surname>Diarrassouba</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Ali</forename>
-                <surname>Mahjoub</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Mohamed</forename>
-                <surname>Biha</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A branch-and-cut algorithm for the \emphk-edge connected subgraph problem</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">I.</forename>
-                    <surname>Diarrassouba</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Ali</forename>
-                    <surname>Mahjoub</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Mohamed</forename>
-                    <surname>Biha</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Networks</title>
-                <imprint>
-                  <biblScope unit="volume">55</biblScope>
-                  <biblScope unit="pp">13--32</biblScope>
-                  <date type="datePub">2010</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1002/net.20310</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI7.xml b/xml_files/bdoreauRI7.xml
deleted file mode 100644
index e7c82c294e6b74bb93aaece8bc52cb4727888cfd..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI7.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Fault detection, diagnosis and recovery using Artificial Immune Systems: A review</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Nawel</forename>
-                <surname>Bayar</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Saber</forename>
-                <surname>Darmoul</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Sonia</forename>
-                <surname>Hajri-Gabouj</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Fault detection, diagnosis and recovery using Artificial Immune Systems: A review</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Nawel</forename>
-                    <surname>Bayar</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Saber</forename>
-                    <surname>Darmoul</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Sonia</forename>
-                    <surname>Hajri-Gabouj</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Eng. Appl. of AI</title>
-                <imprint>
-                  <biblScope unit="volume">46</biblScope>
-                  <biblScope unit="pp">43--57</biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1016/j.engappai.2015.08.006</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI8.xml b/xml_files/bdoreauRI8.xml
deleted file mode 100644
index 754b1ef99864c4bd7b3f53102e50b72fc08bd508..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI8.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Facility layout design using a multi-objective interactive genetic algorithm to support the DM</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Laura</forename>
-                <surname>Garc&#237;a-Hern&#225;ndez</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Antonio</forename>
-                <surname>Arauzo-Azofra</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Lorenzo</forename>
-                <surname>Salas-Morera</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Henri</forename>
-                <surname>Pierreval</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Emilio</forename>
-                <surname>Corchado</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Facility layout design using a multi-objective interactive genetic algorithm to support the DM</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Laura</forename>
-                    <surname>Garc&#237;a-Hern&#225;ndez</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Antonio</forename>
-                    <surname>Arauzo-Azofra</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Lorenzo</forename>
-                    <surname>Salas-Morera</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Henri</forename>
-                    <surname>Pierreval</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Emilio</forename>
-                    <surname>Corchado</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Expert Systems</title>
-                <imprint>
-                  <biblScope unit="volume">32</biblScope>
-                  <biblScope unit="pp">94--107</biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.1111/exsy.12064</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halDomain" n="info.info-bi"/>
-              <classCode scheme="halDomain" n="sdv"/>
-              <classCode scheme="halDomain" n="sde"/>
-              <classCode scheme="halDomain" n="phys"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI9 .xml b/xml_files/bdoreauRI9 .xml
deleted file mode 100644
index 6c241ba1e88d9cf13dbc58256358f970703c637c..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI9 .xml	
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">A stochastic optimization model for shift scheduling in emergency department</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Omar</forename>
-                <surname>El-Rifai</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Thierry</forename>
-                <surname>Garaix</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Vincent</forename>
-                <surname>Augusto</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Xiaolan</forename>
-                <surname>Xie</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">A stochastic optimization model for shift scheduling in emergency department</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Omar</forename>
-                    <surname>El-Rifai</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Thierry</forename>
-                    <surname>Garaix</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Vincent</forename>
-                    <surname>Augusto</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Xiaolan</forename>
-                    <surname>Xie</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Health Care Management Science</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">289-302</biblScope>
-                  <date type="datePub">2015</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRI9.xml b/xml_files/bdoreauRI9.xml
deleted file mode 100644
index 6eedcd34dac3016066994a847fd1d5c37446d2fe..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRI9.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Heuristics for Designing Energy-efficient Wireless Sensor Network Topologies</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Andr&#233;a</forename>
-                <surname>Santos</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Christophe</forename>
-                <surname>Duhamel</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Kean</forename>
-                <surname>Hou</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Heuristics for Designing Energy-efficient Wireless Sensor Network Topologies</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Andr&#233;a</forename>
-                    <surname>Santos</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Christophe</forename>
-                    <surname>Duhamel</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Kean</forename>
-                    <surname>Hou</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">JNW</title>
-                <imprint>
-                  <biblScope unit="volume">4</biblScope>
-                  <biblScope unit="pp">436--444</biblScope>
-                  <date type="datePub">2009</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.4304/jnw.4.6.436-444</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRN1 .xml b/xml_files/bdoreauRN1 .xml
deleted file mode 100644
index 5e3b2c01cf97df7f42ae7d6b7fb33f069307c794..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRN1 .xml	
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="fr">Introduction &#224; la Simulation par Objets</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="fr">Introduction &#224; la Simulation par Objets</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">L&#8217;objet</title>
-                <imprint>
-                  <biblScope unit="volume">3</biblScope>
-                  <biblScope unit="pp">53-63</biblScope>
-                  <date type="datePub">1997</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="fr"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/bdoreauRN2 .xml b/xml_files/bdoreauRN2 .xml
deleted file mode 100644
index de6302ed29339a0eee0cbeb07487c5a111ea964b..0000000000000000000000000000000000000000
--- a/xml_files/bdoreauRN2 .xml	
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="fr">A computer simulation to evaluate the impact of Caulerpa taxifolia on Mediterranean biodiversity</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>VAUGELAS</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">A.</forename>
-                <surname>MEINESZ</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="fr">A computer simulation to evaluate the impact of Caulerpa taxifolia on Mediterranean biodiversity</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>VAUGELAS</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">A.</forename>
-                    <surname>MEINESZ</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">Vie et Milieu</title>
-                <imprint>
-                  <biblScope unit="volume">47</biblScope>
-                  <biblScope unit="pp">397-400</biblScope>
-                  <date type="datePub">1997</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="fr"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-mo"/>
-              <classCode scheme="halDomain" n="info.info-dc"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/davidhilltemp.xml b/xml_files/davidhilltemp.xml
deleted file mode 100644
index c7b7803073969a0f3f85fa836bfdc613d9351d9b..0000000000000000000000000000000000000000
--- a/xml_files/davidhilltemp.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Une nouvelle classe de simulateurs &#224; contraintes spatiales</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">P.</forename>
-                <surname>COQUILLARD</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">J.</forename>
-                <surname>GUEUGNOT</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">David</forename>
-                <surname>Hill</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">G.</forename>
-                <surname>MAHY</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Une nouvelle classe de simulateurs &#224; contraintes spatiales</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">P.</forename>
-                    <surname>COQUILLARD</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">J.</forename>
-                    <surname>GUEUGNOT</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">David</forename>
-                    <surname>Hill</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">G.</forename>
-                    <surname>MAHY</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title/>
-                <title level="m">Tendances nouvelles en mod&#233;lisation pour l'environnement</title>
-                <imprint>
-                  <biblScope unit="volume"></biblScope>
-                  <biblScope unit="pp">255-265</biblScope>
-                  <date type="datePub">1997</date>
-                </imprint>
-              </monogr>
-              <idno type="doi"></idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-cc"/>
-              <classCode scheme="halDomain" n="info.info-dm"/>
-              <classCode scheme="halTypology" n="COUV"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>
diff --git a/xml_files/temp.xml b/xml_files/temp.xml
deleted file mode 100644
index 1a637f30f52370d4a8b22584cf84e3df9f4c7918..0000000000000000000000000000000000000000
--- a/xml_files/temp.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:hal="http://hal.archives-ouvertes.fr/">
-  <text>
-    <body>
-      <listBibl>
-        <biblFull>
-          <titleStmt>
-            <title xml:lang="en">Heuristics for Designing Energy-efficient Wireless Sensor Network Topologies</title>
-            <author role="aut">
-              <persName>
-                <forename type="first">Andr&#233;a</forename>
-                <surname>Santos</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Fatiha</forename>
-                <surname>Bendali</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Jean</forename>
-                <surname>Mailfert</surname>
-              </persName>
-              <affiliation ref="#struct-490706"/>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Christophe</forename>
-                <surname>Duhamel</surname>
-              </persName>
-            </author>
-            <author role="aut">
-              <persName>
-                <forename type="first">Kun-Mean</forename>
-                <surname>Hou</surname>
-              </persName>
-            </author>
-          </titleStmt>
-          <sourceDesc>
-            <biblStruct>
-              <analytic>
-                <title xml:lang="en">Heuristics for Designing Energy-efficient Wireless Sensor Network Topologies</title>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Andr&#233;a</forename>
-                    <surname>Santos</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Fatiha</forename>
-                    <surname>Bendali</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Jean</forename>
-                    <surname>Mailfert</surname>
-                  </persName>
-                  <affiliation ref="#struct-490706"/>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Christophe</forename>
-                    <surname>Duhamel</surname>
-                  </persName>
-                </author>
-                <author role="aut">
-                  <persName>
-                    <forename type="first">Kun-Mean</forename>
-                    <surname>Hou</surname>
-                  </persName>
-                </author>
-              </analytic>
-              <monogr>
-                <title level="j">JNW</title>
-                <imprint>
-                  <biblScope unit="volume">4</biblScope>
-                  <biblScope unit="pp">436--444</biblScope>
-                  <date type="datePub">2009</date>
-                </imprint>
-              </monogr>
-              <idno type="doi">10.4304/jnw.4.6.436-444</idno>
-            </biblStruct>
-          </sourceDesc>
-          <profileDesc>
-            <langUsage>
-              <language ident="en"/>
-            </langUsage>
-            <textClass>
-              <classCode scheme="halDomain" n="info.info-se"/>
-              <classCode scheme="halDomain" n="info.info-cr"/>
-              <classCode scheme="halTypology" n="ART"/>
-            </textClass>
-          </profileDesc>
-        </biblFull>
-      </listBibl>
-    </body>
-    <back>
-      <listOrg type="structures">
-        <org type="laboratory" xml:id="struct-490706"/>
-      </listOrg>
-    </back>
-  </text>
-</TEI>