Textes et données

Il y a plusieurs manières de structurer un texte pour le rendre utilisable comme une série de données.

  • xml/html

  • autres types de balisage

  • api

API

Une API est une “application programming interface”. Concrètement c’est un système standardisé pour interagir avec des données.

Nous allons prendre un exemple: Zotero.

Allons regarder comment fonctionne l’api en regardant quelques pages:

Json

Json est un format de structuration des données très simple.

Article:

  • titre

  • auteur

  • corps

Montitre Thomas Mon texte

{ “titre”:”Mon titre”, “auteur”:”Thomas”, “corps”:”Mon texte, }

Regardons un exemple du json de zotero:

{

    "key": "P4UXP443",
    "version": 1380,
    "library": {
        "type": "group",
        "id": 322999,
        "name": "Écritures numériques",
        "links": {
            "alternate": {
                "href": "https://www.zotero.org/groups/critures_numriques",
                "type": "text/html"
            }
        }
    },
    "links": {
        "self": {
            "href": "https://api.zotero.org/groups/322999/items/P4UXP443",
            "type": "application/json"
        },
        "alternate": {
            "href": "https://www.zotero.org/groups/critures_numriques/items/P4UXP443",
            "type": "text/html"
        }
    },
    "meta": {
        "createdByUser": {
            "id": 2755709,
            "username": "laurentdm",
            "name": "",
            "links": {
                "alternate": {
                    "href": "https://www.zotero.org/laurentdm",
                    "type": "text/html"
                }
            }
        },
        "lastModifiedByUser": {
            "id": 3449834,
            "username": "enricoagomarchese",
            "name": "Enrico Agostini-Marchese",
            "links": {
                "alternate": {
                    "href": "https://www.zotero.org/enricoagomarchese",
                    "type": "text/html"
                }
            }
        },
        "creatorSummary": "Carrier-Lafleur et al.",
        "parsedDate": "2018-04-09",
        "numChildren": 0
    },
    "citation": "<span>Carrier-Lafleur et al., “L’invention littéraire des médias.”</span>",
    "data": {
        "key": "P4UXP443",
        "version": 1380,
        "itemType": "journalArticle",
        "title": "L'invention littéraire des médias",
        "creators": [
            {
                "creatorType": "author",
                "firstName": "Thomas",
                "lastName": "Carrier-Lafleur"
            },
            {
                "creatorType": "author",
                "firstName": "André",
                "lastName": "Gaudreault"
            },
            {
                "creatorType": "author",
                "firstName": "Servanne",
                "lastName": "Monjour"
            },
            {
                "creatorType": "author",
                "firstName": "Marcello",
                "lastName": "Vitali-Rosati"
            }
        ],
        "abstractNote": "Les médias existeraient-ils sans la littérature ? Pourrait-on parler de « télévision », de « photographie », de « cinéma » ou du « numérique » sans que ces dispositifs aient aussi été construits, institutionnalisés et même parfois déconstruits dans l’imaginaire collectif par la littérature et son discours ? À l’heure où le numérique semble encore s’inventer, le présent dossier vise à souligner le rôle du fait littéraire dans la construction de nos médias. En même temps, l’hybridation médiatique de notre contemporanéité numérique rend nécessaire une réflexion sur la capacité des médias à se réinventer réciproquement, renouvelant chaque fois l’ordre du discours et la fonction de la littérature. En raison de sa capacité à témoigner de l’hétérogénéité de notre univers médiatique, la littérature offre un terrain privilégié – où tout reste encore à faire – pour mener une telle recherche.",
        "publicationTitle": "Sens Public",
        "volume": "",
        "issue": "",
        "pages": "",
        "date": "2018-04-09",
        "series": "",
        "seriesTitle": "",
        "seriesText": "",
        "journalAbbreviation": "",
        "language": "fr",
        "DOI": "",
        "ISSN": "2104-3272",
        "shortTitle": "",
        "url": "https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19962",
        "accessDate": "2018-04-20T18:46:45Z",
        "archive": "",
        "archiveLocation": "",
        "libraryCatalog": "sens-public.org",
        "callNumber": "",
        "rights": "http://creativecommons.org/licenses/by-nc-sa/4.0/",
        "extra": "",
        "tags": [
            {
                "tag": "Circulation des contenus"
            },
            {
                "tag": "Imaginaire-réel"
            },
            {
                "tag": "Intermédialité"
            },
            {
                "tag": "Littérature"
            },
            {
                "tag": "Légitimation des contenus"
            },
            {
                "tag": "Médias"
            },
            {
                "tag": "Production des contenus"
            }
        ],
        "collections": [
            "P4PRNB6V",
            "V6D6F4ZX",
            "C9RJ5F8P"
        ],
        "relations": { },
        "dateAdded": "2018-04-20T18:46:45Z",
        "dateModified": "2019-09-26T14:14:38Z"
    }

}
import json
import requests

data = requests.get('https://api.zotero.org/groups/322999/items/P4UXP443/?include=citation,data')
dataj = data.json()
print(data.headers)
print(dataj['data']['title'])
for a in dataj['data']['creators']:
    print(a['firstName'])
    print(a['lastName'])
{'Date': 'Mon, 06 Dec 2021 15:48:24 GMT', 'Server': 'Apache/2.4.51 ()', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains; preload', 'Zotero-API-Version': '3', 'Zotero-Schema-Version': '3', 'Last-Modified-Version': '1380', 'Vary': 'Accept-Encoding', 'Content-Encoding': 'gzip', 'Content-Length': '1546', 'Keep-Alive': 'timeout=5, max=100', 'Connection': 'Keep-Alive', 'Content-Type': 'application/json'}
L'invention littéraire des médias
Thomas
Carrier-Lafleur
André
Gaudreault
Servanne
Monjour
Marcello
Vitali-Rosati
import requests
import json
import links_from_header
import re
mygroup= '322999'

def allbibliodata(group,key):
    
    
    url = 'https://api.zotero.org/groups/'
    
    
    params={
        'key':key,
        'start':'0',
        'include':'citation,data',
        'style': 'chicago-fullnote-bibliography'
        
    }
    
    pagination= True
    
    bibliographical_data=[]
    while pagination:
    
        data = requests.get(url+group+'/items', params)
        data_headers = data.headers
    
        data_link=data_headers['Link']
        data_link_header=links_from_header.extract(data_link) # using links_from_headers to tranform Link value in a json with the keys prev next last
    
        if 'next' in data_link_header:
            next_link=data_link_header['next'] # picking the value of the key last 
    
            next_start=re.match( r'.*start=([0-9]*)', next_link).group(1)
            params['start']= next_start
    
            biblio_data=data.json()
            for bib_item in biblio_data:
                bibliographical_data.append(bib_item)
            
        else:
            pagination=False
    return bibliographical_data
mes_refs=allbibliodata(mygroup, None)
len(mes_refs)
375
for ref in mes_refs:
    print(ref['citation'])
<span>Servanne Monjour and Marcello Vitali-Rosati, “Pour une redéfinition pornographique du champ littéraire. Une exploration des marges de la littérature numérique avec les travailleuses du texte,” <i>Interférences littéraire / Literaire interferencies</i> 25 (October 24, 2021): 51–67, http://interferenceslitteraires.be/index.php/illi/article/view/1087.</span>
<span>“Snapshot,” accessed March 18, 2021, https://a.qtrnm.net/analyses/lantilivre-dynamique-des-editions-abrupt-la-litterature-insaisissable/.</span>
<span>Antoine Fauchié, “L’antilivre dynamique des éditions Abrüpt : la littérature insaisissable,” in <i>Littérature et design. Visualités et visualisations du texte en régime numérique</i> (Lyon: Presses du réel (À paraître), 2021).</span>
<span>“Full Text PDF,” accessed August 1, 2021, https://sens-public.org/static/git-articles/SP1597/SP1597.pdf.</span>
<span>“Snapshot,” accessed August 1, 2021, https://sens-public.org/articles/1597/.</span>
<span>Antoine Fauchié, “Vers un système modulaire de publication,” <i>Sens public</i>, no. SP1596 (July 28, 2021), http://sens-public.org/articles/1597/.</span>
<span>Antoine Fauchié and Valérie Larroche, “Quel régime de conception pour les communs éditoriaux ?,” <i>Revue française des sciences de l’information et de la communication</i>, no. 23 (September 1, 2021), https://journals.openedition.org/rfsic/11994.</span>
<span>“Snapshot,” accessed October 14, 2021, https://www.cairn.info/revue-communication-et-langages-2021-2-page-155.htm.</span>
<span>“Full Text PDF,” accessed October 14, 2021, https://www.cairn.info/load_pdf.php?ID_ARTICLE=COMLA1_208_0155&#38;download=1.</span>
<span>Marcello Vitali-Rosati, “Le fait numérique comme « conjonctures médiatrices »,” <i>Communication &#38; Langages</i>, no. 208–209 (2021): 155–70, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/25755.</span>
<span>Marcello Vitali-Rosati et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>Marcello Vitali-Rosati, “Pour une pensée préhumaine,” <i>Sens public</i>, 2021, https://sens-public.org/articles/1598/.</span>
<span>Antoine Fauchié et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>Antoine Fauchié et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>“Snapshot,” accessed July 13, 2021, http://musemedusa.com/dossier_9/mellet/.</span>
<span>Margot Mellet, “Les Ruses Bleues | MuseMedusa,” <i>Muse Medusa</i> 9 (July 8, 2021), http://musemedusa.com/dossier_9/mellet/.</span>
<span>Emmanuelle Lescouet, “D’œuvres twittéraires à objets imprimés : deux gestes de lecture complémentaires,” <i>Fémur</i>, no. 3 (2021), https://revuefemur.com/index.php/2021/06/06/doeuvres-twitteraires-a-objets-imprimes/.</span>
<span>Enrico Agostini-Marchese et al., “Conversations autour de Uncreative Writing de Kenneth Goldsmith,” <i>Sens public</i>, February 6, 2020, http://sens-public.org/articles/1483/.</span>
<span>Margot Mellet, “Type Error Psyché,” <i>Récits Infectés</i> (blog), July 3, 2020, https://recitsinfectes.com/type-error-psyche/.</span>
<span>Margot Mellet, “Embaunum,” <i>La Chaloupe</i>, Herbiers, 6 (April 2020), http://revuelachaloupe.fr/Embaunum-Margot-Mellet.</span>
<span>Margot Mellet, “Au bout de la jetée,” <i>Sens public</i>, no. 1538 (October 5, 2020), http://sens-public.org/articles/1540/.</span>
<span>Margot Mellet, “Holotypes d’Amazones | MuseMedusa,” <i>Muse Medusa</i> 7 (2019), http://musemedusa.com/dossier_7/mellet2/.</span>
<span>Margot Mellet, “Phryné archère | MuseMedusa,” <i>Muse Medusa</i> 7 (2019), http://musemedusa.com/dossier_7/mellet1/.</span>
<span>Marcello Vitali-Rosati et al., “Écrire les SHS en environnement numérique. L’éditeur de texte Stylo,” <i>Revue Intelligibilité du Numérique</i>, 2020, http://intelligibilite-numerique.numerev.com/numeros/n-1-2020/18-ecrire-les-shs-en-environnement-numerique-l-editeur-de-texte-stylo.</span>
<span>Margot Mellet, “Rapport de recherche évaluation ouverte par les pairs,” Revue2.0, 2021, http://revue20.org/les-publications/rapport-de-recherche-evaluation-ouverte-par-les-pairs/.</span>
<span>Marcello Vitali-Rosati et al., “Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” <i>Digital Humanities Quarterly</i> 014, no. 1 (2020), http://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>Margot Mellet, “Défaire et remédier le livre. Analyse de la figure-écran du livre dans The Pillow Book de Peter Greenaway,” <i>Études du livre au XXIe siècle</i> (blog), March 24, 2021, https://projets.ex-situ.info/etudesdulivre21/liv2/mellet/.</span>
<span>“Snapshot,” accessed June 17, 2021, https://projets.ex-situ.info/etudesdulivre21/liv2/mellet/.</span>
<span>“Snapshot,” accessed June 17, 2021, http://revue20.org/les-publications/rapport-de-recherche-evaluation-ouverte-par-les-pairs/.</span>
<span>“Full Text PDF,” accessed October 8, 2020, http://www.sens-public.org/static/git-articles/SP1538/SP1538.pdf.</span>
<span>“DHQ: Digital Humanities Quarterly: Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” accessed May 8, 2020, https://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>“Full Text PDF,” accessed May 8, 2020, http://www.sens-public.org/static/git-articles/SP1483/SP1483.pdf.</span>
<span>“Snapshot,” accessed May 8, 2020, http://musemedusa.com/dossier_6/mellet/.</span>
<span>“Full Text PDF,” accessed October 8, 2020, http://www.sens-public.org/static/git-articles/SP1540/SP1540.pdf.</span>
<span>“Full Text PDF,” accessed May 8, 2020, http://www.sens-public.org/static/git-articles/SP1513/SP1513.pdf.</span>
<span>“Snapshot,” accessed October 8, 2020, http://www.sens-public.org/dossiers/1538/.</span>
<span>Catherine Mavrikakis and Margot Mellet, “Rendez-vous au temps du virus,” <i>Sens public</i>, no. 1538 (October 5, 2020), http://sens-public.org/dossiers/1538/.</span>
<span>“Snapshot,” accessed May 8, 2020, http://www.sens-public.org/articles/1513/.</span>
<span>“Snapshot,” accessed October 8, 2020, http://intelligibilite-numerique.numerev.com/numeros/n-1-2020/18-ecrire-les-shs-en-environnement-numerique-l-editeur-de-texte-stylo.</span>
<span>“Snapshot,” accessed May 8, 2020, http://www.sens-public.org/articles/1483/.</span>
<span>“Snapshot,” accessed October 8, 2020, http://www.sens-public.org/articles/1540/.</span>
<span>Margot Mellet, “Les HN ne sont pas HS,” <i>Sens public</i>, May 4, 2020, http://sens-public.org/articles/1513/.</span>
<span>“Snapshot,” accessed May 8, 2020, http://musemedusa.com/dossier_7/mellet1/.</span>
<span>“Snapshot,” accessed October 8, 2020, https://recitsinfectes.com/type-error-psyche/.</span>
<span>“Snapshot,” accessed May 8, 2020, http://musemedusa.com/dossier_7/mellet2/.</span>
<span>“Snapshot,” accessed May 8, 2020, http://www.revuelachaloupe.fr/Embaunum-Margot-Mellet.</span>
<span>Emmanuelle Lescouet, “Aperçu de la polyphonie dans le roman social contemporain,” <i>Imaginarium</i> (blog), 2021, https://imaginarium.hypotheses.org/24.</span>
<span>Marcello Vitali-Rosati, “Pour une théorie de l’éditorialisation,” <i>Humanités numériques</i> 1 (2020), http://journals.openedition.org/revuehn/371.</span>
<span>Boniface Pascal - Zaouiche Médine, <i>Don’t Panik : N’ayez Pas Peur,</i> Desclée de Brouwer, 2012.</span>
<span>Enrico Agostini Marchese, “How to do cities with words. Ville, espace et littérature à l’ère hyperconnectée,” in <i>L’agir en condition hyperconnectée : art et images à l’œuvre</i>, ed. Christelle Proulx and jake moore, Parcours Numériques (Montréal: PUM, 2020), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/24731.</span>
<span>“Enthält: Bonus Materials,” n.d.</span>
<span>Marcello Vitali-Rosati, “Qu’est-ce que l’écriture numérique ?,” <i>CORELA</i> HS-33 (October 2020), https://doi.org/https://doi.org/10.4000/corela.11759.</span>
<span>Emma Lacroix, “Littérature et espace urbain : palimpseste et écriture de l’histoire chez Patrick Modiano,” ed. Doina Mihaela Popa, <i>Les Cahiers</i> III, no. 5-6 Espace et langage (2019): 47–52, http://limbistraine.tuiasi.ro/images/8.%20Centrul%20de%20limbi%20moderne/LES%20CAHIERS%20%205-6.pdf.</span>
<span>“Bérubé et al. - 2019 - Coordinatrice Du Volume  Doina Mihaela Popa.Pdf,” accessed October 6, 2020, http://limbistraine.tuiasi.ro/images/8.%20Centrul%20de%20limbi%20moderne/LES%20CAHIERS%20%205-6.pdf.</span>
<span>Marcello Vitali-Rosati et al., “Écrire les SHS en environnement numérique. L’éditeur de texte Stylo,” <i>Intelligibilité du numérique</i>, no. 1 (September 2020), http://intelligibilite-numerique.numerev.com/numeros/n-1-2020/18-ecrire-les-shs-en-environnement-numerique-l-editeur-de-texte-stylo.</span>
<span>Margot Mellet, “Penser le palimpseste numérique. Le projet d’édition numérique collaborative de l’Anthologie palatine,” <i>Captures</i> 5, no. 1 (May 2020), http://revuecaptures.org/node/4382/.</span>
<span>Enrico Agostini Marchese and Christelle Proulx, “Cartographier les internets. ‘Atlas critique d’Internet’ et diagrammatique sensible de l’espace numérique,” <i>Captures</i>, Cartographie actuelle, 5, no. 1 (May 2020), http://revuecaptures.org/publication/volume-5-num%C3%A9ro-1.</span>
<span>Enrico Agostini Marchese and Christelle Proulx, “Cartographier les internets. ‘Atlas critique d’Internet’ et diagrammatique sensible de l’espace numérique,” <i>Catpures</i>, Cartographie actuelle, 5, no. 1 (May 2020), http://revuecaptures.org/publication/volume-5-num%C3%A9ro-1.</span>
<span>“Snapshot,” accessed May 25, 2020, http://sens-public.org/dossiers/1406/.</span>
<span>“Full Text PDF,” accessed May 25, 2020, http://sens-public.org/static/git-articles/SP1406/SP1406.pdf.</span>
<span>Servanne Monjour, Jean-Marc Larrue, and Marcello Vitali-Rosati, “Authentique artifice,” <i>Sens public</i>, May 20, 2019, http://sens-public.org/dossiers/1406/.</span>
<span>Marcello Vitali-Rosati and Jean-Marc Larrue, <i>Media Do Not Exist</i>, Theory on Demand (Amsterdam: Institute of Network Cultures, 2019), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/22937.</span>
<span>Marcello Vitali-Rosati et al., “Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” <i>Digital Humanities Quarterly</i> 014, no. 1 (2020), http://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>Jean-Marc Larrue, ed., “Du Média à La Médiation : Les Trente Ans de La Pensée Intermédiale et La Résistance Théâtrale,” in <i>Théâtre et Intermédialités</i>, Arts Du Spectacle. Images et Sons (Villeneuve-d’Ascq: Presses universitaires du Septentrion, 2015), 27–56, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13227.</span>
<span>Enrico Agostini Marchese, “Vous êtes ici. Prolégomènes pour une littérature géolocalisée,” <i>Hybrid. Revue des arts et médiations humaines</i>, no. 05 (December 18, 2018), http://www.hybrid.univ-paris8.fr/lodel/index.php?id=1029.</span>
<span>Enrico Agostini Marchese, “Plaidoyer pour la normalité,” <i>Sens Public</i>, April 22, 2018, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19955.</span>
<span>“DHQ: Digital Humanities Quarterly: Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” accessed March 13, 2020, http://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>“Index.Php,” accessed February 26, 2020, https://publications-prairial.fr/balisages/index.php?id=321&#38;file=1.</span>
<span>Antoine Fauchié, “Les technologies d’édition numérique sont-elles des documents comme les autres ?,” <i>Balisages</i>, no. 1 (February 24, 2020), https://doi.org/10.35562/balisages.321.</span>
<span>Marcello Vitali-Rosati, “Les MOOC : coup de pub ou espace d’apprentissage ?,” blogPost, <i>Culture numérique</i> (blog), décembre 2013, http://blog.sens-public.org/marcellovitalirosati/les-mooc-coup-de-pub-ou-espace-dapprentissage/.</span>
<span>Michael Nardone, “Poetics in a Networked Digital Milieu,” <i>College Literature</i> 47, no. 1 (2020): 248–58, https://doi.org/10.1353/lit.2020.0010.</span>
<span>Enrico Agostini Marchese, “L’éthique à l’épreuve du numérique. Ethics of Information and Communication Technologies d’Adriano Fabris,” <i>Sens Public</i>, July 31, 2018, http://sens-public.org/article1337.html.</span>
<span>N.d.</span>
<span>“Snapshot,” accessed November 14, 2019, https://www.cairn.info/revue-sciences-du-design-2018-2-page-57.htm.</span>
<span>“Full Text PDF,” accessed November 14, 2019, https://www.cairn.info/load_pdf.php?ID_ARTICLE=SDD_008_0057&#38;download=1.</span>
<span>Nicolas Sauret, “Design de la conversation scientifique : naissance d’un format éditorial,” <i>Sciences du Design</i> n° 8, no. 2 (December 14, 2018): 57–66, https://www.cairn.info/revue-sciences-du-design-2018-2-page-57.htm.</span>
<span>Marcello Vitali-Rosati, <i>Corps et virtuel : itinéraires à partir de Merleau-Ponty</i> (Paris: L’Harmattan, 2009), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12969.</span>
<span>Marcello Vitali-Rosati, <i>Riflessione e trascendenza: itinerari a partire da Levinas</i>, Filosofia 63 (Pisa: ETS, 2003), http://www.edizioniets.com/Recensioni.asp?N=88-467-0677-3.</span>
<span>Éric Méchoulan and Marcello Vitali-Rosati, <i>L’espace numérique</i> (Les atelier de Sens public, 2018), ​http://ateliers.sens-public.org/l-espace-numerique.</span>
<span>Marcello Vitali-Rosati, “Éditorialisation,” in <i>100 notions. Management et numérique</i>, ed. Gilles Rouet, 100 notions (Paris: Les éditions de l’immatériel, 2017), 102–4, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19198.</span>
<span>Marcello Vitali-Rosati, “The Chiasm as a Virtual - A Non-Concept in Merleau-Ponty’s Work (with a Coda on Theatre),” in <i>Merleau-Ponty and the Art of Perception</i> (North Carolina University Press, 2016), http://www.sunypress.edu/p-6176-merleau-ponty-and-the-art-of-pe.aspx.</span>
<span>Marcello Vitali-Rosati, “Pour une définition du ‘numérique,’” in <i>Pratiques de l’édition numérique</i> (Montréal: Presses Université de Montréal, 2014), 63–75, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13162.</span>
<span>Marcello Vitali-Rosati, “Digital Paratext. Editorialization and the Very Death of the Author,” in <i>Examining Paratextual Theory and Its Applications in Digital Culture</i>, IGI Global (Hershey: Nadine Desrochers and Daniel Apollon, 2014), 110–27, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/11392.</span>
<span>Marcello Vitali-Rosati, “Quelles actions sur le web ?,” in <i>Usages de l’Internet, éducation et culture</i>, ed. Gilles Rouet, Local et global (Paris: L’Harmattan, 2013), 17–25, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13214.</span>
<span>Marcello Vitali-Rosati, “Perceptibilité du virtuel et virtualisation de la perception,” in <i>La transition du perçu à l’ère des communications</i>, ed. Alain Mons (Pessac: Presses universitaires de Bordeaux, 2013), 191–206, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12968.</span>
<span>Marcello Vitali-Rosati, “Réflexions pour une resémantisation du concept de virtuel,” in <i>Pourquoi des théories ?</i>, Expériences philosophiques (Besançon: Solitaires intempestifs, 2009), 31–55, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13215.</span>
<span>Marcello Vitali-Rosati, “L’aura de La Technique : Photographie et Restauration,” in <i>No Play. Images de La Mémoire Disséminée</i> (Paris-Alberobello: Éditions chiavediSvolta, 2007), 168–89, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13083.</span>
<span>Marcello Vitali-Rosati, “Riflessioni filosofiche sul metodo Rességuier,” in <i>Riabilitazione reumatologica. Approccio multidisciplinare</i>, by S. Maddali Bongi (Milan: Edra, 2006), 391–400, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13218.</span>
<span>Marcello Vitali-Rosati, “Considerazioni generali sul concetto di « corpo »,” in <i>Riabilitazione reumatologica. Approccio multidisciplinare</i>, ed. Susanna Maddali Bongi (Milan: Edra, 2006), 323–25, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13219.</span>
<span>Michael E. Sinatra and Marcello Vitali-Rosati, “Histoire des humanités numériques,” in <i>Pratiques de l’édition numérique</i>, ed. Michael E. Sinatra and Marcello Vitali Rosati, Parcours Numériques (Montréal: Presses de l’Université de Montréal, 2014), 49–60, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13082.</span>
<span>Michael E. Sinatra and Marcello Vitali-Rosati, “Introduction,” in <i>Pratiques de l’édition numérique</i>, ed. Michael E. Sinatra and Marcello Vitali Rosati, Parcours Numériques (Montréal: Presses de l’Université de Montréal, 2014), 7–11, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13081.</span>
<span>Antoine Fauchié, “Le fanzinat des gens du web” (Conférence, Sud Web, Bordeaux, France, May 2016), https://vimeo.com/172225269.</span>
<span>Antoine Fauchié, “L’impact Du Livre Numérique Sur Les Pratiques d’édition : Reconfiguration Des Processus de Publication” (Séminaire, ENS, Lyon, May 24, 2019), https://impec.sciencesconf.org/resource/page/id/52.</span>
<span>Enrico Agostini Marchese, “Séminaire Éditorialisation et Écritures Numériques 2016-2017 - Séance 6 : Éditorialisation de l’espace” (Séminaire Éditorialisation et écritures numériques, June 1, 2017), https://www.youtube.com/watch?v=kgL6N4GNDdM&#38;t=1s.</span>
<span>Marcello Vitali Rosati, <i>Le Livre à l’heure d’aujourd’hui - YouTube</i>, 2015, https://www.youtube.com/watch?v=rLgETDT9AS8.</span>
<span>Antoine Fauchié, “Workshop PrePostPrint Chercher, Manipuler, Partager, Imprimer,” <i>Strabic</i>, June 29, 2017, http://strabic.fr/Workshop-PrePostPrint.</span>
<span>Marcello Vitali-Rosati, “Les revues littéraires en ligne : entre éditorialisation et réseaux d’intelligences,” <i>Études françaises</i> 50, no. 3 (2014): 83, https://doi.org/10.7202/1027191ar.</span>
<span>Marcello Vitali-Rosati and Servanne Monjour, “Littérature et production de l’espace à l’ère numérique. L’éditorialisation de la Transcanadienne. Du spatial turn à Google maps,” <i>@nalyses</i> 12, no. 3 (August 25, 2017): 198–229, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19177.</span>
<span>Marcello Vitali-Rosati and Nadine Desrochers, “L’écrivaine, l’écrivain en recherche. Perceptions et approches,” <i>Mémoires du livre / Studies in Book Culture</i> 9, no. 2 (2018), https://doi.org/10.7202/1046983ar.</span>
<span>Marcello Vitali-Rosati and Peppe Cavallari, “Mouvement et cristallisations : l’actuel entre mythologie, cinéma et théorie du web,” <i>Cahiers Sens public</i>, no. 21–22 (2018): 33–54, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/21093.</span>
<span>Marcello Vitali-Rosati, “Pour une définition de l’éditorialisation,” <i>Études digitales</i> 1, no. 3 (2018): 39–54, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/20867.</span>
<span>Marcello Vitali-Rosati, “Mais où est passé le réel ? Profils, représentations et métaontologie,” <i>MuseMedusa</i>, no. 6 (2018), http://musemedusa.com/dossier_6/vitali-rosati/.</span>
<span>Marcello Vitali-Rosati, “À quoi servent les publications scientifiques?,” <i>La vie de la recherche scientifique</i>, no. 412 (2018): 19–22, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/21016.</span>
<span>Marcello Vitali-Rosati, “The Writer is the Architect. Editorialization and the Production of Digital Space,” <i>Sens Public</i>, December 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19743.</span>
<span>Marcello Vitali-Rosati, “Littérature papier et littérature numérique, une opposition ?,” <i>Fabula. Colloques en ligne</i>, February 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18982.</span>
<span>Marcello Vitali-Rosati, “Qu’est-Ce Que l’éditorialisation?,” <i>Sens Public</i>, March 18, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16068.</span>
<span>Marcello Vitali-Rosati, “What Is Editorialization ?,” <i>Sens Public</i>, January 4, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12972.</span>
<span>Marcello Vitali-Rosati, “Pornspace,” <i>Medium</i>, no. 46–47 (2016): 307–17, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12997.</span>
<span>Marcello Vitali-Rosati, “Digital Architectures: The Web, Editorialization and Metaontology,” <i>Azimuth. Philosophical Coordinates in Modern and Contemporary Age</i> 4, no. 7 (2016): 95–111, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16067.</span>
<span>Marcello Vitali-Rosati, “« Littérature Numérique » : Changements et Continuité,” <i>TicArtToc</i>, no. 7 (2016): 32–35, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16063.</span>
<span>Marcello Vitali-Rosati, “La Littérature Numérique, Existe-t-Elle?,” <i>Digital Studies / Le Champ Numérique</i>, February 6, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13159.</span>
<span>Marcello Vitali-Rosati, “Paratexte Numérique : La Fin de La Distinction Entre Réalité et Fiction?,” <i>Cahiers ReMix</i> 1, no. 5 (2015), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12922.</span>
<span>Marcello Vitali-Rosati, “Écrire et écrit. Le journal comme atelier d’entraînement de la pensée,” <i>Pratiques de formation</i>, no. 62–63 (2013): 89–95, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12978.</span>
<span>Marcello Vitali-Rosati, “Les algorithmes de l’amour,” <i>MuseMedusa</i>, no. 2 (2014), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12973.</span>
<span>Marcello Vitali-Rosati, “Auteur Ou Acteur Du Web ?,” <i>Implications Philosophiques</i>, July 10, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12980.</span>
<span>Marcello Vitali-Rosati, “Voir l’invisible : Gygès et la pornographie Facebook,” <i>Sens Public</i>, June 14, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12923.</span>
<span>Marcello Vitali-Rosati, “CLASSER CALCULER,” <i>Sens-Public</i>, May 4, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12979.</span>
<span>Marcello Vitali-Rosati, “Une éthique appliquée? Considérations pour une éthique du numérique,” <i>Éthique publique</i> 14, no. 2 (2012): 13–32, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13100.</span>
<span>Marcello Vitali-Rosati, “Le Train Est l’ancêtre d’Internet,” <i>Institut National Audiovisuel</i>, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12974.</span>
<span>Marcello Vitali-Rosati, “Une philosophie du numérique. Lecture de « Pour un humanisme numérique » de Milad Doueihi,” <i>Sens Public</i>, November 14, 2011, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12996.</span>
<span>Marcello Vitali-Rosati, “La virtualité d’Internet. Une tentative d’éclaircissement terminologique,” <i>Sens Public</i>, April 16, 2009, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12975.</span>
<span>Marcello Vitali-Rosati, “La profondeur du théâtre : au-delà du sujet, vers une pensée métaontologique,” <i>Sens-Public</i>, June 10, 2011, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12977.</span>
<span>Marcello Vitali-Rosati, “L’ambiguïté politique d’Internet. Lecture de « La démocratie Internet : Promesses et limites » de Dominique Cardon,” <i>Sens Public</i>, June 5, 2011, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12976.</span>
<span>Marcello Vitali-Rosati, “Infinito, Conoscenza e Trascendenza,” <i>Teoria</i> 26, no. 2 (2006): 53–62, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13212.</span>
<span>Marcello Vitali-Rosati, “Don Giovanni. Il dissoluto punito ovvero la possibilità e lo spostamento,” <i>Elites</i>, no. 4 (April 2004): 65–78, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13084.</span>
<span>Marcello Vitali-Rosati, “Interpretazione in Una Logica N-Dimensionale Di Metafisica 4,4,” <i>Teoria</i> 23, no. 2 (February 2003): 89–96, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13213.</span>
<span>Servanne Monjour, Marcello Vitali-Rosati, and Gérard Wormser, “Le fait littéraire au temps du numérique. Pour une ontologie de l’imaginaire,” <i>Sens Public</i>, December 22, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16362.</span>
<span>Servanne Monjour, Matteo Treleani, and Marcello Vitali-Rosati, “Ontologie du numérique. Entre mimésis et réalité,” <i>Sens Public</i>, December 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19747.</span>
<span>Thomas Carrier-Lafleur et al., “L’invention littéraire des médias,” <i>Sens Public</i>, April 9, 2018, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19962.</span>
<span>Marcello Vitali-Rosati, <i>On Editorialization: Structuring Space and Authority in the Digital Age</i>, Theory on Demand 26 (Amsterdam: Institute of Network Cultures, 2018), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19868.</span>
<span>Marcello Vitali-Rosati, <i>Égarements. Amour, mort et identités numériques</i>, Cultures Numériques (Paris: Hermann, 2014), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12982.</span>
<span>Marcello Vitali-Rosati, <i>S’orienter dans le virtuel</i> (Paris: Hermann, 2012), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12983.</span>
<span>Antoine Fauchié, “Workflows, formats,” <i>Après Avant</i>, no. 3 (2015), https://www.quaternum.net/2016/01/04/workflows-formats/.</span>
<span>Antoine Fauchié, “Markdown Comme Condition d’une Norme de l’écriture Numérique,” <i>Réél - Virtuel</i>, no. 6 (2018), http://www.reel-virtuel.com/numeros/numero6/sentinelles/markdown-condition-ecriture-numerique.</span>
<span>Antoine Fauchié, “Le livre web comme objet d’édition ?,” in <i>Design et innovation dans la chaîne du livre</i> (PUF, 2017).</span>
<span>Antoine Fauchié, “Une Chaîne de Publication Inspirée Du Web,” in <i>Code X: 01-PrePostPrint</i> (Éditions HYX, 2017), http://www.editions-hyx.com/fr/code-x.</span>
<span>Antoine Fauchié, “Lire, écrire et partager en numérique,” in <i>Lire+écrire : un livre numérique sur l’édition,la lecture et l’écriture en réseau</i>, ed. Catherine Lenoble (Toulouse, France: Editions publie.net : Région Pays de la Loire, 2014).</span>
<span>Antoine Fauchié and Thomas Parisot, “Repenser les chaînes de publication par l’intégration des pratiques du développement logiciel,” <i>Sciences du Design</i> n° 8, no. 2 (December 14, 2018): 45–56, http://www.cairn.info/revue-sciences-du-design-2018-2-page-45.htm.</span>
<span>“Snapshot,” accessed March 27, 2019, https://dlis.hypotheses.org/4381.</span>
<span>“Snapshot,” accessed July 19, 2018, https://www.quaternum.net/2014/04/26/latex-et-jekyll/.</span>
<span>“Snapshot,” accessed June 30, 2018, https://www.quaternum.net/2015/07/07/from-to/.</span>
<span>“Snapshot,” accessed January 31, 2019, https://memoire.quaternum.net/.</span>
<span>“Snapshot,” accessed May 25, 2018, https://www.quaternum.net/2013/03/29/zeitgeist/.</span>
<span>“Library Catalog Entry Snapshot,” accessed March 10, 2019, http://www.sudoc.abes.fr/DB=2.1/SRCH?IKT=12&#38;TRM=20022946X.</span>
<span>“Snapshot,” accessed December 14, 2018, http://www.cairn.info/revue-sciences-du-design-2018-2-page-45.htm.</span>
<span>“Snapshot,” accessed June 1, 2018, https://www.quaternum.net/2018/04/04/une-reappropriation-des-donnees-par-leur-structuration/.</span>
<span>“Snapshot,” accessed September 22, 2017, http://strabic.fr/Workshop-PrePostPrint.</span>
<span>“Snapshot,” accessed April 30, 2018, https://jamstatic.fr/2017/01/23/produire-des-livres-avec-le-statique/.</span>
<span>“Snapshot,” accessed July 19, 2018, https://www.quaternum.net/2016/06/02/le-fanzinat-des-gens-du-web/.</span>
<span>“Full Text PDF,” accessed December 14, 2018, http://www.cairn.info/load_pdf.php?ID_ARTICLE=SDD_008_0045&#38;download=1.</span>
<span>“Link to Library Catalog Entry,” accessed March 10, 2019, http://www.sudoc.fr/20022946X.</span>
<span>“Annuel,” n.d.</span>
<span>“Description d’après La Consultation Du 2017-04-04. - Titre Provenant de l’écr,” n.d.</span>
<span>Antoine Fauchié, “Vers un système modulaire de publication: mémoire de Master Publication numérique, Enssib, sous la direction d’Anthony Masure et Marcello Vitali-Rosati,” 2018, https://memoire.quaternum.net.</span>
<span>Antoine Fauchié, “Une Chaîne de Publication Inspirée Du Web,” <i>Quaternum.Net</i> (blog), March 13, 2017, https://www.quaternum.net/2017/03/13/une-chaine-de-publication-inspiree-du-web/.</span>
<span>Antoine Fauchié, “LaTeX et Jekyll : deux workflows de publication,” <i>quaternum.net</i> (blog), April 26, 2014, https://www.quaternum.net/2014/04/26/latex-et-jekyll/.</span>
<span>Antoine Fauchié, “Zeitgeist : le fond, la forme, et le reste,” <i>quaternum.net</i> (blog), March 29, 2013, https://www.quaternum.net/2013/03/29/zeitgeist/.</span>
<span>Antoine Fauchié, “From—To : une publication contemporaine,” <i>quaternum.net</i> (blog), July 7, 2015, https://www.quaternum.net/2015/07/07/from-to/.</span>
<span>Antoine Fauchié, “Interopérable, modulaire et multiforme : l’âge d’or de l’édition numérique ? Démonstration par une démarche performative,” <i>DLIS - Digital Libraries &#38; Information Sciences</i> (blog), March 27, 2019, https://dlis.hypotheses.org/4381.</span>
<span>Antoine Fauchié, “Vers Un Système Modulaire de Publication: Éditer Avec Le Numérique” (Colloque international, Repenser les humanités numériques / Thinking the Digital Humanities Anew, Montréal, Canada, October 27, 2018), https://presentations.quaternum.net/systeme-modulaire-de-publication-crihn/.</span>
<span>Eric Gardner, Publier des livres avec un générateur de site statique, interview by Antoine Fauchié, January 23, 2017, https://jamstatic.fr/2017/01/23/produire-des-livres-avec-le-statique/.</span>
<span>Antoine Fauchié, “Une réappropriation des données par leur structuration,” <i>quaternum.net</i> (blog), April 4, 2018, https://www.quaternum.net/2018/04/04/une-reappropriation-des-donnees-par-leur-structuration/.</span>
<span>Antoine Fauchié, “Le fanzinat des gens du web,” <i>quaternum.net</i> (blog), June 2, 2016, https://www.quaternum.net/2016/06/02/le-fanzinat-des-gens-du-web/.</span>
<span>Julie Blanc and Antoine Fauchié, “(Re)Penser Les Chaînes de Publication : Soutenabilité et Émancipation” (Colloque international, Orléans, November 10, 2017).</span>
<span>Antoine Fauchié, “Git Comme Nouvel Ingrédient Des Chaînes de Publication” (Colloque international, ÉCRIDIL, Montréal, Canada, April 30, 2018), http://presentations.quaternum.net/git-comme-nouvel-ingredient-des-chaines-de-publication/.</span>
<span>Peppe Cavallari, “Le Web affectif. Une économie numérique des émotionsCamille Alloing, Julien Pierre, INA Éditions, 2017,” <i>Interfaces numériques</i> 7, no. 2 (2018): 566–72, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/22359.</span>
<span>Jane Baldwin et al., <i>Vies et morts de la création collective</i>, Vox theatri (Collection) (Sherborn, MA: Vox theatri ; Salaberry-de-Valleyfield Québec, 2008).</span>
<span>“« Éditorialiser Le Monde Cartographies, Connaissances Et Réalité » : Free Download, Borrow, and Streaming : Internet Archive,” accessed March 26, 2019, https://archive.org/details/DditorialiserLeMondeCartographiesConnaissancesEtRaalit.</span>
<span>Marcello Vitali-Rosati, <i>« Éditorialiser Le Monde Cartographies, Connaissances Et Réalité » : Free Download, Borrow, and Streaming : Internet Archive</i>, accessed March 26, 2019, https://archive.org/details/DditorialiserLeMondeCartographiesConnaissancesEtRaalit.</span>
<span>“Snapshot,” accessed March 25, 2019, http://ateliers.sens-public.org/l-espace-numerique/index.html.</span>
<span>“Full Text PDF,” accessed March 25, 2019, http://ateliers.sens-public.org/l-espace-numerique/media/Mechoulan_Vitali-Rosati_L-espace-numerique_2018.pdf.</span>
<span>Enrico Agostini Marchese, “Montréal dans la littérature numérique contemporaine. Ville, flâneries et dérives,” <i>Interfaces Brasil/Canadá, Revista Brasileira de Estudos Canadenses</i> 17, no. 3 (2017): 50–60, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19842.</span>
<span>Michael Nardone, “Rafael Lozano-Hemmer at the Musée d’art Contemporain de Montréal,” <i>Frieze</i>, no. 198 (2018): 264.</span>
<span>Michael Nardone, “We Are the Amp: On the Human Microphone,” in <i>Public Poetics. Critical Issues in Canadian Poetry and Poetics</i> (Waterloo: Wilfrid Laurier University Press, 2015), 289–311.</span>
<span>Michael Nardone, “LISTEN! LISTEN! LISTEN! Jackson Mac Low’s Phonopoetics,” <i>AModern</i>, no. 4 (2015), http://amodern.net/article/listen-listen-listen/.</span>
<span>Michael Nardone, “Skirmish at the Oasis: On Sonic Disobedience,” <i>Leonardo Music Journal</i> 26 (2016): 93–96, https://doi.org/10.1162/LMJ_a_00983.</span>
<span>Michael Nardone, “On Settler Conceptualism,” <i>Jacket2</i>, February 5, 2016, https://jacket2.org/article/settler-conceptualism.</span>
<span>Thomas Carrier-Lafleur, “Comment parler de ce que l’on aime ? Poétique de l’indirect et origine des médias chez le dernier Roland Barthes,” <i>MuseMedusa</i>, no. 6 (2018), http://musemedusa.com/dossier_6/carrier-lafleur/.</span>
<span>Margot Mellet, “Des signatures à soi. Marguerite par Marguerite,” <i>MuseMedusa</i>, no. 6 (2018), http://musemedusa.com/dossier_6/mellet/.</span>
<span>Élisabeth Routhier, “Le faire disparaître : pour une théorie de l’hypermédiateté,” <i>MuseMedusa</i>, no. 6 (2018), http://musemedusa.com/dossier_6/routhier/.</span>
<span>Enrico Agostini Marchese, “Entre le son et la cloche, l’air cristallin,” <i>Sens Public</i>, March 1, 2018, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19956.</span>
<span>Servanne Monjour, “La réinvention du passé,” <i>Sens Public</i>, March 7, 2018, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19954.</span>
<span>Élisabeth Routhier, “Performativité et éthique de la remédiation dans Dora Bruder, de Patrick Modiano,” <i>Itinéraires</i>, no. 2016–2 (April 25, 2017), https://doi.org/10.4000/itineraires.3415.</span>
<span>Rémi Ronfard et al., “Capturing and Indexing Rehearsals: The Design and Usage of a Digital Archive of Performing Arts,” 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16065.</span>
<span>Servanne Monjour, “Les virtualités du sténopé dans « Le Retour imaginaire » d’Atiq Rahimi,” in <i>Transactions photolittéraires</i>, ed. Jean-Pierre Montier, Interférences (Rennes: Presses universitaires de Rennes, 2015), 359–71, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13828.</span>
<span>Servanne Monjour, “La victoire du lobby gallinacé, ou les enjeux de la révolution numérique dans l’oeuvre photofictionnelle de Joan Fontcuberta,” <i>Aletria</i> 24, no. 2 (2014): 221–30, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13109.</span>
<span>Joëlle Le Marec and Nicolas Sauret, “Archivage de répétitions et médiations du spectacle vivant. Le cas du projet spectacle en ligne(s),” <i>Les Cahiers du numérique</i> 12, no. 3 (September 14, 2016): 139–64, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16066.</span>
<span>Jean-Marc Larrue and Giusy Pisano, eds., “Introduction,” in <i>Les archives de la mise en scène: hypermédialités du théâtre</i>, Arts du spectacle. Images et sons (Villeneuve-d’Ascq: Presses universitaires du Septentrion, 2014), 9–21, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13221.</span>
<span>Jean-Marc Larrue, “Théâtralité, Médialité et Sociomédialité : Fondements et Enjeux de l’intermédialité Théâtrale,” <i>Theatre Research in Canada / Recherches Théâtrales Au Canada</i> 32, no. 2 (2011): 174–206, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13096.</span>
<span>Jean-Marc Larrue, “Théâtre et Intermédialité : Une Rencontre Tardive,” <i>Intermédialités</i>, no. 12 (2008): 13–29, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13097.</span>
<span>Peppe Cavallari, “Le Phonopostale et les sonorines : un échec riche d’idées,” <i>Cahier Louis-Lumière</i>, no. 10 (2016): 77–86, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18300.</span>
<span>Peppe Cavallari, “Safety check : réseaux numériques et sentiment de sécurité,” <i>Sens Public</i>, November 30, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13092.</span>
<span>Peppe Cavallari, “Âme et iPad de Maurizio Ferraris,” <i>Sens Public</i>, October 6, 2014, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13099.</span>
<span>Thomas Carrier-Lafleur and Guillaume Lavoie, “La Réflexion Médiatique Dans Kid Sentiment de Jacques Godbout,” <i>Nouvelles Vues. Revue Sur Les Pratiques et Les Théories Du Cinéma Au Québec</i>, no. 16 (2015), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18998.</span>
<span>Thomas Carrier-Lafleur, “Opening Night et la remédiation théâtrale. « Film-balade » ou film « tragique » ?,” <i>Études littéraires</i> 45, no. 3 (2014): 43–63, https://doi.org/10.7202/1032444ar.</span>
<span>Thomas Carrier-Lafleur, “Film Socialisme ou l’hybridité de l’écriture. Vers une nouvelle ‘caméra-stylo’ ?,” <i>Fixxion</i>, no. 7 (October 29, 2013): 46–59, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18979.</span>
<span>Thomas Carrier-Lafleur, “Gester avec Godard. Fictions de l’histoire et vies de l’image,” <i>Entrelacs</i>, no. 10 (July 31, 2013), https://doi.org/10.4000/entrelacs.428.</span>
<span>Thomas Carrier-Lafleur, “Fictions du vide. Scénario pour une enquête cinématographique et littéraire,” <i>@nalyses</i> 8, no. 2 (2013): 435–65, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18977.</span>
<span>Thomas Carrier-Lafleur, “La Pureté et La Coexistence. Sur À Tout Prendre de Claude Jutra,” <i>Nouvelles Vues. Revue Sur Les Pratiques et Les Théories Du Cinéma Au Québec</i>, no. 13 (2012), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18975.</span>
<span>Thomas Carrier-Lafleur, “Imaginaire médiatique et dynamique du regard dans l’œuvre proustienne,” <i>@nalyses</i> 6, no. 2 (2011): 233–69, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18971.</span>
<span>George Brown, Gerd Hauck, and Jean-Marc Larrue, “« Mettre En Scène »,” <i>Intermédialités</i>, no. 12 (2008): 9–12, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13098.</span>
<span>Chloé Savoie-Bernard and Jean-François Thériault, “Ouvrir le livre et voir l’écran : pratiques littéraires et pratiques numériques,” <i>Sens Public</i>, December 22, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16360.</span>
<span>Élisabeth Routhier and Jean-François Thériault, “Performance auctoriale et dispositif littéraire. Autour de Pourquoi Bologne d’Alain Farah,” <i>Fabula. Colloques en ligne</i>, February 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18983.</span>
<span>Élisabeth Routhier, “Remédiation et interaction dans le milieu textuel,” <i>Sens Public</i>, October 3, 2014, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13103.</span>
<span>Servanne Monjour, “Dibutade 2.0 : la « femme-auteur » à l’ère du numérique,” <i>Sens Public</i>, September 24, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12998.</span>
<span>Jean-Marc Larrue, ed., “Introduction,” in <i>Théâtre et Intermédialité</i>, Arts Du Spectacle. Images et Sons (Villeneuve-d’Ascq: Presses universitaires du Septentrion, 2015), 13–23, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13220.</span>
<span>François Bon, <i>ARNAUD MAISETTI | QUAND VOUS ME VERREZ, CE N’EST PAS MOI</i>, accessed May 25, 2016, https://www.youtube.com/watch?v=mmVKoBd-rxs.</span>
<span>Dominic Forest and Michael E. Sinatra, “Lire à l’ère du numérique Le nénuphar et l’araignée de Claire Legendre,” <i>Sens Public</i>, December 22, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16361.</span>
<span>Émilie Folie-Boivin, “Imaginer Le Roman de Demain,” <i>Le Devoir</i>, October 3, 2015, http://www.ledevoir.com/culture/livres/451541/imaginer-le-roman-de-demain.</span>
<span>Thomas Carrier-Lafleur and Michaël Di Vita, “Proust. Méthode d’exister,” <i>Klesis. Revue Philosophique</i>, no. 20 (2011): 39–61, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18974.</span>
<span>Thomas Carrier-Lafleur, “Le roman d’apprentissage à l’ère de la modernité : Foucault, Pirandello, Aragon et le spectacle du siècle,” <i>@nalyses</i> 10, no. 1 (2015): 240–74, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18984.</span>
<span>Thomas Carrier-Lafleur, “Le mystère Littérature : la vocation « marginale » chez Foucault, Proust et Cendrars,” <i>Cygne noir. Revue d’exploration sémiotique</i>, no. 3 (2015), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18986.</span>
<span>Thomas Carrier-Lafleur, “« Le Contraire de l’espace ». La Place de La Littérature Chez Blanchot, Céline et Foucault,” <i>Word and Text</i> 5, no. 1–2 (2015): 107–22, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19175.</span>
<span>Thomas Carrier-Lafleur, “Le rôle des déceptions dans À la recherche du temps perdu de Marcel Proust. Autofiction, crise du sujet et montage identitaire,” <i>Études littéraires</i> 42, no. 2 (2011): 139–59, https://doi.org/10.7202/1011526ar.</span>
<span>Thomas Carrier-Lafleur, “Introspection créatrice et comédie humaine. Proust, Balzac et Bergson,” <i>@nalyses</i> 6, no. 3 (2011): 235–77, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18972.</span>
<span>Thomas Carrier-Lafleur, “Proust et l’autofiction : vers un montage des identités,” <i>@nalyses</i> 5, no. 2 (2010): 1–25, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18969.</span>
<span>Enrico Agostini Marchese, “La littérature à la dérive numérique. De lignes, d’écriture et d’espaces,” <i>Sens Public</i>, December 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19744.</span>
<span>“0000 Mots Clé,” n.d.</span>
<span>Michael E. Sinatra and Marcello Vitali-Rosati, eds., <i>Pratiques de l’édition numérique</i>, Parcours Numériques (Montréal: Presses de l’Université de Montréal, 2014), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12981.</span>
<span>Michael E. Sinatra, “Promoting Open Access and Innovations: From Synergies to Le Centre de Recherche Interuniversitaire Sur Les Humanités Numériques,” <i>Scholarly and Research Communication</i> 6, no. 4 (2015), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13002.</span>
<span>Nicolas Sauret and Ariane Mayer, “L’autorité Dans Anarchy. Les Constructions de l’autorité et de l’auctorialité Dans Un Dispositif de Production Littéraire Collaborative : Le Cas de l’expérience Transmédia Anarchy.Fr,” <i>Quaderni</i>, no. 91 (2016), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16070.</span>
<span>Servanne Monjour, <i>La littérature à l’ère photographique : mutations, novations, enjeux : de l’argentique au numérique</i> (Montréal: Université de Montréal et Université Rennes 2, 2016), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13614.</span>
<span>Fabrice Marcoux, “Le Livrel et Le Format EPub,” in <i>Pratiques de l’édition Numérique</i>, ed. Marcello Vitali-Rosati and Michael E. Sinatra, Parcours Numérique (Montréal: Presses de l’Université de Montréal, 2014), 177–89, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13095.</span>
<span>Teresa Dobson et al., “Citation Rhetoric Examined,” <i>Proceedings of the 2010 Digital Humanities Conference</i>, 2010, 7–10, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13217.</span>
<span>Peppe Cavallari, “« À quoi rêvent les algorithmes ? » Le dernier ouvrage de Dominique Cardon,” <i>Sens Public</i>, November 9, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13090.</span>
<span>Peppe Cavallari, “L’importance d’un avertissement : une lecture de « L’homme imbibé. De l’oral au numérique : un enjeu pour l’avenir des cultures? »,” <i>Sens Public</i>, October 25, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13091.</span>
<span>Peppe Cavallari, “Une réflexion philosophique inédite sur le web. Une lecture de « L’être et l’écran. Comment le numérique change la perception » de Stéphane Vial,” <i>Sens Public</i>, January 28, 2014, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13094.</span>
<span>Mark Bieber et al., “Drilling for Papers in INKE,” <i>Scholarly and Research Communication</i> 3, no. 1 (March 26, 2012), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13000.</span>
<span>Stéphane Baillargeon, “L’influence d’un Livrel,” <i>Le Devoir</i>, September 22, 2014, http://www.ledevoir.com/culture/actualites-culturelles/419081/l-influence-d-un-livrel.</span>
<span>Michael E. Sinatra, “Shelley’s Editing Process in the Preface to Epipsychidion,” <i>The Keats-Shelley Review</i> 11, no. 1 (1997): 167–81, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13514.</span>
<span>Guillaume Lavoie and Thomas Carrier-Lafleur, “Cinématographier la sensation, fabuler le cinéma Sur deux adaptations orphelines de la Recherche,” <i>Sensations proustiennes</i>, no. 13 (2016): 67–82, https://doi.org/10.1163/9789004329010_006.</span>
<span>“‘Colloque International Organisé À Rennes ... Au Printemps 2014’--Page 15,” n.d.</span>
<span>Thomas Carrier-Lafleur and David Bélanger, “Le Café Ou Le Néant. Enquête Sur l’absurde Dans Le Café Romanesque Français Des Années 1930-1950,” <i>Implications Philosophiques</i>, July 27, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18997.</span>
<span>Thomas Carrier-Lafleur, “Archéologies de soi et marges de la modernité. L’écriture de l’enfance dans Du côté de chez Swann et Mort à crédit,” <i>@nalyses</i> 10, no. 3 (September 27, 2015): 247–75, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19174.</span>
<span>Thomas Carrier-Lafleur, “Regards de la modernité. Simulacre et négativité dans Les Carnets de Malte Laurids Brigge et On tourne,” <i>@nalyses</i> 11, no. 3 (September 5, 2016): 163–82, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19176.</span>
<span>Thomas Carrier-Lafleur, “La Littérature en marge du cinéma ou la négation cinématographique,” in <i>Le cinéma de la littérature</i>, ed. Jean Cléder and Frank Wagner (Lormont: Éditions nouvelles Cécile Defaut, 2017), 93–117, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19178.</span>
<span>Peppe Cavallari, “Les gestes dans l’environnement numérique : la ponctuation des affects,” <i>Revue française des sciences de l’information et de la communication</i>, no. 11 (August 1, 2017), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19745.</span>
<span>Nicolas Sauret, “Epistémologie du modèle. Des Humanités syntaxiques ?,” <i>Sens Public</i>, December 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19746.</span>
<span>“Snapshot,” accessed January 3, 2018, http://sens-public.org/article1287.html?lang=fr.</span>
<span>“Snapshot,” accessed September 21, 2017, http://rfsic.revues.org/2882.</span>
<span>“Full Text PDF,” accessed September 21, 2017, http://rfsic.revues.org/pdf/2882.</span>
<span>Thomas Carrier-Lafleur, <i>L’Œil cinématographique de Proust</i>, Bibliothèque Proustienne 15 (Paris: Classiques Garnier, 2015).</span>
<span>Thomas Carrier-Lafleur, “Virtualités de Blaise Cendrars. La référence cinématographique à l’œuvre dans l’écriture du reportage,” <i>Trans-. Revue de littérature générale et comparée</i>, no. 18 (October 26, 2014), https://doi.org/10.4000/trans.1050.</span>
<span>Thomas Carrier-Lafleur, “‘Le Regard de La Science’. Retour Sur La Métaphore Cinématographique Dans Le Quatrième Chapitre de L’Évolution Créatrice,” <i>Implications Philosophiques</i>, December 20, 2013, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18980.</span>
<span>Thomas Carrier-Lafleur and Michaël Di Vita, “Laboratoire Fictionnel En Vue d’une Philosophie Romanesque de La Nature. Ressouvenir Proustien et Reprise Kierkegaardienne,” <i>Klesis. Revue Philosophique</i>, no. 25 (2013): 51–85, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18976.</span>
<span>Thomas Carrier-Lafleur, “Archéologie de la vie moderne. Foucault, Baudelaire, Proust et la question du présent,” in <i>Archéologie du Contre Sainte-Beuve</i>, ed. Michel Brix, Bibliothèque proustienne 14 (Paris: Classiques Garnier, 2015), 121–38.</span>
<span>Thomas Carrier-Lafleur, <i>Une philosophie du « temps à l’état pur » : l’autofiction chez Proust et Jutra</i>, Zêtêsis : esthétiques (Paris/Québec: Librairie philosophique J. Vrin / Presses de l’Université Laval, 2010).</span>
<span>Thomas Carrier-Lafleur, Guillaume Lavoie, and Jean-Pierre Sirois-Trahan, “La camera obscura de Proust,” <i>Revue d’études proustiennes</i>, no. 4 (2016): 9–17.</span>
<span>Thomas Carrier-Lafleur and Guillaume Lavoie, “Les dispositifs retrouvés. Images et objets techniques dans Le Temps retrouvé de Raoul Ruiz,” <i>Revue d’études proustiennes</i>, no. 4 (2016): 315–39.</span>
<span>Thomas Carrier-Lafleur, “Les deux Nana. Mondes originaires, pulsions de dépense et transferts médiatiques,” <i>Médias19</i>, June 13, 2013, http://www.medias19.org/index.php?id=13390.</span>
<span>Servanne Monjour, “L’écrivain de profil(s)... Facebook. Réflexion autour d’une photographie de profil de Victoria Welby,” in <i>L’écrivain vu par la photographie. Formes, usages, enjeux</i>, by David Martens, Jean-Pierre Montier, and Anne Reverseau (Rennes: Presses universitaires de Rennes, 2017), 219–28, http://hdl.handle.net/1866/18302.</span>
<span>Enrico Agostini Marchese, “Les structures spatiales de l’éditorialisation. Terre et mer de Carl Schmitt et l’espace numérique,” <i>Sens Public</i>, March 10, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/18301.</span>
<span>“Snapshot,” accessed December 23, 2016, http://www.sens-public.org/article1228.html?lang=fr.</span>
<span>Nicolas Sauret, “Collaboration de recherche avec les musées, une opportunité pour penser l’appropriation des ressources,” in <i>Musées et Recherche. Expérimenter et coopérer : dialogues sur le sens de l’innovation</i>, by Joëlle Le Marec and Ewa Maczek (Dijon: OCIM, 2015), 119–31, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16064.</span>
<span>Michael E. Sinatra, “On Watching Rather than Reading Count Basil,” <i>European Romantic Review</i> 15, no. 2 (2004): 364, https://doi.org/10.1080/1050958042000215486.</span>
<span>“Snapshot,” accessed October 18, 2016, https://hal.inria.fr/hal-01178053.</span>
<span>“Full Text PDF,” accessed October 18, 2016, https://hal.inria.fr/hal-01178053/document.</span>
<span>“Snapshot,” accessed October 17, 2016, http://www.cairn.info/revue-les-cahiers-du-numerique-2016-3-page-139.htm.</span>
<span>Samuel Huron, Nicolas Sauret, and Raphael Velt, “Design MetaData - Retour d’expérience sur un atelier de design interactif interdisciplinaire dans une démarche d’innovation ouverte,” <i>Interfaces numériques</i> 3, no. 2 (2014): 269–88, https://hal.inria.fr/hal-00987995.</span>
<span>“Snapshot,” accessed October 17, 2016, https://hal.inria.fr/hal-00987995.</span>
<span>Rose Carine Henriquez, “Deux Chaires de Recherche En Résonance,” <i>Quartier Libre</i>, avril 2016, http://quartierlibre.ca/deux-chaires-de-recherche-en-resonance/.</span>
<span>“Snapshot,” accessed May 12, 2016, http://quartierlibre.ca/deux-chaires-de-recherche-en-resonance/.</span>
<span>Michael E. Sinatra, “Science, Gender and Otherness in Shelley’s Frankenstein and Kenneth Branagh’s Film Adaptation,” <i>European Romantic Review</i> 9, no. 2 (March 1, 1998): 253–70, https://doi.org/10.1080/10509589808570051.</span>
<span>Michael E. Sinatra, “Introducing « Critical Essays » : Leigh Hunt and Theatrical Criticism in the Early Nineteenth Century,” <i>Keats-Shelley Journal</i> 50 (2001): 100–123, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13516.</span>
<span>Thomas Crochunis and Michael E. Sinatra, “Putting Plays (And More) In Cyberspace: An Overview of the British Women Playwrights around 1800 Project,” <i>European Romantic Review</i> 14, no. 1 (2003): 117–31, https://doi.org/10.1080/10509580303680.</span>
<span>Michael E. Sinatra, “Exploring Gothic Sexuality,” <i>Gothic Studies</i> 7, no. 2 (2005): 123–26, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13518.</span>
<span>Michael E. Sinatra, “Readings of Homosexuality in Mary Shelley’s « Frankenstein » and Four Film Adaptations,” <i>Gothic Studies</i> 7, no. 2 (2005): 185–202, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13519.</span>
<span>Joel Faflak and Michael E. Sinatra, “Introduction: Deviance and Defiance,” <i>European Romantic Review</i> 17, no. 2 (2006): 133–38, https://doi.org/10.1080/10509580600687442.</span>
<span>Michael E. Sinatra, “Representing Leigh Hunt’s Autobiography,” in <i>Virtual Victorians : Networks, Connections, Technologies</i>, ed. Veronica Alfano and Andrew Stauffer (New York: Palgrave Macmillan, 2016), 107–19, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13537.</span>
<span>Michael E. Sinatra, “Totally Clueless : Heckerling and Queer Sexuality in Austen’s « Emma »,” in <i>Victorian Literature and Film Adaptation</i>, ed. Abigail Burnham Bloom and Mary Sanders Pollock (New York: Cambria Press, 2011), 123–33, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13541.</span>
<span>Michael E. Sinatra, “Gender, Authorship and Male Domination : Mary Shelley’s Limited Freedom in « Frankenstein » and « The Last Man »,” in <i>Mary Shelley’s Fictions: From Frankenstein to Falkner</i>, ed. Michael E. Sinatra (New York: Palgrave Macmillan, 2000), 95–108, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13564.</span>
<span>Michael E. Sinatra, “Performing Leigh Hunt’s 1840 Play « A Legend of Florence »,” in <i>Transnational England: Home and Abroad, 1780-1860</i>, ed. Monika Class and Terry F. Robinson (Cambridge: Cambridge Scholars Publishing, 2009), 92–110, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13565.</span>
<span>Jean-Marc Larrue, “Théâtre et Intermédialité,” <i>Intermédialités</i>, no. 20 (2012): 101–17, http://id.erudit.org/iderudit/1023528ar.</span>
<span>Richard Schittly (Lyon correspondant), “Comment Internet rebat les cartes de la création littéraire,” <i>Le Monde.fr</i>, March 16, 2016, sec. Culture, http://www.lemonde.fr/livres/article/2016/03/16/comment-internet-rebat-les-cartes-de-la-creation-litteraire_4884057_3260.html.</span>
<span>Jean-Marc Larrue, “Mémoire et Appropriation : Essai Sur La Mémoire Théâtrale Au Québec,” <i>L’Annuaire Théâtral</i>, no. 5–6 (1988): 61–72, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13191.</span>
<span>Jean-Marc Larrue, “Éditorial : ‘L’annuaire Théâtral’ et Le Théâtre,” <i>L’Annuaire Théâtral</i>, no. 5–6 (1988): 9–10, http://id.erudit.org/iderudit/041055ar.</span>
<span>“Snapshot,” accessed April 11, 2016, http://www.lemonde.fr/livres/article/2016/03/16/comment-internet-rebat-les-cartes-de-la-creation-litteraire_4884057_3260.html.</span>
<span>Marcello Vitali-Rosati, “La fin de la distinction entre réalité et fiction,” blogPost, <i>Culture numérique</i> (blog), January 12, 2013, http://blog.sens-public.org/marcellovitalirosati/la-fin-de-la-distinction-entre-realite-et-fiction/.</span>
<span>Michael E. Sinatra, “A Revaluation of Leigh Hunt’s « Lord Byron and Some of His Contemporaries »,” <i>The Byron Journal</i> 29 (January 1, 2001): 17–26, https://doi.org/10.3828/BJ.2001.3.</span>
<span>Thierry Crouzet, “Nous Sommes Tous Éditorialistes sans Le Savoir,” <i>Tcrouzet.Com</i> (blog), March 2, 2016, http://tcrouzet.com/2016/02/03/nous-sommes-tous-editorialistes-dans-le-savoir/?platform=hootsuite.</span>
<span>Michael E. Sinatra and Stéfan Sinclair, “Repenser le numérique au 21ème siècle,” <i>Sens Public</i>, February 23, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13001.</span>
<span>Peppe Cavallari, “Après le dernier clic : que signifie mourir sur le web ?,” <i>Sens Public</i>, January 22, 2013, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13089.</span>
<span>Peppe Cavallari, “Toujours en ligne sur Facebook, ou l’utopie d’une absence,” <i>Sens Public</i>, October 11, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13093.</span>
<span>Jean-Marc Larrue, “Hervé Guay L’éveil Culturel – Théâtre et Presse à Montréal, 1898-1914,” <i>Theatre Research in Canada / Recherches Théâtrales Au Canada</i> 34, no. 1 (2013): 139–42, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13211.</span>
<span>Jean-Marc Larrue, “Le Burlesque Québécois : L’avant-Garde Version « peuple »,” <i>Jeu</i>, no. 104 (2002): 87–98, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13210.</span>
<span>Jean-Marc Larrue, “Le Théâtre Au Québec Entre 1930 et 1950 : Les Années Charnières,” <i>L’Annuaire Théâtral</i>, no. 23 (1998): 19–37, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13209.</span>
<span>Jean-Marc Larrue, “Les Paradoxes Du Lieu,” <i>L’Annuaire Théâtral</i>, no. 17 (1995): 9–16, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13208.</span>
<span>Jean-Marc Larrue, “Le Cinéma Des Premiers Temps à Montréal et l’institution Du Théâtre,” <i>Cinémas</i> 6, no. 1 (1995): 119–31, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13207.</span>
<span>Josette Féral and Jean-Marc Larrue, “Présentation. Le Regard Du Spectateur : De La Voix Du Corps Au Corps de La Voix,” <i>L’Annuaire Théâtral</i>, no. 18 (1995): 9–13, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13206.</span>
<span>Jean-Marc Larrue, “La Scénographie Professionnelle Au Québec (1870-1990) Ou La Quête Historique d’un Pouvoir et d’une Reconnaissance,” <i>L’Annuaire Théâtral</i>, no. 11 (1992): 103–36, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13205.</span>
<span>Jean-Marc Larrue, “« O’Neill »,” <i>Jeu</i>, no. 59 (1991): 197–98, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13204.</span>
<span>Jean-Marc Larrue, “« Les Misérables »,” <i>Jeu</i>, no. 59 (1991): 184–87, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13203.</span>
<span>André-Gilles Bourassa and Jean-Marc Larrue, “Le Monument National (1893-1923) : Trente Ans de Théâtre Dans La Salle Ludger-Duvernay,” <i>L’Annuaire Théâtral</i>, no. 10 (1991): 69–100, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13202.</span>
<span>Jean-Marc Larrue, “L’image Dans Tous Ses États,” <i>Tangence</i>, no. 46 (1994): 7–19, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13201.</span>
<span>Jean-Marc Larrue, “« L’affaire Tartuffe, or the Garrison Officers Rehearse Molière »,” <i>Jeu</i>, no. 57 (1990): 160–63, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13200.</span>
<span>Jean-Marc Larrue, “Idola et Les Femmes,” <i>L’Annuaire Théâtral</i>, no. 7 (1990): 5–7, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13199.</span>
<span>Jean-Marc Larrue, “De l’expérience Collective à La Découverte Des Cycles,” <i>L’Annuaire Théâtral</i>, no. 8 (1990): 9–30, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13198.</span>
<span>Jean-Marc Larrue, “Contre,” <i>Jeu</i>, no. 55 (1990): 141–44, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13197.</span>
<span>Jean-Marc Larrue, “Sur Les Scènes Montréalaises,” <i>Cap-Aux-Diamants</i>, no. 35 (1993): 32–37, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13196.</span>
<span>Jean-Marc Larrue, “Compte Rendu. « Veilleurs de Nuit. Saison Théâtrale 1988-1989 » de David Gilbert,” <i>L’Annuaire Théâtral</i>, no. 7 (1990): 103–6, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13195.</span>
<span>Jean-Marc Larrue, “« Bousille et Les Justes »,” <i>Jeu</i>, no. 56 (1990): 152–54, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13194.</span>
<span>Jean-Marc Larrue, “Le Théâtre Expérimental et La Fin de l’unique,” <i>Jeu</i>, no. 52 (1989): 64–72, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13193.</span>
<span>Jean-Marc Larrue, “Compte Rendu. ‘Le Burlesque Québécois et Américain’ de Chantal Hébert,” <i>Revue d’histoire de l’Amérique Française</i> 43, no. 2 (1989): 267–68, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13192.</span>
<span>Jean-Marc Larrue, “« Il Faut Tuer Broadway » : Création Du Her Majesty’s Theatre et Des Soirées de Famille Du Monument National,” <i>L’Annuaire Théâtral</i>, no. 4 (1988): 47–80, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13188.</span>
<span>Jean-Marc Larrue, “Les Véritables Débuts de La Revue Québécoise,” <i>L’Annuaire Théâtral</i>, no. 3 (1987): 39–70, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13187.</span>
<span>Jean-Marc Larrue, “Le Splendide Délire d’un Soliloque à Vingt Voix,” <i>Jeu</i>, no. 38 (1986): 98–99, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13186.</span>
<span>Jean-Marc Larrue, “Les Débuts de La Critique Dramatique Au Québec (1870-1896) : Un Contexte Difficile,” <i>Jeu</i>, no. 40 (1986): 111–21, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13185.</span>
<span>Jean-Marc Larrue, “« Theatre in French Canada: Laying the Foundations 1606-1867 »,” <i>Jeu</i>, no. 37 (1985): 202–4, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13184.</span>
<span>Jean-Marc Larrue, “L’organisation Du Théâtre à Montréal de 1880 à 1883 : Trois Année Cruciales,” <i>L’Annuaire Théâtral</i>, no. 1 (1985): 139–80, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13183.</span>
<span>Jean-Marc Larrue, “« Le Cyclope »,” <i>Jeu</i>, no. 35 (1985): 158–59, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13182.</span>
<span>Jean-Marc Larrue, “Montréal à La Belle Époque,” <i>Jeu</i>, no. 27 (1983): 5–26, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13181.</span>
<span>Jean-Marc Larrue, “La contre-culture et le théâtre francophone,” in <i>La contre-culture au Québec</i>, ed. Karim Larose and Frédéric Rondeau, Nouvelles études québécoises (Montréal: Presses de l’Université de Montréal, 2016), 283–314, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13177.</span>
<span>Michael E. Sinatra, “The Matrix : The Way of the Future? Replacing Neuromancer within the Postmodern Condition,” in <i>Perspectives on the Canadian Fantastic: Proceedings of the 1997 Academic Conference on Canadian Science Fiction and Fantasy</i>, ed. Allan Barry Weiss (Toronto: ACCSFF, 1998), 111–19.</span>
<span>Michael E. Sinatra, “« Senators and Actors » : Leigh Hunt’s Theatrical Criticism and the Regency,” in <i>The Regency Revisited</i>, ed. Michael E. Sinatra and Tim Fulford (New York: Palgrave Macmillan, 2016), 93–104.</span>
<span>Servanne Monjour, “L’esthétique loufoque chez Éric Chevillard,” <i>@nalyses</i> 6, no. 2 (2011): 195–218, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13106.</span>
<span>Michael E. Sinatra, “From Dante to the Romantics : The Reception History of Leigh Hunt’s « The Story of Rimini »,” <i>The Charles Lamb Bulletin</i>, no. 116 (2001): 120–43, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12999.</span>
<span>“Snapshot,” accessed February 18, 2016, http://www.nouvelles.umontreal.ca/recherche/financement/20160215-pres-de-30-millions-pour-la-recherche-a-luniversite-de-montreal.html.</span>
<span>BCRP-Alice De Forges De Parny, “Près de 30 M$ Pour La Recherche à l’Université de Montréal - UdeMNouvelles,” Nouvelles.umontreal.ca, accessed February 18, 2016, http://www.nouvelles.umontreal.ca/recherche/financement/20160215-pres-de-30-millions-pour-la-recherche-a-luniversite-de-montreal.html.</span>
<span>Michael E. Sinatra, “« A Natural Piety » : Leigh Hunt’s « The Religion of the Heart »,” <i>Allen Review</i>, no. 19 (1998): 18–21.</span>
<span>Michael E. Sinatra, “The Flying Mariner? Richard Wagner’s « The Flying Dutchman » as the Concluding Part to Coleridge’s ‘The Rime of the Ancient Mariner,’” <i>The Coleridge Bulletin</i>, no. 16 (2000): 102–8.</span>
<span>Michael E. Sinatra, “Quelques reflexions sur l’adaptation cinematographique du roman de Monique Proulx, « Le Sexe des etoiles »,” <i>Essays on Canadian Writing</i>, no. 76 (2002): 139–48.</span>
<span>Michael E. Sinatra, “« I Will Live beyond This Life » : Shelley and His Reviewers,” <i>The Keats-Shelley Review</i> 13, no. 1 (1999): 88–104.</span>
<span>Tim Fulford and Michael E. Sinatra, “Introduction,” in <i>The Regency Revisited</i>, ed. Tim Fulford and Michael E. Sinatra (New York: Palgrave Macmillan, 2016), 1–15.</span>
<span>Jean-Marc Larrue, “Les Créations Scéniques de Louis-Honoré Fréchette: Juin 1880,” <i>Theatre Research in Canada / Recherches Théâtrales Au Canada</i> 7, no. 2 (1986), https://journals.lib.unb.ca/index.php/TRIC/article/view/7391/8450.</span>
<span>Robert Carvais and Emmanuel Château-Dutier, “Matérialiser et Rendre Perceptible La Transmission Orale Du Savoir. L’édition Électronique Des Cours d’Antoine Desgodets à l’Académie Royale d’architecture En France, 1719-1728,” in <i>DH2014. Actes Du Colloque International Des Digital Humanities 2014</i> (Lausanne: Digital humanities, 2014), http://dharchive.org/paper/DH2014/Paper-367.xml.</span>
<span>Emmanuel Château-Dutier, “Administrer les Arts en Conseil. L’enjeu de la collégialité au Conseil des bâtiments civils (1795-1848),” in <i>La collégialité et les dysfonctionnements dans la décision administrative</i>, ed. Jean-Michel Leniaud and François Monnier (Paris: Ecole pratique des hautes études, 2011).</span>
<span>Emmanuel Château-Dutier, “L’examen des plans d’alignement, une mission du Conseil des bâtiments civils,” in <i>Autour de la ville de Napoléon : colloque de La Roche-sur-Yon</i>, ed. Géraldine Rideau and Gilles Bienvenu, Art et société (Rennes: Presses universitaires de Rennes, 2006), 89–99.</span>
<span>“Snapshot,” accessed February 7, 2016, https://journals.lib.unb.ca/index.php/TRIC/article/view/7391/8450.</span>
<span>Tim Fulford and Michael E. Sinatra, eds., <i>The Regency Revisited</i>, 1st ed. 2015 edition (New York: Palgrave Macmillan, 2016).</span>
<span>Leigh Hunt, <i>Selected Writings of Leigh Hunt</i>, Pickering Masters (London: Pickering &#38; Chatto, 2003).</span>
<span>Michael E. Sinatra, ed., <i>Mary Shelley’s Fictions : From Frankenstein to Falkner</i> (Basingstoke: Macmillan Press ; New York, 2000).</span>
<span>Michael E. Sinatra, <i>Leigh Hunt and the London Literary Scene : A Reception History of His Major Works, 1805-1828</i>, MyiLibrary (New York: Routledge, 2005).</span>
<span>Michael E. Sinatra, “On the Other Side of the Anubis Gate: Coleridge and Science Fiction,” <i>La Questione Romantica</i>, no. 5 (1998): 165–71.</span>
<span>“Full Text PDF,” accessed February 6, 2016, http://www.tandfonline.com/doi/pdf/10.1080/1050958042000215486.</span>
<span>“Snapshot,” accessed February 6, 2016, http://www.tandfonline.com/doi/full/10.1080/1050958042000215486.</span>
<span>Jean-Marc Larrue, “« L’Affaire Tartuffe, or the Garrison Officers Rehearse Molière (Version 1992) »,” <i>Jeu</i>, no. 64 (1992): 157–59, http://id.erudit.org/iderudit/28146ac.</span>
<span>André-G. Bourassa, <i>Les nuits de la « Main » : cent ans de spectacles sur le boulevard Saint-Laurent (1891-1991)</i>, Études québécoises ; 30 (Montréal: VLB, 1993).</span>
<span>Jean-Marc Larrue, Giusy Pisano, and France) Colloque de Cerisy juin 19-23 : Cerisy-la-Salle, <i>Les archives de la mise en scène : hypermédialités du théâtre</i>, Arts du spectacle. Images et sons (Villeneuve-d’Ascq: Presses universitaires du Septentrion ; Cerisy-la-Salle, 2014).</span>
<span>Jean-Marc Larrue, <i>Théâtre et intermédialité</i>, Arts du spectacle. Images et sons, 1564 (Villeneuve d’Ascq: Presses universitaires du Septentrion, 2015).</span>
<span>Jean-Marc Larrue, “Présentation,” <i>L’Annuaire Théâtral</i>, no. 10 (1991): 5–7, http://id.erudit.org/iderudit/041136ar.</span>
<span>Jean-Marc Larrue, <i>L’activité théâtrale à Montréal : de 1880 à 1914</i> (Montréal: Université de Montréal, 1987).</span>
<span>Jean-Marc Larrue, “L’activité Dramatique à Montréal de 1890 à 1900,” n.d., http://digitool.library.mcgill.ca/R/-?func.</span>
<span>Jean-Marc Larrue, <i>Voilà la régate : livre d’initiation à la régate</i> (Montréal: BLaroche pour la Fédération, 1984).</span>
<span>Jean-Marc Larrue, <i>Le théâtre à Montréal à la fin du XIXe siècle</i> (Montréal: Fides, 1981).</span>
<span>Jean-Marc Larrue, <i>Le monument inattendu : le Monument-National de Montréal, 1893-1993</i>, Cahiers du Québec. Collection Histoire (LaSalle, Québec: Hurtubise HMH, 1993).</span>
<span>Jean-Marc Larrue, <i>L’institution littéraire et l’activité théâtrale : le cas de Montréal, 1880-1914</i>, Rapports de recherche (Université de Montréal. Centre de documentation des études québécoises) 4; (Montréal: Département d’études françaises, Centre de documentation des études québécoises, Université de Montréal, 1988).</span>
<span>Jean-Marc Larrue, “Éditorial,” <i>L’Annuaire Théâtral</i>, no. 2 (1987): 5–7, http://id.erudit.org/iderudit/041031ar.</span>
<span>Hélène Beauchamp and Jean-Marc Larrue, “Les Cycles Repère,” <i>L’Annuaire Théâtral</i>, no. 8 (1990): 131–43, http://id.erudit.org/iderudit/041114ar.</span>
<span>Jean-Marc Larrue, “Présentation,” <i>L’Annuaire Théâtral</i>, no. 12 (1992): 5–6, http://id.erudit.org/iderudit/041171ar.</span>
<span>“Vos Notices,” accessed February 1, 2016, https://www.erudit.org/panier/.</span>
<span>Michael E. Sinatra and Stefan Sinclair, “Repenser Le Numérique Au 21e Siècle,” <i>Sens Public</i>, 2015, 3–5, http://www.sens-public.org/IMG/pdf/Intro_2-2.pdf.</span>
<span>Michael E. Sinatra, “Tom Paulin and David Chandler, Eds. William Hazlitt’s The Fight and Other Writings. London: Penguin, 2000. ISBN: 1-357910-864-2. Price: £9.99.,” <i>Romanticism on the Net</i>, no. 19 (2000): 0–0, http://id.erudit.org/iderudit/005942ar.</span>
<span>“Snapshot,” accessed February 3, 2016, http://tcrouzet.com/2016/02/03/nous-sommes-tous-editorialistes-dans-le-savoir/?platform=hootsuite.</span>
<span>Marcello Vitali-Rosati, “Le numérique, est-il un support ?,” blogPost, <i>Culture numérique</i> (blog), November 29, 2013, http://blog.sens-public.org/marcellovitalirosati/le-numerique-est-il-un-support/.</span>
<span>Marcello Vitali-Rosati, “L’écrivain et ses techniques. Question iconographique.,” blogPost, <i>Culture numérique</i> (blog), November 16, 2013, http://blog.sens-public.org/marcellovitalirosati/lecrivain-et-ses-techniques-question-iconographique/.</span>
<span>Marcello Vitali-Rosati, “Maurizio Ferraris à Montréal,” blogPost, <i>Culture numérique</i> (blog), November 10, 2013, http://blog.sens-public.org/marcellovitalirosati/maurizio-ferraris-a-montreal/.</span>
<span>Marcello Vitali-Rosati, “S’orienter dans le virtuel en bulgare,” blogPost, <i>Culture numérique</i> (blog), November 1, 2013, http://blog.sens-public.org/marcellovitalirosati/sorienter-dans-le-virtuel-en-bulgare/.</span>
<span>Marcello Vitali-Rosati, “La littérature numérique est aux femmes,” blogPost, <i>Culture numérique</i> (blog), September 28, 2013, http://blog.sens-public.org/marcellovitalirosati/la-litterature-numerique-est-des-femmes/.</span>
<span>Marcello Vitali-Rosati, “In-between, entre-deux, actions, essences et interfaces,” blogPost, <i>Culture numérique</i> (blog), September 13, 2013, http://blog.sens-public.org/marcellovitalirosati/in-between-entre-deux-actions-essences-et-interfaces/.</span>
<span>Marcello Vitali-Rosati, “Interfaces ?,” blogPost, <i>Culture numérique</i> (blog), juin 2013, http://blog.sens-public.org/marcellovitalirosati/interfaces/.</span>
<span>Marcello Vitali-Rosati, “Lecture d’Enfanter l’inhumain d’Ollivier Dyens,” blogPost, <i>Culture numérique</i> (blog), mai 2013, http://blog.sens-public.org/marcellovitalirosati/lecture-denfanter-linhumain-dollivier-dyens/.</span>
<span>Marcello Vitali-Rosati, “Lecteur, auteur, acteur : statut et droits,” blogPost, <i>Culture numérique</i> (blog), mai 2013, http://blog.sens-public.org/marcellovitalirosati/lecteur-auteur-acteur-statut-et-droits/.</span>
<span>Marcello Vitali-Rosati, “Faut-il se déconnecter ? Moi, je vais en bateau…,” blogPost, <i>Culture numérique</i> (blog), mai 2013, http://blog.sens-public.org/marcellovitalirosati/faut-il-se-deconnecter-moi-je-vais-en-bateau/.</span>
<span>Marcello Vitali-Rosati, “Virtuel et philosophie,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/virtuel-et-philosophie/.</span>
<span>Marcello Vitali-Rosati, “Le pouvoir du virtuel,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/le-pouvoir-du-virtuel/.</span>
<span>Marcello Vitali-Rosati, “Place de la toile : le virtuel existe-t-il ?,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/virtuel-a-place-de-la-toile/.</span>
<span>Marcello Vitali-Rosati, “Éloge du plagiat,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/eloge-du-plagiat/.</span>
<span>Marcello Vitali-Rosati, “Navigations virtuelles,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/navigations-virtuelles/.</span>
<span>Marcello Vitali-Rosati, “Littérature numérique et pérennisation,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/litterature-numerique-et-perennisation/.</span>
<span>Marcello Vitali-Rosati, “Modèles économiques de l’édition numérique,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/modeles-economiques-de-ledition-numerique/.</span>
<span>Marcello Vitali-Rosati, “La fin des compétences et des autorités ?,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/la-fin-des-competences-et-des-autorites/.</span>
<span>Marcello Vitali-Rosati, “Culture numérique ?,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/bonjour-tout-le-monde/.</span>
<span>Marcello Vitali-Rosati, “Éditorialisation,” blogPost, <i>Culture numérique</i> (blog), avril 2013, http://blog.sens-public.org/marcellovitalirosati/editorialisation/.</span>
<span>Marcello Vitali-Rosati, “L’écrivain et l’architecte,” blogPost, <i>Culture numérique</i> (blog), September 26, 2014, http://blog.sens-public.org/marcellovitalirosati/lecrivain-et-larchitecte/.</span>
<span>“Lien Publie.Net,” accessed January 21, 2016, http://www.publie.net/livre/navigations/.</span>
print(mes_refs[0])
{'key': 'ABVUD9Z7', 'version': 1696, 'library': {'type': 'group', 'id': 322999, 'name': 'Écritures numériques', 'links': {'alternate': {'href': 'https://www.zotero.org/groups/critures_numriques', 'type': 'text/html'}}}, 'links': {'self': {'href': 'https://api.zotero.org/groups/322999/items/ABVUD9Z7', 'type': 'application/json'}, 'alternate': {'href': 'https://www.zotero.org/groups/critures_numriques/items/ABVUD9Z7', 'type': 'text/html'}}, 'meta': {'createdByUser': {'id': 4945474, 'username': 'lescouet', 'name': '', 'links': {'alternate': {'href': 'https://www.zotero.org/lescouet', 'type': 'text/html'}}}, 'creatorSummary': 'Monjour and Vitali-Rosati', 'parsedDate': '2021-10-24', 'numChildren': 0}, 'citation': '<span>Servanne Monjour and Marcello Vitali-Rosati, “Pour une redéfinition pornographique du champ littéraire. Une exploration des marges de la littérature numérique avec les travailleuses du texte,” <i>Interférences littéraire / Literaire interferencies</i> 25 (October 24, 2021): 51–67, http://interferenceslitteraires.be/index.php/illi/article/view/1087.</span>', 'data': {'key': 'ABVUD9Z7', 'version': 1696, 'itemType': 'journalArticle', 'title': 'Pour une redéfinition pornographique du champ littéraire. Une exploration des marges de la littérature numérique avec les travailleuses du texte', 'creators': [{'creatorType': 'author', 'firstName': 'Servanne', 'lastName': 'Monjour'}, {'creatorType': 'author', 'firstName': 'Marcello', 'lastName': 'Vitali-Rosati'}], 'abstractNote': '', 'publicationTitle': 'Interférences littéraire / Literaire interferencies', 'volume': '25', 'issue': '', 'pages': '51-67', 'date': '2021-10-24', 'series': '', 'seriesTitle': '', 'seriesText': '', 'journalAbbreviation': '', 'language': 'fr', 'DOI': '', 'ISSN': '', 'shortTitle': '', 'url': 'http://interferenceslitteraires.be/index.php/illi/article/view/1087', 'accessDate': '', 'archive': '', 'archiveLocation': '', 'libraryCatalog': '', 'callNumber': '', 'rights': '', 'extra': '', 'tags': [{'tag': 'Littérature'}, {'tag': 'Production des contenus'}, {'tag': 'Érotisme et pornographie'}], 'collections': ['P4PRNB6V'], 'relations': {}, 'dateAdded': '2021-10-29T13:39:53Z', 'dateModified': '2021-10-29T13:43:33Z'}}
for ref in mes_refs:
    try:
        for creator in ref['data']['creators']:
            if creator['lastName'] == 'Monjour':
                for creator2 in ref['data']['creators']:
                    if creator2['lastName'] == 'Vitali-Rosati':
                        print(ref['citation'])
    except KeyError:
        continue
<span>Servanne Monjour and Marcello Vitali-Rosati, “Pour une redéfinition pornographique du champ littéraire. Une exploration des marges de la littérature numérique avec les travailleuses du texte,” <i>Interférences littéraire / Literaire interferencies</i> 25 (October 24, 2021): 51–67, http://interferenceslitteraires.be/index.php/illi/article/view/1087.</span>
<span>Marcello Vitali-Rosati et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>Antoine Fauchié et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>Antoine Fauchié et al., “L’épopée Numérique de l’Anthologie Grecque : Entre Questions Épistémologiques, Modèles Techniques et Dynamiques Collaboratives,” <i>Sens Public</i>, 2021, https://sens-public.org/articles/1603/.</span>
<span>Marcello Vitali-Rosati et al., “Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” <i>Digital Humanities Quarterly</i> 014, no. 1 (2020), http://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>Servanne Monjour, Jean-Marc Larrue, and Marcello Vitali-Rosati, “Authentique artifice,” <i>Sens public</i>, May 20, 2019, http://sens-public.org/dossiers/1406/.</span>
<span>Marcello Vitali-Rosati et al., “Editorializing the Greek Anthology: The Palatin Manuscript as a Collective Imaginary,” <i>Digital Humanities Quarterly</i> 014, no. 1 (2020), http://www.digitalhumanities.org/dhq/vol/14/1/000447/000447.html.</span>
<span>Marcello Vitali-Rosati and Servanne Monjour, “Littérature et production de l’espace à l’ère numérique. L’éditorialisation de la Transcanadienne. Du spatial turn à Google maps,” <i>@nalyses</i> 12, no. 3 (August 25, 2017): 198–229, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19177.</span>
<span>Servanne Monjour, Marcello Vitali-Rosati, and Gérard Wormser, “Le fait littéraire au temps du numérique. Pour une ontologie de l’imaginaire,” <i>Sens Public</i>, December 22, 2016, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/16362.</span>
<span>Servanne Monjour, Matteo Treleani, and Marcello Vitali-Rosati, “Ontologie du numérique. Entre mimésis et réalité,” <i>Sens Public</i>, December 15, 2017, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19747.</span>
<span>Thomas Carrier-Lafleur et al., “L’invention littéraire des médias,” <i>Sens Public</i>, April 9, 2018, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/19962.</span>
for ref in mes_refs:
    try:
        for tag in ref['data']['tags']:
            if tag['tag'] == 'Érotisme et pornographie':
                print(ref['citation'])
    except KeyError:
        continue
<span>Servanne Monjour and Marcello Vitali-Rosati, “Pour une redéfinition pornographique du champ littéraire. Une exploration des marges de la littérature numérique avec les travailleuses du texte,” <i>Interférences littéraire / Literaire interferencies</i> 25 (October 24, 2021): 51–67, http://interferenceslitteraires.be/index.php/illi/article/view/1087.</span>
<span>Marcello Vitali-Rosati, “Pornspace,” <i>Medium</i>, no. 46–47 (2016): 307–17, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12997.</span>
<span>Marcello Vitali-Rosati, “Les algorithmes de l’amour,” <i>MuseMedusa</i>, no. 2 (2014), https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12973.</span>
<span>Marcello Vitali-Rosati, “Voir l’invisible : Gygès et la pornographie Facebook,” <i>Sens Public</i>, June 14, 2012, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12923.</span>
<span>Marcello Vitali-Rosati, “Don Giovanni. Il dissoluto punito ovvero la possibilità e lo spostamento,” <i>Elites</i>, no. 4 (April 2004): 65–78, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13084.</span>
<span>Servanne Monjour, “Dibutade 2.0 : la « femme-auteur » à l’ère du numérique,” <i>Sens Public</i>, September 24, 2015, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/12998.</span>
<span>“0000 Mots Clé,” n.d.</span>
<span>Michael E. Sinatra, “Science, Gender and Otherness in Shelley’s Frankenstein and Kenneth Branagh’s Film Adaptation,” <i>European Romantic Review</i> 9, no. 2 (March 1, 1998): 253–70, https://doi.org/10.1080/10509589808570051.</span>
<span>Michael E. Sinatra, “Exploring Gothic Sexuality,” <i>Gothic Studies</i> 7, no. 2 (2005): 123–26, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13518.</span>
<span>Michael E. Sinatra, “Readings of Homosexuality in Mary Shelley’s « Frankenstein » and Four Film Adaptations,” <i>Gothic Studies</i> 7, no. 2 (2005): 185–202, https://papyrus.bib.umontreal.ca/xmlui/handle/1866/13519.</span>

Isidore

Une magnifique api qui donne accès à toutes les données indexées par isidore.science! Elle est ici: https://isidore.science/api

Nous allons utiliser l’endpoint de recherche: https://api.isidore.science/resource/search

Nous allons donc donner des paramètres - en lisant la documentation de l’api - pour faire des recherches particulières.

# on définit une fonction de recherche générique très simple
def chercheisidore(parametres):
    endpoint= 'https://api.isidore.science/resource/search'
    return requests.get(endpoint, parametres).json()

En lisant la documentation nous apprenons qu’il y a des paramètres de recherche possibles. Pour les tester il suffira de créer des urls avec:

Quelques paramètres d’exemple:

-q pour “query” c’est le(s) mot(s) à chercher

  • output c’est l’output demandé (xml ou json)

  • replies c’est le nombre de réponses que nous voulons

Par exemple: https://api.isidore.science/resource/search?q=amour&output=json&replies=5

En python nous allons pouvoir passer les paramètres dans un dictionnaire, comme suit:

parametres = {
        'q': 'amour',
        'output':'json',
        'replies' : 5
    }
json.dumps(chercheisidore(parametres), indent=2)
'{\n  "response": {\n    "header": {\n      "query": {\n        "@text": "amour",\n        "@userId": "496c4352-bd0a-9d07-e334-109269201af4",\n        "@sessionId": "2b5e146ovpgect00p39jn1b270",\n        "@date": "2021-11-08T20:31:43+0100",\n        "param": [\n          {\n            "@name": "replies",\n            "@value": "5"\n          },\n          {\n            "@name": "lang",\n            "@value": "fr"\n          },\n          {\n            "@name": "q",\n            "@value": "amour"\n          }\n        ]\n      },\n      "performance": {\n        "@durationMs": "959"\n      }\n    },\n    "replies": {\n      "meta": {\n        "@items": "278457",\n        "@pageItems": "5"\n      },\n      "content": {\n        "reply": [\n          {\n            "@uri": "10670/1.mwspky",\n            "isidore": {\n              "title": "Amour",\n              "url": "https://philosophemes.msh.uca.fr/node/48",\n              "enrichedCreators": {\n                "creator": {\n                  "@origin": "AURIAC Emmanu\\u00e8le",\n                  "@normalizedAuthor": "AURIAC Emmanu\\u00e8le,",\n                  "@idAuthor": "auriac_emmanuele",\n                  "firstname": [],\n                  "lastname": "AURIAC Emmanu\\u00e8le",\n                  "title": [],\n                  "sameAs": {\n                    "idref": "071133844"\n                  }\n                }\n              },\n              "date": {\n                "@origin": "2014",\n                "@startDate": "2014-01-01",\n                "@endDate": "2014-12-31",\n                "@treeDate": "2000/2010/2014",\n                "normalizedDate": "2014-01-01",\n                "centuries": {\n                  "@start": "1200",\n                  "@end": "2100",\n                  "century": "2000"\n                },\n                "decades": {\n                  "@start": "1800",\n                  "@end": "2030",\n                  "decade": "2010"\n                },\n                "years": {\n                  "@start": "1950",\n                  "@end": "2030",\n                  "year": "2014"\n                }\n              },\n              "ore": {\n                "aggregates": {\n                  "@thumbnail": "true",\n                  "@crawl": "true",\n                  "@thumbnailId": "22605293",\n                  "$": "https://philosophemes.msh.uca.fr/node/48"\n                },\n                "similar": "https://philosophemes.msh.uca.fr/node/48"\n              },\n              "subjects": {\n                "subject": "B1-5802 Philosophy (General)"\n              },\n              "coverages": {\n                "coverage": "Gerzat Auvergne"\n              },\n              "relations": {\n                "relation": "http://acte.univ-bpclermont.fr/"\n              },\n              "abstract": "Corpus Philosoph\\u00e8mes / Penser. Corpus de Coll\\u00e8ge d\'une classe de 5\\u00e8me avec 25 \\u00e9l\\u00e8ves de 12-13 ans ayant pour enseignant Mme CHARLES-BEAUCOURT, Mme MANTEAU",\n              "types": {\n                "type": "Collection"\n              },\n              "source_info": {\n                "collectionLabel": {\n                  "@shortLabel": "MSH Clermont",\n                  "@handle": "10670/3.jzo9wl",\n                  "@collectionUuid": "72691021-52dc-49cb-b4db-bed3a296139c",\n                  "$": "Maison des sciences de l\'Homme Clermont-Ferrand"\n                },\n                "collectionOrganization": {\n                  "@organizationUrl": "http://www.univ-bpclermont.fr",\n                  "$": "Universit\\u00e9 Blaise Pascal"\n                },\n                "collectionURLMainSite": {\n                  "@thumbnaiId": "8083021",\n                  "$": "http://www.msh-clermont.fr"\n                },\n                "collectionInformations": {\n                  "collectionDescription": "Cette collection regroupe l\'ensemble des corpus, revues, et bases de donn\\u00e9es num\\u00e9riques de la maison des sciences de l\'Homme de Clermont-Ferrand. La Maison des Sciences de l\\u2019Homme de Clermont-Ferrand, membre du R\\u00e9seau National des MSH (GIS RNMSH), est plac\\u00e9e sous la double tutelle du CNRS (INSHS, INEE) et de l\'Universit\\u00e9 Blaise Pascal, sous le statut d\'Unit\\u00e9 Mixte de Service et de Recherche (USR 3550).",\n                  "collectionCountry": "FR",\n                  "collectionContactEmailAddress": "msh@univ-bpclermont.fr"\n                },\n                "collectionParameters": {\n                  "collectionNamingAuthority": "false",\n                  "collectionRDFVisible": "true"\n                },\n                "source_type": "sources_sitemap",\n                "sourceTaxo": {\n                  "@uri": "10670/3.jzo9wl|10670/2.nl79ar",\n                  "$": "Maison des sciences de l\'Homme Clermont-Ferrand #Philosoph\\u00e8mes"\n                },\n                "sourceCode": {\n                  "@handle": "10670/2.nl79ar",\n                  "$": "a276aa5c-11b5-41c6-9a0a-cbc69a214e6b"\n                },\n                "sourceName": {\n                  "@shortLabel": "Philosoph\\u00e8mes",\n                  "$": "Philosoph\\u00e8mes"\n                },\n                "sourceDataType": "Page Web",\n                "sourceWebSiteURL": {\n                  "@thumbnaiId": "19557399",\n                  "$": "https://philosophemes.msh.uca.fr"\n                },\n                "sourceScope": {\n                  "@uri": "http://isidore.science/subject/primaires",\n                  "$": "Primaires"\n                },\n                "sourceType": "Site Web",\n                "sourceDescription": {\n                  "@seeAlsoURL": "https://philosophemes.msh.uca.fr",\n                  "$": "La banque de donn\\u00e9es Philosoph\\u00e8mes r\\u00e9sulte de quinze ann\\u00e9es de recherche appliqu\\u00e9e \\u00e0 l\\u2019\\u00e9ducation. Elle met \\u00e0 disposition plusieurs types de corpus : oraux, multimodaux ou \\u00e9crits. Les corpus sont tous recueillis en contexte scolaire ordinaire. Ils sont le fruit d\\u2019un travail collaboratif entre chercheurs (\\u00e9quipes et/ou projets financ\\u00e9s par le Qu\\u00e9bec ou la France) et des enseignants volontaires r\\u00e9partis sur tout le territoire (Auvergne, Lorraine, Pays-de-Loire, R\\u00e9gion parisienne)..."\n                },\n                "sourceOrganization": {\n                  "label": "MSH Clermont-Ferrand",\n                  "URI": "http://www.msh-clermont.fr",\n                  "isoCountry": "FR",\n                  "contactEmailAddress": "msh@univ-bpclermont.fr"\n                },\n                "sourceParameters": {\n                  "baseUrl": "https://philosophemes.msh.uca.fr/sitemap.xml",\n                  "crawlingFrequency": "14400",\n                  "followOnRedirect": "true",\n                  "indexableFile": "true",\n                  "userAgent": "CNRS/TGE-Adonis/Isidore",\n                  "CTYPatterns": {\n                    "person": "%n",\n                    "dates": {\n                      "date": "ISO8601"\n                    }\n                  },\n                  "CTYVerificationMode": "lax",\n                  "forceIndexing": "false"\n                }\n              },\n              "enrichment": {\n                "items": [\n                  {\n                    "@type": "ISIDORE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#other",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Autres"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Others"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Otros"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SOURCE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#webPage",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Page Web"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Web Page"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "P\\u00e1gina web"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SCOPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/subject/primaires",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Sources de la recherche"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Sources of research"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Fuentes de la investigaci\\u00f3n"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_LANG",\n                    "item": {\n                      "@uri": "http://lexvo.org/id/iso639-3/fra",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "French"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Fran\\u00e7ais"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Idioma franc\\u00e9s"\n                        }\n                      ]\n                    }\n                  }\n                ],\n                "concepts": [\n                  {\n                    "@type": "ISIDORE_DC_SUBJECT",\n                    "concept": [\n                      {\n                        "@count": "1",\n                        "@uri": "http://data.bnf.fr/ark:/12148/cb11930878m",\n                        "inScheme": "http://rameau.bnf.fr/",\n                        "prefLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Amour"\n                        },\n                        "semanticExpansion": [\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb119489301",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Passions"\n                              }\n                            }\n                          },\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb11940600b",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Sentiments"\n                              },\n                              "altLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Sensibilit\\u00e9"\n                              }\n                            }\n                          },\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb11944030k",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9motions"\n                              },\n                              "altLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Contr\\u00f4le \\u00e9motionnel"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "R\\u00e9gulation des \\u00e9motions"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "R\\u00e9gulation \\u00e9motionnelle"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Expression des \\u00e9motions"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Contr\\u00f4le des \\u00e9motions"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "\\u00c9motivit\\u00e9"\n                                }\n                              ]\n                            }\n                          }\n                        ]\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://id.loc.gov/authorities/subjects/sh85078519",\n                        "@origin": "rameau",\n                        "prefLabel": {\n                          "@xml:lang": "en",\n                          "$": "Love"\n                        },\n                        "altLabel": {\n                          "@xml:lang": "en",\n                          "$": "Affection"\n                        }\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                        "inScheme": "http://pactols.frantiq.fr/",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "amor"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "amour"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "love"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                          "expandedLabel": {\n                            "@xml:lang": "fr",\n                            "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion|amour"\n                          }\n                        },\n                        "semanticExpansion": {\n                          "concept": {\n                            "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "pasi\\u00f3n"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "passion"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "passion"\n                              }\n                            ],\n                            "expanded": {\n                              "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                              "expandedLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion"\n                              }\n                            }\n                          }\n                        }\n                      },\n                      {\n                        "@count": "2",\n                        "@uri": "http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY",\n                        "inScheme": "http://pactols.frantiq.fr/",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "corpus"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "corpus"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "corpus"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY",\n                          "expandedLabel": {\n                            "@xml:lang": "es",\n                            "$": "Tema|metodolog\\u00eda|an\\u00e1lisis documental|instrumento documental|corpus"\n                          }\n                        },\n                        "definition": {\n                          "@xml:lang": "fr",\n                          "$": "Ensemble de documents servant de base \\u00e0 la description ou \\u00e0 l\'\\u00e9tude d\'un ph\\u00e9nom\\u00e8ne. (Grand Lar. Encycl. 1960)"\n                        },\n                        "semanticExpansion": {\n                          "concept": {\n                            "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "en",\n                                "$": "documentary tool"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "instrumento documental"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "outil documentaire"\n                              }\n                            ],\n                            "expanded": {\n                              "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf",\n                              "expandedLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Sujets|m\\u00e9thodologie|analyse documentaire|outil documentaire"\n                              }\n                            },\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Instrument servant \\u00e0 traiter, organiser, classer des informations."\n                            }\n                          }\n                        }\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539",\n                        "inScheme": "http://data.culture.fr/thesaurus/resource/ark:/67717/T990",\n                        "prefLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Coll\\u00e8ge"\n                        },\n                        "expanded": {\n                          "@uri": "http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539"\n                        },\n                        "semanticExpansion": {\n                          "concept": {\n                            "@uri": "http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "B\\u00e2timent scolaire"\n                            },\n                            "altLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Groupe scolaire"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Architecture scolaire"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Construction scolaire"\n                              }\n                            ],\n                            "expanded": {\n                              "@uri": "http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342"\n                            }\n                          }\n                        }\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://data.bnf.fr/ark:/12148/cb120681315",\n                        "inScheme": "http://rameau.bnf.fr/",\n                        "prefLabel": {\n                          "@xml:lang": "fr",\n                          "$": "\\u00c9l\\u00e9gance"\n                        },\n                        "altLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Chic"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Classe"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "D\\u00e9licatesse"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Distinction (morale)"\n                          }\n                        ],\n                        "semanticExpansion": [\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb11931288h",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Esth\\u00e9tique"\n                              },\n                              "altLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Th\\u00e9orie de l\'art"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Th\\u00e9ories artistiques"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Et l\'esth\\u00e9tique"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Contribution \\u00e0 l\'esth\\u00e9tique"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Art, Th\\u00e9orie de l\'"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Philosophie des arts"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Th\\u00e9orie artistique"\n                                }\n                              ]\n                            }\n                          },\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb119518021",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Attitude (psychologie)"\n                              },\n                              "altLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Comportement (psychologie)"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Opinion"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Attitudes (psychologie)"\n                                }\n                              ]\n                            }\n                          }\n                        ]\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://data.bnf.fr/ark:/12148/cb119772712",\n                        "inScheme": "http://rameau.bnf.fr/",\n                        "prefLabel": {\n                          "@xml:lang": "fr",\n                          "$": "\\u00c9l\\u00e8ves"\n                        },\n                        "semanticExpansion": [\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb119761063",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Enseignement secondaire"\n                              },\n                              "altLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Enseignement du second degr\\u00e9"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Secondaire (enseignement)"\n                                }\n                              ]\n                            }\n                          },\n                          {\n                            "concept": {\n                              "@uri": "http://data.bnf.fr/ark:/12148/cb11948031w",\n                              "prefLabel": {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9coles"\n                              },\n                              "altLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "\\u00c9tablissements d\'enseignement"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "\\u00c9tablissements scolaires"\n                                }\n                              ]\n                            }\n                          }\n                        ],\n                        "exactMatch": {\n                          "concept": {\n                            "@uri": "http://data.culture.fr/thesaurus/resource/ark:/67717/T1-428"\n                          }\n                        }\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://id.loc.gov/authorities/subjects/sh00005819",\n                        "@origin": "rameau",\n                        "prefLabel": {\n                          "@xml:lang": "en",\n                          "$": "Students"\n                        }\n                      },\n                      {\n                        "@count": "1",\n                        "@uri": "http://GeoEthno#AUVERGNE",\n                        "inScheme": "http://GeoEthno#GeoEthno",\n                        "prefLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Auvergne"\n                        },\n                        "expanded": {\n                          "@uri": "http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#CENTRE-EST_--_FRA|http://GeoEthno#AUVERGNE",\n                          "expandedLabel": {\n                            "@xml:lang": "fr",\n                            "$": "Europe|Europe occidentale|France|Centre-Est -- FRA|Auvergne"\n                          }\n                        },\n                        "semanticExpansion": {\n                          "concept": {\n                            "@uri": "http://GeoEthno#CENTRE-EST_--_FRA",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Centre-Est -- FRA"\n                            },\n                            "expanded": {\n                              "@uri": "http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#CENTRE-EST_--_FRA",\n                              "expandedLabel": {\n                                "@xml:lang": "fr",\n                                "$": "Europe|Europe occidentale|France|Centre-Est -- FRA"\n                              }\n                            }\n                          }\n                        }\n                      }\n                    ]\n                  },\n                  {\n                    "@type": "ISIDORE_DC_COVERAGE",\n                    "concept": {\n                      "@count": "1",\n                      "@uri": "http://sws.geonames.org/3035876/",\n                      "inScheme": "http://sws.geonames.org",\n                      "prefLabel": [\n                        "Auvergne",\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Auvergne"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Auvergne"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Auvernia"\n                        }\n                      ],\n                      "altLabel": {\n                        "@xml:lang": "fr",\n                        "$": "Auvergne"\n                      },\n                      "expanded": {\n                        "@uri": "http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3035876/",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Europa|Francia|Auvernia"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Europe|France|Auvergne"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Europe|France|Auvergne"\n                          }\n                        ],\n                        "expandedCountry": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Europa|Francia|Auvergne"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Europe|France|Auvergne"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Europe|France|Auvergne"\n                          }\n                        ]\n                      },\n                      "latitude": "45.33333",\n                      "longitude": "3",\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://sws.geonames.org/3017382/",\n                          "prefLabel": [\n                            "France",\n                            {\n                              "@xml:lang": "fr",\n                              "$": "France"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Francia"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "France"\n                            }\n                          ],\n                          "altLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "France"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "R\\u00e9publique Fran\\u00e7aise"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/",\n                            "expandedLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Europe|France"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "Europa|Francia"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Europe|France"\n                              }\n                            ],\n                            "expandedCountry": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Europe|France"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "Europa|France"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Europe|France"\n                              }\n                            ]\n                          },\n                          "latitude": "46",\n                          "longitude": "2",\n                          "exactMatch": []\n                        }\n                      },\n                      "exactMatch": []\n                    }\n                  }\n                ]\n              },\n              "dc:language": "fr"\n            }\n          },\n          {\n            "@uri": "ark:/12148/btv1b53001485m",\n            "isidore": {\n              "title": "P\\u00e9dicure par amour : sc\\u00e9nario",\n              "url": "http://gallica.bnf.fr/ark:/12148/btv1b53001485m",\n              "enrichedCreators": [],\n              "date": {\n                "@origin": "1909",\n                "@startDate": "1909-01-01",\n                "@endDate": "1909-12-31",\n                "normalizedDate": "1909-01-01",\n                "centuries": {\n                  "@start": "1200",\n                  "@end": "2100",\n                  "century": "1900"\n                },\n                "decades": {\n                  "@start": "1800",\n                  "@end": "2030",\n                  "decade": "1900"\n                }\n              },\n              "ore": {\n                "aggregates": {\n                  "@thumbnail": "true",\n                  "@crawl": "false",\n                  "@thumbnailId": "28109884",\n                  "$": "http://gallica.bnf.fr/ark:/12148/btv1b53001485m"\n                }\n              },\n              "subjects": {\n                "subject": {\n                  "@xml:lang": "fre",\n                  "$": "P\\u00e9dicure par amour (film)"\n                }\n              },\n              "relations": {\n                "relation": "Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb395687597"\n              },\n              "types": {\n                "type": [\n                  {\n                    "@xml:lang": "eng",\n                    "$": "archival material"\n                  },\n                  {\n                    "@xml:lang": "fre",\n                    "$": "document d\'archives"\n                  }\n                ]\n              },\n              "source_info": {\n                "collectionLabel": {\n                  "@shortLabel": "Gallica",\n                  "@handle": "10670/3.xut8e9",\n                  "@collectionUuid": "5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4",\n                  "$": "Gallica"\n                },\n                "collectionOrganization": {\n                  "@organizationUrl": "http://www.bnf.fr",\n                  "$": "Biblioth\\u00e8que nationale de France"\n                },\n                "collectionURLMainSite": {\n                  "@thumbnaiId": "630791",\n                  "$": "http://gallica.bnf.fr"\n                },\n                "collectionInformations": {\n                  "collectionDescription": "Gallica est la Biblioth\\u00e8que num\\u00e9rique de la Biblioth\\u00e8que nationale de France. Elle offre un acc\\u00e8s \\u00e0 tous types de supports : imprim\\u00e9s (monographies, p\\u00e9riodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.",\n                  "collectionCountry": "FR",\n                  "collectionContactEmailAddress": "gallica@bnf.fr"\n                },\n                "collectionParameters": {\n                  "collectionNamingAuthority": "true",\n                  "collectionURIPermanentPattern": "http://gallica.bnf.fr/(ark:/12148/.*)",\n                  "collectionRDFVisible": "true"\n                },\n                "source_type": "sources_oai_pmh",\n                "sourceTaxo": {\n                  "@uri": "10670/3.xut8e9|10670/2.k3samo",\n                  "$": "Gallica#Manuscrits"\n                },\n                "sourceCode": {\n                  "@handle": "10670/2.k3samo",\n                  "$": "ac94d8c6-94e5-4740-aa34-87d124ce9d31"\n                },\n                "sourceName": {\n                  "@shortLabel": "Manuscrits",\n                  "$": "Manuscrits de Gallica"\n                },\n                "sourceDataType": "Manuscrits",\n                "sourceWebSiteURL": {\n                  "@thumbnaiId": "630897",\n                  "$": "http://gallica.bnf.fr/Search?f_typedoc=manuscrits"\n                },\n                "sourceScope": {\n                  "@uri": "http://isidore.science/subject/primaires",\n                  "$": "Primaires"\n                },\n                "sourceType": "Biblioth\\u00e8que num\\u00e9rique",\n                "sourceDescription": {\n                  "@seeAlsoURL": "http://bibnum.bnf.fr/oai/index.html",\n                  "$": "Cet ensemble donne acc\\u00e8s aux manuscrits de Gallica."\n                },\n                "sourceOrganization": {\n                  "label": "Biblioth\\u00e8que nationale de France",\n                  "URI": "http://www.bnf.fr",\n                  "isoCountry": "FR"\n                },\n                "sourceParameters": {\n                  "baseUrl": "http://oai.bnf.fr/oai2/OAIHandler",\n                  "crawlingFrequency": "14400",\n                  "followOnRedirect": "true",\n                  "indexableFile": "false",\n                  "userAgent": "CNRS/TGE-Adonis/Isidore",\n                  "CTYPatterns": {\n                    "person": "%n, %p",\n                    "dates": {\n                      "date": "ISO8601"\n                    }\n                  },\n                  "CTYVerificationMode": "lax",\n                  "forceIndexing": "false"\n                }\n              },\n              "enrichment": {\n                "items": [\n                  {\n                    "@type": "ISIDORE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#other",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Autres"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Others"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Otros"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SOURCE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#digitalLibrary",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Biblioth\\u00e8que num\\u00e9rique"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Digital Library"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Biblioteca digital"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SCOPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/subject/primaires",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Sources de la recherche"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Sources of research"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Fuentes de la investigaci\\u00f3n"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_LANG",\n                    "item": {\n                      "@uri": "http://lexvo.org/id/iso639-3/fra",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "French"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Fran\\u00e7ais"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Idioma franc\\u00e9s"\n                        }\n                      ]\n                    }\n                  }\n                ],\n                "concepts": {\n                  "@type": "ISIDORE_DC_SUBJECT",\n                  "concept": [\n                    {\n                      "@count": "2",\n                      "@uri": "http://data.bnf.fr/ark:/12148/cb11930878m",\n                      "inScheme": "http://rameau.bnf.fr/",\n                      "prefLabel": {\n                        "@xml:lang": "fr",\n                        "$": "Amour"\n                      },\n                      "semanticExpansion": [\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb119489301",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Passions"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11940600b",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sentiments"\n                            },\n                            "altLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sensibilit\\u00e9"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11944030k",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "\\u00c9motions"\n                            },\n                            "altLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le \\u00e9motionnel"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation \\u00e9motionnelle"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Expression des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9motivit\\u00e9"\n                              }\n                            ]\n                          }\n                        }\n                      ]\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://id.loc.gov/authorities/subjects/sh85078519",\n                      "@origin": "rameau",\n                      "prefLabel": {\n                        "@xml:lang": "en",\n                        "$": "Love"\n                      },\n                      "altLabel": {\n                        "@xml:lang": "en",\n                        "$": "Affection"\n                      }\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "amor"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "amour"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "love"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                        "expandedLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion|amour"\n                        }\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "pasi\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "passion"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "passion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "cine"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "cin\\u00e9ma"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        }\n                      ],\n                      "altLabel": {\n                        "@xml:lang": "fr",\n                        "$": "film"\n                      },\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|cin\\u00e9ma"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Tema|metodolog\\u00eda|an\\u00e1lisis documental|grabaci\\u00f3n - difusi\\u00f3n|difusi\\u00f3n de los conocimientos|cine"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "diffusion des connaissances"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "difusi\\u00f3n de los conocimientos"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "knowledge diffusion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://www.eionet.europa.eu/gemet/concept/3183",\n                      "inScheme": "http://www.eionet.europa.eu/gemet/gemetThesaurus/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "pel\\u00edcula"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "film"\n                        }\n                      ],\n                      "definition": {\n                        "@xml:lang": "en",\n                        "$": "A motion picture; a thin flexible strip of cellulose coated with a photographic emission, used to make negatives and transparencies."\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://www.eionet.europa.eu/gemet/concept/2284",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "en",\n                              "$": "documentation"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "documentaci\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "documentation"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "en",\n                            "$": "The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article."\n                          }\n                        }\n                      },\n                      "exactMatch": {\n                        "@uri": "http://eurovoc.europa.eu/3805"\n                      }\n                    }\n                  ]\n                },\n                "categories": [\n                  {\n                    "@type": "ISIDORE_HAL_CATEGO",\n                    "category": [\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "Art and art history"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Art et histoire de l\'art"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Arte e historia del arte"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Art et histoire de l\'art"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Art and art history"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Arte e historia del arte"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie278",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Histoire de l\'Art"\n                                },\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Historia del arte"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "History of art"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                                  },\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Mind and language|Representation|History of art"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Art_history"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.genre",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Estudios sobre el g\\u00e9nero"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Etudes sur le genre"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Gender studies"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.genre",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Etudes sur le genre"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Gender studies"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Estudios sobre el g\\u00e9nero"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie205",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Estudios de g\\u00e9nero"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Gender studies"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "\\u00c9tude des genres"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201|http://calenda.org/categories.rdf#categorie205",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Soci\\u00e9t\\u00e9s|Sociologie|\\u00c9tude des genres"\n                                  },\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Sociedad|Sociolog\\u00eda|Estudios de g\\u00e9nero"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Society|Sociology|Gender studies"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Gender_studies"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "0.939",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Anthropologie sociale et ethnologie"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Antropolog\\u00eda social y etnolog\\u00eda"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Social Anthropology and ethnology"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Anthropologie sociale et ethnologie"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Social Anthropology and ethnology"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Antropolog\\u00eda social y etnolog\\u00eda"\n                            }\n                          ]\n                        },\n                        "definition": {\n                          "@xml:lang": "fr",\n                          "$": "L\'ethnologie est une des sciences humaines et sociales qui rel\\u00e8ve de l\'anthropologie et qui est connexe \\u00e0 la sociologie, et dont l\'objet est l\'\\u00e9tude comparative et explicative de l\'ensemble des caract\\u00e8res sociaux et culturels des groupes humains d\'ethnie \\u00ab les plus manifestes comme les moins avou[\\u00e9]s \\u00bb1. \\u00c0 l\'aide de th\\u00e9ories et concepts qui lui sont propres, elle tente de parvenir \\u00e0 la formulation de la structure, du fonctionnement et de l\'\\u00e9volution des soci\\u00e9t\\u00e9s. Elle comporte notamment deux th\\u00e9ories oppos\\u00e9es, le fonctionnalisme de Bronislaw Malinowski et le structuralisme de Claude L\\u00e9vi-Strauss.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Ethnologie de Wikip\\u00e9dia en fran\\u00e7ais"\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie213",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Ethnologie, anthropologie"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Ethnology, anthropology"\n                                },\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Etnolog\\u00eda, antropolog\\u00eda"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie213",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Soci\\u00e9t\\u00e9s|Ethnologie, anthropologie"\n                                  },\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Sociedad|Etnolog\\u00eda, antropolog\\u00eda"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Society|Ethnology, anthropology"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Social_anthropology"\n                          }\n                        ]\n                      }\n                    ]\n                  },\n                  {\n                    "@type": "ISIDORE_CALENDA_SUBJECT",\n                    "category": [\n                      {\n                        "@proba": "0.939",\n                        "@uri": "http://calenda.org/categories.rdf#categorie213",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Ethnologie, anthropologie"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Ethnology, anthropology"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Etnolog\\u00eda, antropolog\\u00eda"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie213",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Soci\\u00e9t\\u00e9s|Ethnologie, anthropologie"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Sociedad|Etnolog\\u00eda, antropolog\\u00eda"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Society|Ethnology, anthropology"\n                            }\n                          ]\n                        }\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://calenda.org/categories.rdf#categorie278",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Histoire de l\'Art"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Historia del arte"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "History of art"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Mind and language|Representation|History of art"\n                            }\n                          ]\n                        }\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://calenda.org/categories.rdf#categorie205",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Estudios de g\\u00e9nero"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Gender studies"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "\\u00c9tude des genres"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201|http://calenda.org/categories.rdf#categorie205",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Soci\\u00e9t\\u00e9s|Sociologie|\\u00c9tude des genres"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Sociedad|Sociolog\\u00eda|Estudios de g\\u00e9nero"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Society|Sociology|Gender studies"\n                            }\n                          ]\n                        }\n                      }\n                    ]\n                  }\n                ]\n              },\n              "dc:language": "fre",\n              "dc:rights": [\n                {\n                  "@xml:lang": "fre",\n                  "$": "conditions sp\\u00e9cifiques d\'utilisation (sous convention BnF-ADM-2021-061241-01)"\n                },\n                {\n                  "@xml:lang": "eng",\n                  "$": "restricted use (convention BnF-ADM-2021-061241-01)"\n                }\n              ]\n            }\n          },\n          {\n            "@uri": "ark:/12148/btv1b53007097g",\n            "isidore": {\n              "title": "Le Dernier amour : sc\\u00e9nario",\n              "url": "http://gallica.bnf.fr/ark:/12148/btv1b53007097g",\n              "enrichedCreators": [],\n              "date": {\n                "@origin": "1916",\n                "@startDate": "1916-01-01",\n                "@endDate": "1916-12-31",\n                "normalizedDate": "1916-01-01",\n                "centuries": {\n                  "@start": "1200",\n                  "@end": "2100",\n                  "century": "1900"\n                },\n                "decades": {\n                  "@start": "1800",\n                  "@end": "2030",\n                  "decade": "1910"\n                }\n              },\n              "ore": {\n                "aggregates": {\n                  "@thumbnail": "true",\n                  "@crawl": "false",\n                  "@thumbnailId": "28116500",\n                  "$": "http://gallica.bnf.fr/ark:/12148/btv1b53007097g"\n                }\n              },\n              "subjects": {\n                "subject": {\n                  "@xml:lang": "fre",\n                  "$": "Dernier amour (film ; 1916)"\n                }\n              },\n              "relations": {\n                "relation": "Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb39571473g"\n              },\n              "types": {\n                "type": [\n                  {\n                    "@xml:lang": "eng",\n                    "$": "archival material"\n                  },\n                  {\n                    "@xml:lang": "fre",\n                    "$": "document d\'archives"\n                  }\n                ]\n              },\n              "source_info": {\n                "collectionLabel": {\n                  "@shortLabel": "Gallica",\n                  "@handle": "10670/3.xut8e9",\n                  "@collectionUuid": "5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4",\n                  "$": "Gallica"\n                },\n                "collectionOrganization": {\n                  "@organizationUrl": "http://www.bnf.fr",\n                  "$": "Biblioth\\u00e8que nationale de France"\n                },\n                "collectionURLMainSite": {\n                  "@thumbnaiId": "630791",\n                  "$": "http://gallica.bnf.fr"\n                },\n                "collectionInformations": {\n                  "collectionDescription": "Gallica est la Biblioth\\u00e8que num\\u00e9rique de la Biblioth\\u00e8que nationale de France. Elle offre un acc\\u00e8s \\u00e0 tous types de supports : imprim\\u00e9s (monographies, p\\u00e9riodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.",\n                  "collectionCountry": "FR",\n                  "collectionContactEmailAddress": "gallica@bnf.fr"\n                },\n                "collectionParameters": {\n                  "collectionNamingAuthority": "true",\n                  "collectionURIPermanentPattern": "http://gallica.bnf.fr/(ark:/12148/.*)",\n                  "collectionRDFVisible": "true"\n                },\n                "source_type": "sources_oai_pmh",\n                "sourceTaxo": {\n                  "@uri": "10670/3.xut8e9|10670/2.k3samo",\n                  "$": "Gallica#Manuscrits"\n                },\n                "sourceCode": {\n                  "@handle": "10670/2.k3samo",\n                  "$": "ac94d8c6-94e5-4740-aa34-87d124ce9d31"\n                },\n                "sourceName": {\n                  "@shortLabel": "Manuscrits",\n                  "$": "Manuscrits de Gallica"\n                },\n                "sourceDataType": "Manuscrits",\n                "sourceWebSiteURL": {\n                  "@thumbnaiId": "630897",\n                  "$": "http://gallica.bnf.fr/Search?f_typedoc=manuscrits"\n                },\n                "sourceScope": {\n                  "@uri": "http://isidore.science/subject/primaires",\n                  "$": "Primaires"\n                },\n                "sourceType": "Biblioth\\u00e8que num\\u00e9rique",\n                "sourceDescription": {\n                  "@seeAlsoURL": "http://bibnum.bnf.fr/oai/index.html",\n                  "$": "Cet ensemble donne acc\\u00e8s aux manuscrits de Gallica."\n                },\n                "sourceOrganization": {\n                  "label": "Biblioth\\u00e8que nationale de France",\n                  "URI": "http://www.bnf.fr",\n                  "isoCountry": "FR"\n                },\n                "sourceParameters": {\n                  "baseUrl": "http://oai.bnf.fr/oai2/OAIHandler",\n                  "crawlingFrequency": "14400",\n                  "followOnRedirect": "true",\n                  "indexableFile": "false",\n                  "userAgent": "CNRS/TGE-Adonis/Isidore",\n                  "CTYPatterns": {\n                    "person": "%n, %p",\n                    "dates": {\n                      "date": "ISO8601"\n                    }\n                  },\n                  "CTYVerificationMode": "lax",\n                  "forceIndexing": "false"\n                }\n              },\n              "enrichment": {\n                "items": [\n                  {\n                    "@type": "ISIDORE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#other",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Autres"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Others"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Otros"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SOURCE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#digitalLibrary",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Biblioth\\u00e8que num\\u00e9rique"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Digital Library"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Biblioteca digital"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SCOPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/subject/primaires",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Sources de la recherche"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Sources of research"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Fuentes de la investigaci\\u00f3n"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_LANG",\n                    "item": {\n                      "@uri": "http://lexvo.org/id/iso639-3/fra",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "French"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Fran\\u00e7ais"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Idioma franc\\u00e9s"\n                        }\n                      ]\n                    }\n                  }\n                ],\n                "concepts": {\n                  "@type": "ISIDORE_DC_SUBJECT",\n                  "concept": [\n                    {\n                      "@count": "2",\n                      "@uri": "http://data.bnf.fr/ark:/12148/cb11930878m",\n                      "inScheme": "http://rameau.bnf.fr/",\n                      "prefLabel": {\n                        "@xml:lang": "fr",\n                        "$": "Amour"\n                      },\n                      "semanticExpansion": [\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb119489301",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Passions"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11940600b",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sentiments"\n                            },\n                            "altLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sensibilit\\u00e9"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11944030k",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "\\u00c9motions"\n                            },\n                            "altLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le \\u00e9motionnel"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation \\u00e9motionnelle"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Expression des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9motivit\\u00e9"\n                              }\n                            ]\n                          }\n                        }\n                      ]\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://id.loc.gov/authorities/subjects/sh85078519",\n                      "@origin": "rameau",\n                      "prefLabel": {\n                        "@xml:lang": "en",\n                        "$": "Love"\n                      },\n                      "altLabel": {\n                        "@xml:lang": "en",\n                        "$": "Affection"\n                      }\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "amor"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "amour"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "love"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                        "expandedLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion|amour"\n                        }\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "pasi\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "passion"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "passion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "cine"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "cin\\u00e9ma"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        }\n                      ],\n                      "altLabel": {\n                        "@xml:lang": "fr",\n                        "$": "film"\n                      },\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|cin\\u00e9ma"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Tema|metodolog\\u00eda|an\\u00e1lisis documental|grabaci\\u00f3n - difusi\\u00f3n|difusi\\u00f3n de los conocimientos|cine"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "diffusion des connaissances"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "difusi\\u00f3n de los conocimientos"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "knowledge diffusion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://www.eionet.europa.eu/gemet/concept/3183",\n                      "inScheme": "http://www.eionet.europa.eu/gemet/gemetThesaurus/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "pel\\u00edcula"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "film"\n                        }\n                      ],\n                      "definition": {\n                        "@xml:lang": "en",\n                        "$": "A motion picture; a thin flexible strip of cellulose coated with a photographic emission, used to make negatives and transparencies."\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://www.eionet.europa.eu/gemet/concept/2284",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "en",\n                              "$": "documentation"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "documentaci\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "documentation"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "en",\n                            "$": "The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article."\n                          }\n                        }\n                      },\n                      "exactMatch": {\n                        "@uri": "http://eurovoc.europa.eu/3805"\n                      }\n                    }\n                  ]\n                },\n                "categories": [\n                  {\n                    "@type": "ISIDORE_HAL_CATEGO",\n                    "category": {\n                      "@proba": "1.000",\n                      "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                      "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "Art and art history"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Art et histoire de l\'art"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Arte e historia del arte"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Art et histoire de l\'art"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Humanities and Social Sciences|Art and art history"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Ciencias sociales|Arte e historia del arte"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "category": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "fr",\n                            "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                          }\n                        }\n                      },\n                      "exactMatch": [\n                        {\n                          "category": {\n                            "@uri": "http://calenda.org/categories.rdf#categorie278",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Histoire de l\'Art"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "Historia del arte"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "History of art"\n                              }\n                            ],\n                            "expanded": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                              "expandedLabel": [\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Mind and language|Representation|History of art"\n                                }\n                              ]\n                            }\n                          }\n                        },\n                        {\n                          "@uri": "http://dbpedia.org/resource/Art_history"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_CALENDA_SUBJECT",\n                    "category": {\n                      "@proba": "1.000",\n                      "@uri": "http://calenda.org/categories.rdf#categorie278",\n                      "@origin": "hal",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Histoire de l\'Art"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Historia del arte"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "History of art"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Mind and language|Representation|History of art"\n                          }\n                        ]\n                      }\n                    }\n                  }\n                ]\n              },\n              "dc:language": "fre",\n              "dc:rights": [\n                {\n                  "@xml:lang": "fre",\n                  "$": "conditions sp\\u00e9cifiques d\'utilisation (sous convention BnF-ADM-2021-061241-01)"\n                },\n                {\n                  "@xml:lang": "eng",\n                  "$": "restricted use (convention BnF-ADM-2021-061241-01)"\n                }\n              ]\n            }\n          },\n          {\n            "@uri": "ark:/12148/btv1b53002297h",\n            "isidore": {\n              "title": "H\\u00e9ro\\u00efque amour : sc\\u00e9nario",\n              "url": "http://gallica.bnf.fr/ark:/12148/btv1b53002297h",\n              "enrichedCreators": [],\n              "date": {\n                "@origin": "1911",\n                "@startDate": "1911-01-01",\n                "@endDate": "1911-12-31",\n                "normalizedDate": "1911-01-01",\n                "centuries": {\n                  "@start": "1200",\n                  "@end": "2100",\n                  "century": "1900"\n                },\n                "decades": {\n                  "@start": "1800",\n                  "@end": "2030",\n                  "decade": "1910"\n                }\n              },\n              "ore": {\n                "aggregates": {\n                  "@thumbnail": "true",\n                  "@crawl": "false",\n                  "@thumbnailId": "28112075",\n                  "$": "http://gallica.bnf.fr/ark:/12148/btv1b53002297h"\n                }\n              },\n              "subjects": {\n                "subject": {\n                  "@xml:lang": "fre",\n                  "$": "H\\u00e9ro\\u00efque amour (film)"\n                }\n              },\n              "relations": {\n                "relation": "Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb395696534"\n              },\n              "types": {\n                "type": [\n                  {\n                    "@xml:lang": "eng",\n                    "$": "archival material"\n                  },\n                  {\n                    "@xml:lang": "fre",\n                    "$": "document d\'archives"\n                  }\n                ]\n              },\n              "source_info": {\n                "collectionLabel": {\n                  "@shortLabel": "Gallica",\n                  "@handle": "10670/3.xut8e9",\n                  "@collectionUuid": "5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4",\n                  "$": "Gallica"\n                },\n                "collectionOrganization": {\n                  "@organizationUrl": "http://www.bnf.fr",\n                  "$": "Biblioth\\u00e8que nationale de France"\n                },\n                "collectionURLMainSite": {\n                  "@thumbnaiId": "630791",\n                  "$": "http://gallica.bnf.fr"\n                },\n                "collectionInformations": {\n                  "collectionDescription": "Gallica est la Biblioth\\u00e8que num\\u00e9rique de la Biblioth\\u00e8que nationale de France. Elle offre un acc\\u00e8s \\u00e0 tous types de supports : imprim\\u00e9s (monographies, p\\u00e9riodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.",\n                  "collectionCountry": "FR",\n                  "collectionContactEmailAddress": "gallica@bnf.fr"\n                },\n                "collectionParameters": {\n                  "collectionNamingAuthority": "true",\n                  "collectionURIPermanentPattern": "http://gallica.bnf.fr/(ark:/12148/.*)",\n                  "collectionRDFVisible": "true"\n                },\n                "source_type": "sources_oai_pmh",\n                "sourceTaxo": {\n                  "@uri": "10670/3.xut8e9|10670/2.k3samo",\n                  "$": "Gallica#Manuscrits"\n                },\n                "sourceCode": {\n                  "@handle": "10670/2.k3samo",\n                  "$": "ac94d8c6-94e5-4740-aa34-87d124ce9d31"\n                },\n                "sourceName": {\n                  "@shortLabel": "Manuscrits",\n                  "$": "Manuscrits de Gallica"\n                },\n                "sourceDataType": "Manuscrits",\n                "sourceWebSiteURL": {\n                  "@thumbnaiId": "630897",\n                  "$": "http://gallica.bnf.fr/Search?f_typedoc=manuscrits"\n                },\n                "sourceScope": {\n                  "@uri": "http://isidore.science/subject/primaires",\n                  "$": "Primaires"\n                },\n                "sourceType": "Biblioth\\u00e8que num\\u00e9rique",\n                "sourceDescription": {\n                  "@seeAlsoURL": "http://bibnum.bnf.fr/oai/index.html",\n                  "$": "Cet ensemble donne acc\\u00e8s aux manuscrits de Gallica."\n                },\n                "sourceOrganization": {\n                  "label": "Biblioth\\u00e8que nationale de France",\n                  "URI": "http://www.bnf.fr",\n                  "isoCountry": "FR"\n                },\n                "sourceParameters": {\n                  "baseUrl": "http://oai.bnf.fr/oai2/OAIHandler",\n                  "crawlingFrequency": "14400",\n                  "followOnRedirect": "true",\n                  "indexableFile": "false",\n                  "userAgent": "CNRS/TGE-Adonis/Isidore",\n                  "CTYPatterns": {\n                    "person": "%n, %p",\n                    "dates": {\n                      "date": "ISO8601"\n                    }\n                  },\n                  "CTYVerificationMode": "lax",\n                  "forceIndexing": "false"\n                }\n              },\n              "enrichment": {\n                "items": [\n                  {\n                    "@type": "ISIDORE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#other",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Autres"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Others"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Otros"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SOURCE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#digitalLibrary",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Biblioth\\u00e8que num\\u00e9rique"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Digital Library"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Biblioteca digital"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SCOPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/subject/primaires",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Sources de la recherche"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Sources of research"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Fuentes de la investigaci\\u00f3n"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_LANG",\n                    "item": {\n                      "@uri": "http://lexvo.org/id/iso639-3/fra",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "French"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Fran\\u00e7ais"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Idioma franc\\u00e9s"\n                        }\n                      ]\n                    }\n                  }\n                ],\n                "concepts": {\n                  "@type": "ISIDORE_DC_SUBJECT",\n                  "concept": [\n                    {\n                      "@count": "2",\n                      "@uri": "http://data.bnf.fr/ark:/12148/cb11930878m",\n                      "inScheme": "http://rameau.bnf.fr/",\n                      "prefLabel": {\n                        "@xml:lang": "fr",\n                        "$": "Amour"\n                      },\n                      "semanticExpansion": [\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb119489301",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Passions"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11940600b",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sentiments"\n                            },\n                            "altLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sensibilit\\u00e9"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11944030k",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "\\u00c9motions"\n                            },\n                            "altLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le \\u00e9motionnel"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation \\u00e9motionnelle"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Expression des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9motivit\\u00e9"\n                              }\n                            ]\n                          }\n                        }\n                      ]\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://id.loc.gov/authorities/subjects/sh85078519",\n                      "@origin": "rameau",\n                      "prefLabel": {\n                        "@xml:lang": "en",\n                        "$": "Love"\n                      },\n                      "altLabel": {\n                        "@xml:lang": "en",\n                        "$": "Affection"\n                      }\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "amor"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "amour"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "love"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                        "expandedLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion|amour"\n                        }\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "pasi\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "passion"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "passion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "cine"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "cin\\u00e9ma"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        }\n                      ],\n                      "altLabel": {\n                        "@xml:lang": "fr",\n                        "$": "film"\n                      },\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|cin\\u00e9ma"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Tema|metodolog\\u00eda|an\\u00e1lisis documental|grabaci\\u00f3n - difusi\\u00f3n|difusi\\u00f3n de los conocimientos|cine"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "diffusion des connaissances"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "difusi\\u00f3n de los conocimientos"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "knowledge diffusion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://www.eionet.europa.eu/gemet/concept/3183",\n                      "inScheme": "http://www.eionet.europa.eu/gemet/gemetThesaurus/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "pel\\u00edcula"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "film"\n                        }\n                      ],\n                      "definition": {\n                        "@xml:lang": "en",\n                        "$": "A motion picture; a thin flexible strip of cellulose coated with a photographic emission, used to make negatives and transparencies."\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://www.eionet.europa.eu/gemet/concept/2284",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "en",\n                              "$": "documentation"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "documentaci\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "documentation"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "en",\n                            "$": "The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article."\n                          }\n                        }\n                      },\n                      "exactMatch": {\n                        "@uri": "http://eurovoc.europa.eu/3805"\n                      }\n                    }\n                  ]\n                },\n                "categories": [\n                  {\n                    "@type": "ISIDORE_HAL_CATEGO",\n                    "category": {\n                      "@proba": "1.000",\n                      "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                      "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "Art and art history"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Art et histoire de l\'art"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Arte e historia del arte"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Art et histoire de l\'art"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Humanities and Social Sciences|Art and art history"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Ciencias sociales|Arte e historia del arte"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "category": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "fr",\n                            "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                          }\n                        }\n                      },\n                      "exactMatch": [\n                        {\n                          "category": {\n                            "@uri": "http://calenda.org/categories.rdf#categorie278",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Histoire de l\'Art"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "Historia del arte"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "History of art"\n                              }\n                            ],\n                            "expanded": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                              "expandedLabel": [\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Mind and language|Representation|History of art"\n                                }\n                              ]\n                            }\n                          }\n                        },\n                        {\n                          "@uri": "http://dbpedia.org/resource/Art_history"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_CALENDA_SUBJECT",\n                    "category": {\n                      "@proba": "1.000",\n                      "@uri": "http://calenda.org/categories.rdf#categorie278",\n                      "@origin": "hal",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Histoire de l\'Art"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Historia del arte"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "History of art"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Mind and language|Representation|History of art"\n                          }\n                        ]\n                      }\n                    }\n                  }\n                ]\n              },\n              "dc:language": "fre",\n              "dc:rights": [\n                {\n                  "@xml:lang": "fre",\n                  "$": "conditions sp\\u00e9cifiques d\'utilisation (sous convention BnF-ADM-2021-061241-01)"\n                },\n                {\n                  "@xml:lang": "eng",\n                  "$": "restricted use (convention BnF-ADM-2021-061241-01)"\n                }\n              ]\n            }\n          },\n          {\n            "@uri": "ark:/12148/btv1b53007683j",\n            "isidore": {\n              "title": "Cubiste par amour : sc\\u00e9nario",\n              "url": "http://gallica.bnf.fr/ark:/12148/btv1b53007683j",\n              "enrichedCreators": [],\n              "date": {\n                "@origin": "1913",\n                "@startDate": "1913-01-01",\n                "@endDate": "1913-12-31",\n                "normalizedDate": "1913-01-01",\n                "centuries": {\n                  "@start": "1200",\n                  "@end": "2100",\n                  "century": "1900"\n                },\n                "decades": {\n                  "@start": "1800",\n                  "@end": "2030",\n                  "decade": "1910"\n                }\n              },\n              "ore": {\n                "aggregates": {\n                  "@thumbnail": "true",\n                  "@crawl": "false",\n                  "@thumbnailId": "28114906",\n                  "$": "http://gallica.bnf.fr/ark:/12148/btv1b53007683j"\n                }\n              },\n              "subjects": {\n                "subject": {\n                  "@xml:lang": "fre",\n                  "$": "Cubiste par amour (film)"\n                }\n              },\n              "relations": {\n                "relation": "Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb39570799r"\n              },\n              "types": {\n                "type": [\n                  {\n                    "@xml:lang": "eng",\n                    "$": "archival material"\n                  },\n                  {\n                    "@xml:lang": "fre",\n                    "$": "document d\'archives"\n                  }\n                ]\n              },\n              "source_info": {\n                "collectionLabel": {\n                  "@shortLabel": "Gallica",\n                  "@handle": "10670/3.xut8e9",\n                  "@collectionUuid": "5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4",\n                  "$": "Gallica"\n                },\n                "collectionOrganization": {\n                  "@organizationUrl": "http://www.bnf.fr",\n                  "$": "Biblioth\\u00e8que nationale de France"\n                },\n                "collectionURLMainSite": {\n                  "@thumbnaiId": "630791",\n                  "$": "http://gallica.bnf.fr"\n                },\n                "collectionInformations": {\n                  "collectionDescription": "Gallica est la Biblioth\\u00e8que num\\u00e9rique de la Biblioth\\u00e8que nationale de France. Elle offre un acc\\u00e8s \\u00e0 tous types de supports : imprim\\u00e9s (monographies, p\\u00e9riodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.",\n                  "collectionCountry": "FR",\n                  "collectionContactEmailAddress": "gallica@bnf.fr"\n                },\n                "collectionParameters": {\n                  "collectionNamingAuthority": "true",\n                  "collectionURIPermanentPattern": "http://gallica.bnf.fr/(ark:/12148/.*)",\n                  "collectionRDFVisible": "true"\n                },\n                "source_type": "sources_oai_pmh",\n                "sourceTaxo": {\n                  "@uri": "10670/3.xut8e9|10670/2.k3samo",\n                  "$": "Gallica#Manuscrits"\n                },\n                "sourceCode": {\n                  "@handle": "10670/2.k3samo",\n                  "$": "ac94d8c6-94e5-4740-aa34-87d124ce9d31"\n                },\n                "sourceName": {\n                  "@shortLabel": "Manuscrits",\n                  "$": "Manuscrits de Gallica"\n                },\n                "sourceDataType": "Manuscrits",\n                "sourceWebSiteURL": {\n                  "@thumbnaiId": "630897",\n                  "$": "http://gallica.bnf.fr/Search?f_typedoc=manuscrits"\n                },\n                "sourceScope": {\n                  "@uri": "http://isidore.science/subject/primaires",\n                  "$": "Primaires"\n                },\n                "sourceType": "Biblioth\\u00e8que num\\u00e9rique",\n                "sourceDescription": {\n                  "@seeAlsoURL": "http://bibnum.bnf.fr/oai/index.html",\n                  "$": "Cet ensemble donne acc\\u00e8s aux manuscrits de Gallica."\n                },\n                "sourceOrganization": {\n                  "label": "Biblioth\\u00e8que nationale de France",\n                  "URI": "http://www.bnf.fr",\n                  "isoCountry": "FR"\n                },\n                "sourceParameters": {\n                  "baseUrl": "http://oai.bnf.fr/oai2/OAIHandler",\n                  "crawlingFrequency": "14400",\n                  "followOnRedirect": "true",\n                  "indexableFile": "false",\n                  "userAgent": "CNRS/TGE-Adonis/Isidore",\n                  "CTYPatterns": {\n                    "person": "%n, %p",\n                    "dates": {\n                      "date": "ISO8601"\n                    }\n                  },\n                  "CTYVerificationMode": "lax",\n                  "forceIndexing": "false"\n                }\n              },\n              "enrichment": {\n                "items": [\n                  {\n                    "@type": "ISIDORE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#other",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Autres"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Others"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Otros"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SOURCE_TYPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/ontology#digitalLibrary",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Biblioth\\u00e8que num\\u00e9rique"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Digital Library"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Biblioteca digital"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_SCOPE_FACET",\n                    "item": {\n                      "@uri": "http://isidore.science/subject/primaires",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Sources de la recherche"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "Sources of research"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Fuentes de la investigaci\\u00f3n"\n                        }\n                      ]\n                    }\n                  },\n                  {\n                    "@type": "ISIDORE_LANG",\n                    "item": {\n                      "@uri": "http://lexvo.org/id/iso639-3/fra",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "French"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "Fran\\u00e7ais"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "Idioma franc\\u00e9s"\n                        }\n                      ]\n                    }\n                  }\n                ],\n                "concepts": {\n                  "@type": "ISIDORE_DC_SUBJECT",\n                  "concept": [\n                    {\n                      "@count": "2",\n                      "@uri": "http://data.bnf.fr/ark:/12148/cb11930878m",\n                      "inScheme": "http://rameau.bnf.fr/",\n                      "prefLabel": {\n                        "@xml:lang": "fr",\n                        "$": "Amour"\n                      },\n                      "semanticExpansion": [\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb119489301",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Passions"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11940600b",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sentiments"\n                            },\n                            "altLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sensibilit\\u00e9"\n                            }\n                          }\n                        },\n                        {\n                          "concept": {\n                            "@uri": "http://data.bnf.fr/ark:/12148/cb11944030k",\n                            "prefLabel": {\n                              "@xml:lang": "fr",\n                              "$": "\\u00c9motions"\n                            },\n                            "altLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le \\u00e9motionnel"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "R\\u00e9gulation \\u00e9motionnelle"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Expression des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Contr\\u00f4le des \\u00e9motions"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "\\u00c9motivit\\u00e9"\n                              }\n                            ]\n                          }\n                        }\n                      ]\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://id.loc.gov/authorities/subjects/sh85078519",\n                      "@origin": "rameau",\n                      "prefLabel": {\n                        "@xml:lang": "en",\n                        "$": "Love"\n                      },\n                      "altLabel": {\n                        "@xml:lang": "en",\n                        "$": "Affection"\n                      }\n                    },\n                    {\n                      "@count": "2",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "amor"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "amour"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "love"\n                        }\n                      ],\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm",\n                        "expandedLabel": {\n                          "@xml:lang": "fr",\n                          "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion|amour"\n                        }\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "pasi\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "passion"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "passion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|philosophie|philosophie (aspect)|\\u00e9thique|passion"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                      "inScheme": "http://pactols.frantiq.fr/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "es",\n                          "$": "cine"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "cin\\u00e9ma"\n                        },\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        }\n                      ],\n                      "altLabel": {\n                        "@xml:lang": "fr",\n                        "$": "film"\n                      },\n                      "expanded": {\n                        "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv",\n                        "expandedLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|cin\\u00e9ma"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Tema|metodolog\\u00eda|an\\u00e1lisis documental|grabaci\\u00f3n - difusi\\u00f3n|difusi\\u00f3n de los conocimientos|cine"\n                          }\n                        ]\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "diffusion des connaissances"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "difusi\\u00f3n de los conocimientos"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "knowledge diffusion"\n                            }\n                          ],\n                          "expanded": {\n                            "@uri": "http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX",\n                            "expandedLabel": {\n                              "@xml:lang": "fr",\n                              "$": "Sujets|m\\u00e9thodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances"\n                            }\n                          }\n                        }\n                      }\n                    },\n                    {\n                      "@count": "1",\n                      "@uri": "http://www.eionet.europa.eu/gemet/concept/3183",\n                      "inScheme": "http://www.eionet.europa.eu/gemet/gemetThesaurus/",\n                      "prefLabel": [\n                        {\n                          "@xml:lang": "en",\n                          "$": "film"\n                        },\n                        {\n                          "@xml:lang": "es",\n                          "$": "pel\\u00edcula"\n                        },\n                        {\n                          "@xml:lang": "fr",\n                          "$": "film"\n                        }\n                      ],\n                      "definition": {\n                        "@xml:lang": "en",\n                        "$": "A motion picture; a thin flexible strip of cellulose coated with a photographic emission, used to make negatives and transparencies."\n                      },\n                      "semanticExpansion": {\n                        "concept": {\n                          "@uri": "http://www.eionet.europa.eu/gemet/concept/2284",\n                          "prefLabel": [\n                            {\n                              "@xml:lang": "en",\n                              "$": "documentation"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "documentaci\\u00f3n"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "documentation"\n                            }\n                          ],\n                          "definition": {\n                            "@xml:lang": "en",\n                            "$": "The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article."\n                          }\n                        }\n                      },\n                      "exactMatch": {\n                        "@uri": "http://eurovoc.europa.eu/3805"\n                      }\n                    }\n                  ]\n                },\n                "categories": [\n                  {\n                    "@type": "ISIDORE_HAL_CATEGO",\n                    "category": [\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "Art and art history"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Art et histoire de l\'art"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Arte e historia del arte"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.art",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Art et histoire de l\'art"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Art and art history"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Arte e historia del arte"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie278",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Histoire de l\'Art"\n                                },\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Historia del arte"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "History of art"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                                  },\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Mind and language|Representation|History of art"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Art_history"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.litt",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Literatura"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Literature"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Litt\\u00e9ratures"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Litt\\u00e9ratures"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Literature"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Literatura"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie269",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Literatura"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Literature"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Litt\\u00e9ratures"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Pensamiento y lenguaje|Lenguaje|Literatura"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Mind and language|Language|Literature"\n                                  },\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Esprit et Langage|Langage|Litt\\u00e9ratures"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Literature"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "0.999",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.psy",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Psicolog\\u00eda"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Psychologie"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Psychology"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.psy",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Psychologie"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Psychology"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Psicolog\\u00eda"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie266",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Psicolog\\u00eda"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Psychologie"\n                                },\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Psychology"\n                                }\n                              ],\n                              "expanded": {\n                                "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie264|http://calenda.org/categories.rdf#categorie266",\n                                "expandedLabel": [\n                                  {\n                                    "@xml:lang": "es",\n                                    "$": "Pensamiento y lenguaje|Psiquismo|Psicolog\\u00eda"\n                                  },\n                                  {\n                                    "@xml:lang": "fr",\n                                    "$": "Esprit et Langage|Psychisme|Psychologie"\n                                  },\n                                  {\n                                    "@xml:lang": "en",\n                                    "$": "Mind and language|Psyche|Psychology"\n                                  }\n                                ]\n                              }\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Psychology"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "0.998",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.musiq",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "Musicology and performing arts"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Musique, musicologie et arts de la sc\\u00e8ne"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "M\\u00fasica, musicolog\\u00eda y artes esc\\u00e9nicas"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.musiq",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Musique, musicologie et arts de la sc\\u00e8ne"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Musicology and performing arts"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|M\\u00fasica, musicolog\\u00eda y artes esc\\u00e9nicas"\n                            }\n                          ]\n                        },\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "@uri": "http://dbpedia.org/resource/Musicology"\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Performing_arts"\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "0.991",\n                        "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs.archeo",\n                        "inScheme": "http://aurehal.archives-ouvertes.fr/subjects",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "Archaeology and Prehistory"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Arch\\u00e9ologie et Pr\\u00e9histoire"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Arqueolog\\u00eda y Prehistoria"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.archeo",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9|Arch\\u00e9ologie et Pr\\u00e9histoire"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Humanities and Social Sciences|Archaeology and Prehistory"\n                            },\n                            {\n                              "@xml:lang": "es",\n                              "$": "Ciencias sociales|Arqueolog\\u00eda y Prehistoria"\n                            }\n                          ]\n                        },\n                        "definition": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "L\'arch\\u00e9ologie est une discipline scientifique dont l\'objectif est d\'\\u00e9tudier l\'Homme depuis la Pr\\u00e9histoire jusqu\\u2019\\u00e0 l\'\\u00e9poque contemporaine \\u00e0 travers sa technique gr\\u00e2ce \\u00e0 l\'ensemble des vestiges mat\\u00e9riels ayant subsist\\u00e9 et qu\\u2019il est parfois n\\u00e9cessaire de mettre au jour (objets, outils, ossements, poteries, armes, pi\\u00e8ces de monnaie, bijoux, v\\u00eatements, empreintes, traces, peintures, b\\u00e2timents, infrastructures, etc.). L\'ensemble des artefacts et des \\u00e9cofacts relevant d\'une p\\u00e9riode, d\'une civilisation, d\'une r\\u00e9gion, ou d\'un peuplement donn\\u00e9, s\'appelle culture mat\\u00e9rielle. Cette culture mat\\u00e9rielle est avant tout un concept bas\\u00e9 sur l\'assemblage de vestiges retrouv\\u00e9s dans des espaces et dans des chronologies contingentes, sur un m\\u00eame site, ou dans une m\\u00eame r\\u00e9gion, par exemple. On peut alors parler, pour d\\u00e9signer un ensemble coh\\u00e9rent, de culture arch\\u00e9ologique (comme la culture de Hallstatt, ou la culture jomon, par exemple).  L\\u2019arch\\u00e9ologue, dans une approche diachronique, acquiert donc l\\u2019essentiel de sa documentation \\u00e0 travers des travaux de terrain (prospections, sondages, fouilles, \\u00e9tudes de collections, analyses du b\\u00e2ti) par \\"opposition\\" \\u00e0 l\\u2019historien, dont les principales sources sont des textes. Mais l\'arch\\u00e9ologue utilise aussi des documents \\u00e9crits lorsque ceux-ci sont disponibles (inscriptions lapidaires, \\u00e9crits sur parchemins ou papier, etc.), tout comme il peut faire appel aux sciences de la vie et de la terre ou aux autres sciences humaines (voir ci-dessous). L\'existence ou non de sources textuelles anciennes a permis d\'\\u00e9tablir une division chronologique des sp\\u00e9cialit\\u00e9s arch\\u00e9ologiques en trois grandes p\\u00e9riodes: l\'arch\\u00e9ologie de la Pr\\u00e9histoire (absence de sources textuelles), l\'Arch\\u00e9ologie de la Protohistoire (peuples n\'ayant pas de sources textuelles mais \\u00e9tant cit\\u00e9s dans ceux de peuples contemporains) et l\'arch\\u00e9ologie des P\\u00e9riodes historiques (existence de sources textuelles). Il existe aussi des sp\\u00e9cialisations arch\\u00e9ologiques faites suivant le type d\\u2019artefacts \\u00e9tudi\\u00e9s (c\\u00e9ramiques, b\\u00e2ti, etc.), ou \\u00e0 partir de la mati\\u00e8re premi\\u00e8re des artefacts \\u00e9tudi\\u00e9s (pierre, terre crue, verre, os, cuir, etc.).  Le mot \\u00ab arch\\u00e9ologie \\u00bb vient du grec ancien \\u1f00\\u03c1\\u03c7\\u03b1\\u03b9\\u03bf\\u03bb\\u03bf\\u03b3\\u03af\\u03b11 et est form\\u00e9 \\u00e0 partir des racines \\u1f00\\u03c1\\u03c7\\u03b1\\u03af\\u03bf\\u03c2 = ancien et \\u03bb\\u03cc\\u03b3\\u03bf\\u03c2 = mot/parole/discours. Toutefois, c\'est avant tout \\u00e0 l\'\\u00e9tude de l\'objet fabriqu\\u00e9 par l\'homme, donc \\u00e0 la technicit\\u00e9, que l\'arch\\u00e9ologue consacre son travail.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Arch\\u00e9ologie de Wikip\\u00e9dia en fran\\u00e7ais"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "La pr\\u00e9histoire (sans majuscule), appel\\u00e9e aussi arch\\u00e9ologie pr\\u00e9historique, est une discipline qui a pour ambition de reconstituer l\'histoire et la vie des humains depuis leur apparition jusqu\'\\u00e0 l\'apparition de l\'\\u00e9criture, au cours de la p\\u00e9riode chronologique du m\\u00eame nom (la \\u00ab Pr\\u00e9histoire \\u00bb, avec majuscule). Elle se fonde donc essentiellement sur l\'examen et l\'interpr\\u00e9tation des t\\u00e9moignages de la pr\\u00e9sence humaine tels que les vestiges arch\\u00e9ologiques d\\u00e9couverts lors de fouilles ou les \\u0153uvres de l\'art pari\\u00e9tal.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Pr\\u00e9histoire (discipline) de Wikip\\u00e9dia en fran\\u00e7ais"\n                          }\n                        ],\n                        "semanticExpansion": {\n                          "category": {\n                            "@uri": "http://aurehal.archives-ouvertes.fr/subject/shs",\n                            "prefLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Ciencias sociales"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Humanities and Social Sciences"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Sciences de l\'Homme et Soci\\u00e9t\\u00e9"\n                              }\n                            ],\n                            "definition": {\n                              "@xml:lang": "fr",\n                              "$": "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d\'\\u00e9tude, divers aspects de la r\\u00e9alit\\u00e9 humaine. On les met en contraste avec les sciences dites \\u00ab exactes \\u00bb (parfois dites \\u00ab sciences dures \\u00bb, en raison de leur statut \\u00e9pist\\u00e9mologique sp\\u00e9cifique (bien que nulle science ne soit exempte de scepticisme et v\\u00e9ritablement \\u00ab exacte \\u00bb au sens de la seule r\\u00e9alit\\u00e9, et bien que les sciences qui ne sont li\\u00e9es qu\'\\u00e0 l\'immat\\u00e9rialit\\u00e9 dont la linguistique et la philosophie du langage aient pu faire l\'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines \\u00e9tudient ce qui concerne les cultures humaines, leur histoire, leurs r\\u00e9alisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d\'\\u00e9tude les soci\\u00e9t\\u00e9s humaines. Les sciences humaines ont n\\u00e9anmoins une interface avec les sciences de la nature de l\'environnement, car l\'homme fait partie des esp\\u00e8ces vivantes, il a une empreinte \\u00e9cologique croissante et l\'anthroposyst\\u00e8me1 qu\'il a cr\\u00e9\\u00e9 interagit fortement avec les \\u00e9cosyst\\u00e8mes2. Celles-ci reconduisant ainsi, d\'une certaine fa\\u00e7on, l\'opposition \\u00e0 l\'\\u00e2ge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l\'\\u00e9conomique, etc.). L\'expression anglaise de \\u00ab science sociale \\u00bb serait apparue en 1824, dans un livre du coop\\u00e9ratiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux \\u00e0 r\\u00e9soudre une difficult\\u00e9 m\\u00e9thodologique de recherche d\'objectivit\\u00e9 dans l\'\\u00e9tude de l\'esp\\u00e8ce humaine et des anthroposyst\\u00e8mes ; o\\u00f9 l\'objet \\u00e9tudi\\u00e9 co\\u00efncide avec la culture du sujet qui l\'analyse. Ce probl\\u00e8me se confond donc avec de nombreux d\\u00e9bats en \\u00e9pist\\u00e9mologie concernant le crit\\u00e8re de scientificit\\u00e9 et d\'objectivit\\u00e9, \\u00e0 supposer qu\'on puisse identifier les deux4. Cette objectivit\\u00e9 des sciences humaines et sociales est structur\\u00e9e autour de plusieurs principes fondamentaux: la neutralit\\u00e9 axiologique, th\\u00e9oris\\u00e9e par Max Weber; la distinction faits-valeurs et le v\\u00e9rificationnisme, th\\u00e9oris\\u00e9s par le Cercle de Vienne et formul\\u00e9es pr\\u00e9cis\\u00e9ment par Alfred Ayer et Rudolf Carnap. Karl Popper s\'est ensuite substitu\\u00e9 au crit\\u00e8re de r\\u00e9futabilit\\u00e9, qui demeure en d\\u00e9bat aujourd\'hui.  Contenu soumis \\u00e0 la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikip\\u00e9dia en fran\\u00e7ais (auteurs)"\n                            }\n                          }\n                        },\n                        "exactMatch": [\n                          {\n                            "category": {\n                              "@uri": "http://calenda.org/categories.rdf#categorie293",\n                              "prefLabel": [\n                                {\n                                  "@xml:lang": "en",\n                                  "$": "Archaeology"\n                                },\n                                {\n                                  "@xml:lang": "fr",\n                                  "$": "Arch\\u00e9ologie"\n                                },\n                                {\n                                  "@xml:lang": "es",\n                                  "$": "Arqueolog\\u00eda"\n                                }\n                              ],\n                              "expanded": [\n                                {\n                                  "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293",\n                                  "expandedLabel": [\n                                    {\n                                      "@xml:lang": "fr",\n                                      "$": "Soci\\u00e9t\\u00e9s|Histoire|Arch\\u00e9ologie"\n                                    },\n                                    {\n                                      "@xml:lang": "es",\n                                      "$": "Sociedad|Historia|Arqueolog\\u00eda"\n                                    },\n                                    {\n                                      "@xml:lang": "en",\n                                      "$": "Society|History|Archaeology"\n                                    }\n                                  ]\n                                },\n                                {\n                                  "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293",\n                                  "expandedLabel": [\n                                    {\n                                      "@xml:lang": "es",\n                                      "$": "Pensamiento y lenguaje|Epistemolog\\u00eda y metodolog\\u00eda|Arqueolog\\u00eda"\n                                    },\n                                    {\n                                      "@xml:lang": "fr",\n                                      "$": "Esprit et Langage|\\u00c9pist\\u00e9mologie et m\\u00e9thodes|Arch\\u00e9ologie"\n                                    },\n                                    {\n                                      "@xml:lang": "en",\n                                      "$": "Mind and language|Epistemology and methodology|Archaeology"\n                                    }\n                                  ]\n                                }\n                              ]\n                            }\n                          },\n                          {\n                            "@uri": "http://dbpedia.org/resource/Archaeology"\n                          }\n                        ]\n                      }\n                    ]\n                  },\n                  {\n                    "@type": "ISIDORE_CALENDA_SUBJECT",\n                    "category": [\n                      {\n                        "@proba": "0.991",\n                        "@uri": "http://calenda.org/categories.rdf#categorie293",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "en",\n                            "$": "Archaeology"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Arch\\u00e9ologie"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Arqueolog\\u00eda"\n                          }\n                        ],\n                        "expanded": [\n                          {\n                            "@uri": "http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293",\n                            "expandedLabel": [\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Soci\\u00e9t\\u00e9s|Histoire|Arch\\u00e9ologie"\n                              },\n                              {\n                                "@xml:lang": "es",\n                                "$": "Sociedad|Historia|Arqueolog\\u00eda"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Society|History|Archaeology"\n                              }\n                            ]\n                          },\n                          {\n                            "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293",\n                            "expandedLabel": [\n                              {\n                                "@xml:lang": "es",\n                                "$": "Pensamiento y lenguaje|Epistemolog\\u00eda y metodolog\\u00eda|Arqueolog\\u00eda"\n                              },\n                              {\n                                "@xml:lang": "fr",\n                                "$": "Esprit et Langage|\\u00c9pist\\u00e9mologie et m\\u00e9thodes|Arch\\u00e9ologie"\n                              },\n                              {\n                                "@xml:lang": "en",\n                                "$": "Mind and language|Epistemology and methodology|Archaeology"\n                              }\n                            ]\n                          }\n                        ]\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://calenda.org/categories.rdf#categorie278",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Histoire de l\'Art"\n                          },\n                          {\n                            "@xml:lang": "es",\n                            "$": "Historia del arte"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "History of art"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Pensamiento y lenguaje|Representaci\\u00f3n|Historia del arte"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Esprit et Langage|Repr\\u00e9sentations|Histoire de l\'Art"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Mind and language|Representation|History of art"\n                            }\n                          ]\n                        }\n                      },\n                      {\n                        "@proba": "1.000",\n                        "@uri": "http://calenda.org/categories.rdf#categorie269",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Literatura"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Literature"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Litt\\u00e9ratures"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Pensamiento y lenguaje|Lenguaje|Literatura"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Mind and language|Language|Literature"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Esprit et Langage|Langage|Litt\\u00e9ratures"\n                            }\n                          ]\n                        }\n                      },\n                      {\n                        "@proba": "0.999",\n                        "@uri": "http://calenda.org/categories.rdf#categorie266",\n                        "@origin": "hal",\n                        "prefLabel": [\n                          {\n                            "@xml:lang": "es",\n                            "$": "Psicolog\\u00eda"\n                          },\n                          {\n                            "@xml:lang": "fr",\n                            "$": "Psychologie"\n                          },\n                          {\n                            "@xml:lang": "en",\n                            "$": "Psychology"\n                          }\n                        ],\n                        "expanded": {\n                          "@uri": "http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie264|http://calenda.org/categories.rdf#categorie266",\n                          "expandedLabel": [\n                            {\n                              "@xml:lang": "es",\n                              "$": "Pensamiento y lenguaje|Psiquismo|Psicolog\\u00eda"\n                            },\n                            {\n                              "@xml:lang": "fr",\n                              "$": "Esprit et Langage|Psychisme|Psychologie"\n                            },\n                            {\n                              "@xml:lang": "en",\n                              "$": "Mind and language|Psyche|Psychology"\n                            }\n                          ]\n                        }\n                      }\n                    ]\n                  }\n                ]\n              },\n              "dc:language": "fre",\n              "dc:rights": [\n                {\n                  "@xml:lang": "fre",\n                  "$": "conditions sp\\u00e9cifiques d\'utilisation (sous convention BnF-ADM-2021-061241-01)"\n                },\n                {\n                  "@xml:lang": "eng",\n                  "$": "restricted use (convention BnF-ADM-2021-061241-01)"\n                }\n              ]\n            }\n          }\n        ]\n      },\n      "page": {\n        "@current": "1",\n        "@next": "2"\n      }\n    }\n  }\n}'

Maintenant cherchons une liste de disciplines:

parametres = {
        'facet': 'discipline',
        'output':'json'
 }

mes_disciplines=chercheisidore(parametres)
mes_disciplines
{'response': {'header': {'query': {'@text': '',
    '@userId': '496c4352-bd0a-9d07-e334-109269201af4',
    '@sessionId': 'lt6mp7cqr21i3ag1r553gr320j',
    '@date': '2021-11-08T20:19:30+0100',
    'param': [{'@name': 'replies', '@value': '25'},
     {'@name': 'lang', '@value': 'fr'},
     {'@name': 'facet', '@value': 'discipline,replies=30'},
     {'@name': 'facet', '@value': 'discipline,sort=items'},
     {'@name': 'facet', '@value': 'discipline,order=DESC'}]},
   'performance': {'@durationMs': '4140'}},
  'replies': {'meta': {'@items': '10063221', '@pageItems': '25'},
   'facets': {'facet': {'@id': 'discipline',
     '@type': 'string',
     '@layout': 'tree',
     'label': {'@xml:lang': 'fr', '$': 'Domaines HAL'},
     'node': [{'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.hist',
       '@items': '1434853',
       'label': {'@xml:lang': 'fr', '$': 'Histoire'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
       '@items': '926389',
       'label': {'@xml:lang': 'fr', '$': 'Littératures'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.droit',
       '@items': '648157',
       'label': {'@xml:lang': 'fr', '$': 'Droit'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.art',
       '@items': '485193',
       'label': {'@xml:lang': 'fr', '$': "Art et histoire de l'art"}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.socio',
       '@items': '479070',
       'label': {'@xml:lang': 'fr', '$': 'Sociologie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
       '@items': '473195',
       'label': {'@xml:lang': 'fr', '$': 'Archéologie et Préhistoire'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.eco',
       '@items': '462165',
       'label': {'@xml:lang': 'fr', '$': 'Economies et finances'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.geo',
       '@items': '390930',
       'label': {'@xml:lang': 'fr', '$': 'Géographie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.scipo',
       '@items': '383578',
       'label': {'@xml:lang': 'fr', '$': 'Science politique'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.edu',
       '@items': '345143',
       'label': {'@xml:lang': 'fr', '$': 'Education'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.langue',
       '@items': '303212',
       'label': {'@xml:lang': 'fr', '$': 'Linguistique'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.musiq',
       '@items': '297484',
       'label': {'@xml:lang': 'fr',
        '$': 'Musique, musicologie et arts de la scène'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.info',
       '@items': '289869',
       'label': {'@xml:lang': 'fr',
        '$': "Sciences de l'information et de la communication"}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se',
       '@items': '272729',
       'label': {'@xml:lang': 'fr',
        '$': 'Anthropologie sociale et ethnologie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.psy',
       '@items': '222246',
       'label': {'@xml:lang': 'fr', '$': 'Psychologie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.hisphilso',
       '@items': '193553',
       'label': {'@xml:lang': 'fr',
        '$': 'Histoire, Philosophie et Sociologie des sciences'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.phil',
       '@items': '180545',
       'label': {'@xml:lang': 'fr', '$': 'Philosophie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.gestion',
       '@items': '178690',
       'label': {'@xml:lang': 'fr', '$': 'Gestion et management'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.archi',
       '@items': '132833',
       'label': {'@xml:lang': 'fr',
        '$': "Architecture, aménagement de l'espace"}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.relig',
       '@items': '132538',
       'label': {'@xml:lang': 'fr', '$': 'Religions'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.envir',
       '@items': '99580',
       'label': {'@xml:lang': 'fr', '$': "Etudes de l'environnement"}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.class',
       '@items': '90261',
       'label': {'@xml:lang': 'fr', '$': 'Etudes classiques'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.anthro-bio',
       '@items': '67668',
       'label': {'@xml:lang': 'fr', '$': 'Anthropologie biologique'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.museo',
       '@items': '66172',
       'label': {'@xml:lang': 'fr', '$': 'Héritage culturel et muséologie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.genre',
       '@items': '61160',
       'label': {'@xml:lang': 'fr', '$': 'Etudes sur le genre'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.demo',
       '@items': '60975',
       'label': {'@xml:lang': 'fr', '$': 'Démographie'}},
      {'@key': 'http://aurehal.archives-ouvertes.fr/subject/shs.stat',
       '@items': '58493',
       'label': {'@xml:lang': 'fr', '$': 'Méthodes et statistiques'}}]}},
   'content': {'reply': [{'@uri': '10670/1.gebq68',
      'isidore': {'title': 'SESIÓN DEL SEMINARIO DE ESTUDIOS SOBRE CENTROAMÉRICA',
       'url': 'http://trincherah.hypotheses.org/230',
       'enrichedCreators': {'creator': {'@origin': 'Juan Carlos Vázquez Medeles',
         '@normalizedAuthor': 'Medeles, Juan Carlos Vázquez',
         '@idAuthor': 'medeles_juan_carlos_vazquez',
         'firstname': 'Juan Carlos Vázquez',
         'lastname': 'Medeles',
         'title': [],
         'sameAs': {'orcid': '0000-0003-0673-8578'}}},
       'date': {'@origin': '2021-06-25T14:40:13Z',
        '@startDate': '2021-06-25',
        '@endDate': '2021-06-25',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-06-25',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28106829',
         '$': 'http://trincherah.hypotheses.org/230'}},
       'abstract': 'El Centro de Investigaciones sobre América Latina y el Caribe de la Universidad Nacional Autónoma de México (En colaboración con el proyecto PAPIIT AG40012031) y el Instituto de Investigaciones Dr. José María Luis Mora, en el marco del: Seminario de Estudios sobre Centroamérica. Sesión del 25 de junio de 2021 con el Dr. Rodrigo Véliz Estrada, quien expone: "El rompecabezas de la política centroamericana": las intervenciones mexicanas y guatemaltecas en la guerra civil de Costa Rica (1948)"....',
       'types': {'type': 'post'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Hypotheses.org',
         '@handle': '10670/3.0ardxl',
         '@collectionUuid': '14f76289-43fa-4a76-8f36-a48793b9dd82',
         '$': 'Hypothèses : carnets de recherches en Sciences humaines et sociales'},
        'collectionOrganization': {'@organizationUrl': 'http://www.openedition.org',
         '$': 'OpenEdition'},
        'collectionURLMainSite': {'@thumbnaiId': '1069716',
         '$': 'http://hypotheses.org'},
        'collectionInformations': {'collectionDescription': 'Hypothèses est une plateforme de publication de carnets de recherche en sciences humaines et sociales. Ouverte en 2008, elle permet aux chercheurs et équipes de recherche de communiquer rapidement et simplement sur leurs activités de recherche.',
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'http://hypotheses.org/files/2011/06/bandeau-hypo_1000x100_ok.png',
         'collectionContactEmailAddress': 'hypotheses@openedition.org'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.0ardxl|10670/2.y7fkfs',
         '$': 'Hypothèses : carnets de recherches en Sciences humaines et sociales#trincherah'},
        'sourceCode': {'@handle': '10670/2.y7fkfs',
         '$': '2c6a0877-b511-4b55-b1f2-42c1f50eb632'},
        'sourceName': {'@shortLabel': 'trincherah',
         '$': 'Trinchera Histórica'},
        'sourceDataType': 'Billets',
        'sourceWebSiteURL': {'@thumbnaiId': '27970345',
         '$': 'http://trincherah.hypotheses.org'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Blog',
        'sourceDescription': {'@seeAlsoURL': 'http://trincherah.hypotheses.org',
         '$': 'Trinchera Histórica'},
        'sourceOrganization': {'label': 'OpenEdition',
         'URI': 'http://www.openedition.org',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@openedition.org'},
        'sourceParameters': {'baseUrl': 'http://oai.openedition.org/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%p %n', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#blogPost',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Billets de blog'},
            {'@xml:lang': 'en', '$': 'Blog posts'},
            {'@xml:lang': 'es', '$': 'Publicaciones en el blog'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX549100',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Estudios'},
            'label': {'@xml:lang': 'es', '$': 'Estudios'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1256',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Central America'},
             {'@xml:lang': 'es', '$': 'Centroamérica'},
             {'@xml:lang': 'fr', '$': 'Amérique Centrale'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A narrow continental region of the Western hemisphere, existing as a bridge between North and South America, often considered to be the southern portion of North America, and including countries such as Guatemala, Belize, El Salvador, Honduras, Nicaragua, Costa Rica and Panama.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/367',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Americas'},
               {'@xml:lang': 'es', '$': 'América'},
               {'@xml:lang': 'fr', '$': 'Les Amériques'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The landmasses and islands of North America, South America, Mexico, and Central America included in the Western Hemisphere.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_1434'},
             {'@uri': 'http://eurovoc.europa.eu/1606'}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#AMERIQUE_LATINE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Amérique latine'},
             {'@xml:lang': 'es', '$': 'América Latina'},
             {'@xml:lang': 'en', '$': 'Latin America'}],
            'altLabel': {'@xml:lang': 'es', '$': 'Latinoamérica'},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GeoEthno'}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#CARAIBE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Caraïbe'},
             {'@xml:lang': 'en', '$': 'Caribbean'},
             {'@xml:lang': 'es', '$': 'Caribe'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Aire Circum-Caraïbe'},
             {'@xml:lang': 'en', '$': 'Circum-Caribbean'},
             {'@xml:lang': 'fr', '$': 'Bassin Caribéen'},
             {'@xml:lang': 'fr', '$': 'Espace Caraïbe'},
             {'@xml:lang': 'fr', '$': 'Espace des Caraïbes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GeoEthno'}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#MEXICO',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mexico'},
             {'@xml:lang': 'es', '$': 'Ciudad de México'},
             {'@xml:lang': 'en', '$': 'Mexico City'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'District Fédéral'},
             {'@xml:lang': 'es', '$': 'México'},
             {'@xml:lang': 'es', '$': 'México D.F.'}],
            'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE|http://GeoEthno#MEXIQUE|http://GeoEthno#VALLEE_DE_MEXICO|http://GeoEthno#MEXICO',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Amérique|Amérique centrale|Mexique|Vallée de Mexico|Mexico'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#VALLEE_DE_MEXICO',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vallée de Mexico'},
              'altLabel': [{'@xml:lang': 'es', '$': 'Valle de México'},
               {'@xml:lang': 'es', '$': 'Cuenca de México'}],
              'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE|http://GeoEthno#MEXIQUE|http://GeoEthno#VALLEE_DE_MEXICO',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Amérique|Amérique centrale|Mexique|Vallée de Mexico'}}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#MEXIQUE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mexique'},
             {'@xml:lang': 'es', '$': 'México'},
             {'@xml:lang': 'en', '$': 'Mexico'}],
            'altLabel': [{'@xml:lang': 'es', '$': 'Méjico'},
             {'@xml:lang': 'es', '$': 'Estados Unidos Mexicanos'},
             {'@xml:lang': 'fr', '$': 'Etats-Unis du Mexique'},
             {'@xml:lang': 'en', '$': 'United Mexican States'},
             {'@xml:lang': 'fr', '$': 'Nouvelle-Espagne'},
             {'@xml:lang': 'fr', '$': 'Nouvelle Espagne'},
             {'@xml:lang': 'es', '$': 'Nueva España'},
             {'@xml:lang': 'fr',
              '$': 'Vice-Royauté de la Nouvelle-Espagne (1535-1821)'},
             {'@xml:lang': 'fr', '$': 'Nouvelle-Espagne (1535-1821)'}],
            'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE|http://GeoEthno#MEXIQUE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Amérique|Amérique centrale|Mexique'},
              {'@xml:lang': 'es', '$': 'América|América Central|México'},
              {'@xml:lang': 'en', '$': 'America|Central America|Mexico'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#AMERIQUE_CENTRALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Amérique centrale'},
               {'@xml:lang': 'es', '$': 'América Central'},
               {'@xml:lang': 'en', '$': 'Central America'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Amérique latine'},
               {'@xml:lang': 'en', '$': 'Latin America'}],
              'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Amérique|Amérique centrale'},
                {'@xml:lang': 'es', '$': 'América|América Central'}]}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6710',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'project'},
             {'@xml:lang': 'es', '$': 'proyecto'},
             {'@xml:lang': 'fr', '$': 'projet'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The complex of actions, which have a potential for resulting in a physical change in the environment.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2889',
              'prefLabel': [{'@xml:lang': 'en', '$': 'environmental planning'},
               {'@xml:lang': 'es', '$': 'planificación ambiental'},
               {'@xml:lang': 'fr', '$': 'planification écologique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The identification of desirable objectives for the physical environment, including social and economic objectives, and the creation of administrative procedures and programmes to meet those objectives.'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'frame'},
             {'@xml:lang': 'fr', '$': 'huisserie'},
             {'@xml:lang': 'es', '$': 'marco'}],
            'altLabel': [{'@xml:lang': 'en', '$': 'doorframe'},
             {'@xml:lang': 'es', '$': 'marco de puerta'},
             {'@xml:lang': 'es', '$': 'marco de ventana'},
             {'@xml:lang': 'en', '$': 'windowframe'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde'},
            'definition': [{'@xml:lang': 'ar', '$': 'إطار باب أو نافذة'},
             {'@xml:lang': 'fr',
              '$': 'Encadrement fixe, en bois ou en métal, délimitant une baie dans une cloison et recevant ou non, une porte ou par extension une fenêtre. (TLF)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
               {'@xml:lang': 'fr', '$': 'objet'},
               {'@xml:lang': 'es', '$': 'objeto'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
               {'@xml:lang': 'fr', '$': 'petit objet'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|object'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX5264733',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Rompecabezas'},
            'label': {'@xml:lang': 'es', '$': 'Rompecabezas'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6371',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'politics'},
             {'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'fr', '$': 'politique'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The theory and practice of acquiring and exercising the power to govern in a society in order to arbitrate values, allocate resources and establish and enforce rules.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49988'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576319',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Política'},
            'label': {'@xml:lang': 'es', '$': 'Política'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ciencias políticas'},
             {'@xml:lang': 'es', '$': 'Política--Teorías'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX526289',
              'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias sociales'},
              'label': {'@xml:lang': 'es', '$': 'Ciencias sociales'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
             {'@xml:lang': 'en', '$': 'Government'},
             {'@xml:lang': 'en', '$': 'Political theory'},
             {'@xml:lang': 'en', '$': 'Civil government'},
             {'@xml:lang': 'en', '$': 'Commonwealth, The'},
             {'@xml:lang': 'en', '$': 'Science, Political'},
             {'@xml:lang': 'en', '$': 'Administration'},
             {'@xml:lang': 'en', '$': 'Politics'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6370',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'policy'},
             {'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'fr', '$': 'politique'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'en', '$': 'politics'},
             {'@xml:lang': 'fr', '$': 'politique'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526842',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Guerra civil'},
            'label': {'@xml:lang': 'es', '$': 'Guerra civil'},
            'altLabel': {'@xml:lang': 'es', '$': 'Guerra interna'},
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX525638',
              'prefLabel': {'@xml:lang': 'es', '$': 'Guerra'},
              'label': {'@xml:lang': 'es', '$': 'Guerra'},
              'altLabel': [{'@xml:lang': 'es', '$': 'Conflictos bélicos'},
               {'@xml:lang': 'es', '$': 'Operaciones bélicas'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026421',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Civil war'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Intra-state war'},
             {'@xml:lang': 'en', '$': 'Civil wars'},
             {'@xml:lang': 'en', '$': 'Rebellions'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrto4XrsEDiGn',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'civil war'},
             {'@xml:lang': 'es', '$': 'guerra civil'},
             {'@xml:lang': 'fr', '$': 'guerre civile'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrto4XrsEDiGn'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
              'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
               {'@xml:lang': 'fr', '$': 'troubles'},
               {'@xml:lang': 'en', '$': 'unrest'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
               {'@xml:lang': 'fr', '$': 'soulèvement'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#COSTA_RICA',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Costa Rica'},
             {'@xml:lang': 'en', '$': 'Costa Rica'},
             {'@xml:lang': 'es', '$': 'Costa rica'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République du Costa Rica'},
             {'@xml:lang': 'en', '$': 'Republic of Costa Rica'},
             {'@xml:lang': 'es', '$': 'República de Costa Rica'}],
            'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE|http://GeoEthno#COSTA_RICA',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Amérique|Amérique centrale|Costa Rica'},
              {'@xml:lang': 'es', '$': 'América|América Central|Costa rica'},
              {'@xml:lang': 'en', '$': 'America|Central America|Costa Rica'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#AMERIQUE_CENTRALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Amérique centrale'},
               {'@xml:lang': 'es', '$': 'América Central'},
               {'@xml:lang': 'en', '$': 'Central America'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Amérique latine'},
               {'@xml:lang': 'en', '$': 'Latin America'}],
              'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_CENTRALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Amérique|Amérique centrale'},
                {'@xml:lang': 'es', '$': 'América|América Central'}]}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '1',
            '@uri': 'http://sws.geonames.org/3027939/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Centre',
             {'@xml:lang': 'fr', '$': 'Centre'},
             {'@xml:lang': 'en', '$': 'Centre'},
             {'@xml:lang': 'es', '$': 'Centro'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Centre'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3027939/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Centro'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Centre'},
              {'@xml:lang': 'en', '$': 'Europe|France|Centre'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Centre'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Centre'},
              {'@xml:lang': 'en', '$': 'Europe|France|Centre'}]},
            'latitude': '47.5',
            'longitude': '1.75',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3017382/',
              'prefLabel': ['France',
               {'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'es', '$': 'Francia'},
               {'@xml:lang': 'en', '$': 'France'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'fr', '$': 'République Française'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|Francia'},
                {'@xml:lang': 'en', '$': 'Europe|France'}],
               'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|France'},
                {'@xml:lang': 'en', '$': 'Europe|France'}]},
              'latitude': '46',
              'longitude': '2',
              'exactMatch': []}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3175058/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Latina',
             {'@xml:lang': 'en', '$': 'Latina'},
             {'@xml:lang': 'fr', '$': 'Latina'},
             {'@xml:lang': 'es', '$': 'Latina'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Latina'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3175395/|http://sws.geonames.org/3174976/|http://sws.geonames.org/3175058/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Italia|Región de Lacio|Latina'},
              {'@xml:lang': 'fr', '$': 'Europe|Italie|Latium|Latina'},
              {'@xml:lang': 'en', '$': 'Europe|Italy|Latium|Latina'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Italia|Región de Lacio'},
              {'@xml:lang': 'fr', '$': 'Europe|Italie|Latium'},
              {'@xml:lang': 'en', '$': 'Europe|Italy|Latium'}]},
            'latitude': '41.46614',
            'longitude': '12.9043',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3174976/',
              'prefLabel': ['Latium',
               {'@xml:lang': 'fr', '$': 'Latium'},
               {'@xml:lang': 'en', '$': 'Latium'},
               {'@xml:lang': 'es', '$': 'Región de Lacio'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Latium'},
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3175395/|http://sws.geonames.org/3174976/',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Italie|Latium'},
                {'@xml:lang': 'es', '$': 'Europa|Italia|Región de Lacio'},
                {'@xml:lang': 'en', '$': 'Europe|Italy|Latium'}],
               'expandedCountry': [{'@xml:lang': 'fr',
                 '$': 'Europe|Italie|Latium'},
                {'@xml:lang': 'es', '$': 'Europa|Italia|Latium'},
                {'@xml:lang': 'en', '$': 'Europe|Italy|Latium'}]},
              'latitude': '42.07762',
              'longitude': '12.77878'}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3996063/',
            'prefLabel': ['Mexico',
             {'@xml:lang': 'en', '$': 'Mexico'},
             {'@xml:lang': 'es', '$': 'México'},
             {'@xml:lang': 'fr', '$': 'Mexique'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Mexique'},
            'latitude': '23',
            'longitude': '-102',
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3530597/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Mexico City',
             {'@xml:lang': 'en', '$': 'Mexico City'},
             {'@xml:lang': 'es', '$': 'Ciudad de México'},
             {'@xml:lang': 'fr', '$': 'Mexico'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Mexico'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255149/|http://sws.geonames.org/3996063/|http://sws.geonames.org/3530597/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'América del Norte|México|Ciudad de México'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Mexique|Mexico'},
              {'@xml:lang': 'en', '$': 'North America|Mexico|Mexico City'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'América del Norte|México|Mexico City'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Mexique|Mexico City'},
              {'@xml:lang': 'en', '$': 'North America|Mexico|Mexico City'}]},
            'latitude': '19.42847',
            'longitude': '-99.12766',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3996063/',
              'prefLabel': ['Mexico',
               {'@xml:lang': 'en', '$': 'Mexico'},
               {'@xml:lang': 'es', '$': 'México'},
               {'@xml:lang': 'fr', '$': 'Mexique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Mexique'},
              'latitude': '23',
              'longitude': '-102',
              'exactMatch': []}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3624060/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Costa Rica',
             {'@xml:lang': 'es', '$': 'Costa Rica'},
             {'@xml:lang': 'en', '$': 'Republic of Costa Rica'},
             {'@xml:lang': 'fr', '$': 'Costa Rica'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Costa Rica'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255149/|http://sws.geonames.org/3624060/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'América del Norte|Costa Rica'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Costa Rica'},
              {'@xml:lang': 'en',
               '$': 'North America|Republic of Costa Rica'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'América del Norte|Costa Rica'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Costa Rica'},
              {'@xml:lang': 'en', '$': 'North America|Costa Rica'}]},
            'latitude': '10',
            'longitude': '-84',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255149/',
              'prefLabel': ['North America',
               {'@xml:lang': 'en', '$': 'North America'},
               {'@xml:lang': 'es', '$': 'América del Norte'},
               {'@xml:lang': 'fr', '$': 'Amérique du Nord'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Nord'},
              'latitude': '46.07323',
              'longitude': '-100.54688'}}}]}]},
       'dc:language': 'FR'}},
     {'@uri': '10670/1.tmlnme',
      'isidore': {'title': {'@xml:lang': 'en',
        '$': 'Comment prêcher à la fin du Moyen Âge ? Le manuel de vulgarisation de Bernold de Kaisheim. (tome 2)'},
       'url': 'https://hal.archives-ouvertes.fr/hal-03345932',
       'enrichedCreators': {'creator': {'@origin': 'Monjou, Patrick',
         '@normalizedAuthor': 'Monjou, Patrick',
         '@idAuthor': 'monjou_patrick',
         'firstname': 'Patrick',
         'lastname': 'Monjou',
         'title': [],
         'sameAs': {'idref': '127845445'}}},
       'date': {'@origin': '2021-07-16',
        '@startDate': '2021-07-16',
        '@endDate': '2021-07-16',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-07-16',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28091127',
         '$': 'https://hal.archives-ouvertes.fr/hal-03345932'},
        'similar': ['ISBN: 978-2-36648-152-5', 'hal-03345932']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'édition-traduction'},
         {'@xml:lang': 'en', '$': 'histoire religieuse'},
         {'@xml:lang': 'en', '$': 'liturgie'},
         {'@xml:lang': 'en', '$': 'ordre religieux'},
         {'@xml:lang': 'en', '$': 'ordres mendiants'},
         {'@xml:lang': 'en', '$': 'prédication'},
         {'@xml:lang': 'en', '$': 'sermon'},
         {'@xml:lang': 'en', '$': 'théologie'},
         {'@xml:lang': 'en', '$': 'Occident'},
         {'@xml:lang': 'en', '$': 'Allemagne'},
         {'@xml:lang': 'en', '$': 'Moyen Âge tardif'},
         '[SHS.HIST]Humanities and Social Sciences/History',
         '[SHS.RELIG]Humanities and Social Sciences/Religions']},
       'abstract': ['International audience',
        {'@xml:lang': 'en',
         '$': 'Les Themata de tempore et de sanctis ont été composés au début du XIVème siècle par Bernold de Kaisheim, moine de l’abbaye cistercienne de Kaisheim en Souabe. Cette œuvre est un ensemble de cent cinquante-trois sermons modèles qui renvoient systématiquement à un manuel de vulgarisation théologique antérieur d’un demi-siècle, le Compendium theologicae veritatis du Dominicain Hugues Ripelin de Strasbourg. Le tome 2 propose l’édition du texte latin à partir des deux manuscrits connus et des trois éditions incunables recensées. Un apparat des variantes est accompagné en fin de volume par un apparat des sources. Enfin, l’auteur propose une traduction française afin de rendre l’œuvre plus accessible au lecteur contemporain.'}],
       'types': {'type': ['info:eu-repo/semantics/book', 'Books']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.q0dtzi',
         '$': 'Archives ouvertes#HAL-SHS'},
        'sourceCode': {'@handle': '10670/2.q0dtzi',
         '$': 'd8793909-9989-4ab0-9a90-df96dfa247ba'},
        'sourceName': {'@shortLabel': 'HAL-SHS',
         '$': "Hyper Article en Ligne - Sciences de l'Homme et de la Société"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://halshs.archives-ouvertes.fr',
         '$': "L'archive ouverte HAL-SHS (Hyper Article en Ligne - Sciences de l'Homme et de la Société) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche dans les disciplines des SHS."},
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/hal/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#book',
           'prefLabel': [{'@xml:lang': 'fr',
             '$': "Livres et chapitres d'ouvrages"},
            {'@xml:lang': 'en', '$': 'Books and book chapters'},
            {'@xml:lang': 'es', '$': 'Libros y capítulos de libro'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1378',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Moyen Âge'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Art médiéval'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1378',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '090 Chronologie|Moyen Âge'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121',
              'prefLabel': {'@xml:lang': 'fr', '$': '090 Chronologie'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119757175',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Moyen âge'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Moyen âge (subdivision chronologique)'},
             {'@xml:lang': 'fr', '$': '500-1500 (subdivision)'},
             {'@xml:lang': 'fr',
              '$': '+* 0500......- 1500......+:500-1500: (Moyen âge)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976240j',
              'prefLabel': {'@xml:lang': 'fr', '$': "Jusqu'à 1500"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': '+*-9900......- 1492......+:Époque précolombienne:'},
               {'@xml:lang': 'fr', '$': "Jusqu'à 1500 (subdivision)"}]}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133185191',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Moyen âge'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Médiéval, Monde'},
             {'@xml:lang': 'fr', '$': 'Époque médiévale'},
             {'@xml:lang': 'fr', '$': 'Monde médiéval'}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T4-3'}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85085001',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Middle Ages'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Medieval history'},
             {'@xml:lang': 'en', '$': 'History, Medieval'},
             {'@xml:lang': 'en', '$': 'Middle Ages--History'},
             {'@xml:lang': 'en', '$': 'Medieval period'},
             {'@xml:lang': 'en', '$': 'World history, Medieval'},
             {'@xml:lang': 'en', '$': 'Dark Ages'}]},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtWIDPfj9GH5',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'manual'},
             {'@xml:lang': 'es', '$': 'manual'},
             {'@xml:lang': 'fr', '$': 'manuel'}],
            'altLabel': [{'@xml:lang': 'en', '$': 'handbook'},
             {'@xml:lang': 'en', '$': 'textbook'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrtWIDPfj9GH5',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|manual'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Livre qui expose les notions essentielles d'art d'une science, etc. (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1261',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Manuel'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1261',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '062 Information - communication|Information|Documentation|Manuel'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976821x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Vulgarisation'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtzjwtBm2ssE',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'popularization'},
             {'@xml:lang': 'fr', '$': 'vulgarisation'},
             {'@xml:lang': 'es', '$': 'vulgarización'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtzjwtBm2ssE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|vulgarisation'},
              {'@xml:lang': 'es',
               '$': 'Tema|metodología|análisis documental|grabación - difusión|difusión de los conocimientos|vulgarización'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'diffusion des connaissances'},
               {'@xml:lang': 'es', '$': 'difusión de los conocimientos'},
               {'@xml:lang': 'en', '$': 'knowledge diffusion'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13516396s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Publics'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Spectateurs'},
             {'@xml:lang': 'fr', '$': 'Public'},
             {'@xml:lang': 'fr', '$': 'Auditoire'},
             {'@xml:lang': 'fr', '$': 'Assistance (public)'},
             {'@xml:lang': 'fr', '$': 'Visiteurs'},
             {'@xml:lang': 'fr', '$': 'Fréquentation'},
             {'@xml:lang': 'fr', '$': 'Audience'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119758868',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Composés'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEIy5RBVK0E',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'moine'},
             {'@xml:lang': 'es', '$': 'monje'},
             {'@xml:lang': 'en', '$': 'monk'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe|http://ark.frantiq.fr/ark:/26678/pcrtEIy5RBVK0E',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|religion|religious personages|monk'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Membre d'un ordre religieux masculin (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'religieux'},
               {'@xml:lang': 'es', '$': 'religioso'},
               {'@xml:lang': 'en', '$': 'religious personages'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'abadía'},
             {'@xml:lang': 'fr', '$': 'abbaye'},
             {'@xml:lang': 'en', '$': 'abbey (religious establishment)'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe|http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|arquitectura|edificio|edificio religioso|alojamiento para religiosos|monasterio|abadía'}},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe|http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
              'expandedLabel': [{'@xml:lang': 'es',
                '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|alojamiento para religiosos|monasterio|abadía'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|logement des religieux|monastère|abbaye'}]}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Bâtiment abritant une communauté de moines ou de moniales gouvernée par un abbé ou une abbesse (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'monastère'},
               {'@xml:lang': 'es', '$': 'monasterio'},
               {'@xml:lang': 'en', '$': 'monastery'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|alojamiento para religiosos|monasterio'},
                 {'@xml:lang': 'fr',
                  '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|logement des religieux|monastère'}]},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe'}],
              'definition': {'@xml:lang': 'fr',
               '$': 'Ensemble des bâtiments dans lesquels vivent les moines et les moniales (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1356',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Monastère'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Abbaye'},
             {'@xml:lang': 'fr', '$': 'Couvent'},
             {'@xml:lang': 'fr', '$': 'Bâtiment conventuel'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-448|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1356'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-448',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Centre cultuel'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Centre religieux'}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#SOUABE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Souabe'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#ALLEMAGNE|http://GeoEthno#BAVIERE|http://GeoEthno#SOUABE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|Allemagne|Bavière|Souabe'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BAVIERE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bavière'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#ALLEMAGNE|http://GeoEthno#BAVIERE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|Allemagne|Bavière'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965200v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sermons'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Sermons chrétiens'},
             {'@xml:lang': 'fr', '$': 'Prêches'},
             {'@xml:lang': 'fr', '$': 'Prônes'},
             {'@xml:lang': 'fr', '$': 'Homélies'},
             {'@xml:lang': 'fr', '$': 'Prédications'},
             {'@xml:lang': 'fr', '$': 'Instructions dominicales'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Parties du discours (rhétorique)'},
                {'@xml:lang': 'fr', '$': 'Péroraisons'},
                {'@xml:lang': 'fr', '$': 'Speeches'},
                {'@xml:lang': 'fr', '$': 'Allocutions'},
                {'@xml:lang': 'fr', '$': 'Oraisons'},
                {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
                {'@xml:lang': 'fr', '$': 'Philippiques'},
                {'@xml:lang': 'fr', '$': 'Proclamations'},
                {'@xml:lang': 'fr', '$': 'Exortations'},
                {'@xml:lang': 'fr', '$': 'Exordes'},
                {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
                {'@xml:lang': 'fr', '$': 'Harangues'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318503n',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Littérature religieuse'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012026',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sermons'},
            'altLabel': {'@xml:lang': 'en', '$': 'Addresses, sermons, etc'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526934',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Sermones'},
            'label': {'@xml:lang': 'es', '$': 'Sermones'},
            'altLabel': {'@xml:lang': 'es', '$': 'Homilías'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#STRASBOURG',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Strasbourg'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#EST_--_FRA|http://GeoEthno#ALSACE|http://GeoEthno#BAS-RHIN|http://GeoEthno#STRASBOURG',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|France|Est -- FRA|Alsace|Bas-Rhin|Strasbourg'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BAS-RHIN',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bas-Rhin'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#EST_--_FRA|http://GeoEthno#ALSACE|http://GeoEthno#BAS-RHIN',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Est -- FRA|Alsace|Bas-Rhin'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318593f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Édition'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Politique éditoriale'},
             {'@xml:lang': 'fr', '$': 'Processus éditorial'},
             {'@xml:lang': 'fr', '$': "Maisons d'édition"},
             {'@xml:lang': 'fr', '$': 'Publication'},
             {'@xml:lang': 'fr', '$': 'Diffusion (édition)'},
             {'@xml:lang': 'fr', '$': 'Activité éditoriale'},
             {'@xml:lang': 'fr', '$': 'Mise en forme (édition)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940668z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Industries graphiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Chaîne graphique'},
               {'@xml:lang': 'fr', '$': 'Industrie graphique'},
               {'@xml:lang': 'fr', '$': 'Graphiques, Industries'},
               {'@xml:lang': 'fr', '$': 'Filière graphique'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006889',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Publishing'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006887',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Publication and distribution'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtc6ftJYsBD2',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Latin'},
             {'@xml:lang': 'fr', '$': 'latin (langue)'},
             {'@xml:lang': 'es', '$': 'latín (lengua)'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'inscription latine'},
             {'@xml:lang': 'fr', '$': 'langue latine'},
             {'@xml:lang': 'fr', '$': 'latin'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtNwts7RrSZO|http://ark.frantiq.fr/ark:/26678/pcrtqxW3nLM6yq|http://ark.frantiq.fr/ark:/26678/pcrt2gbkIy0gEx|http://ark.frantiq.fr/ark:/26678/pcrtc6ftJYsBD2',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philologie|linguistique|langues|langue indo-européenne|langue italique|latin (langue)'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2gbkIy0gEx',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Italic'},
               {'@xml:lang': 'fr', '$': 'langue italique'},
               {'@xml:lang': 'es', '$': 'lengua itálica'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'italique'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtNwts7RrSZO|http://ark.frantiq.fr/ark:/26678/pcrtqxW3nLM6yq|http://ark.frantiq.fr/ark:/26678/pcrt2gbkIy0gEx',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|linguistique|langues|langue indo-européenne|langue italique'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318362m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Manuscrits'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ouvrages manuscrits'},
             {'@xml:lang': 'fr', '$': 'Livres manuscrits'},
             {'@xml:lang': 'fr', '$': 'Documents manuscrits'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
                {'@xml:lang': 'fr', '$': 'Livre'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977261r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Non-livres'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4659778',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Manuscritos'},
            'label': {'@xml:lang': 'es', '$': 'Manuscritos'},
            'altLabel': {'@xml:lang': 'es', '$': 'Códices'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012491',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Manuscripts'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16727268g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Éditions'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119321007',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Incunables'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932297q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Livres anciens'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932300s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Livres rares'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Livres précieux'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120834587'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939184s'}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576407',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Incunables'},
            'label': {'@xml:lang': 'es', '$': 'Incunables'},
            'altLabel': {'@xml:lang': 'es', '$': 'Libros antiguos--S.XV'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85064810',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Incunabula'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Early printed books--15th century'},
             {'@xml:lang': 'en', '$': 'Cradle books (Early printed books)'},
             {'@xml:lang': 'en', '$': 'Incunables'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119446129',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Volume'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Volume (capacité)'},
             {'@xml:lang': 'fr', '$': 'Volume (mathématiques)'},
             {'@xml:lang': 'fr', '$': 'Cubage (volume)'},
             {'@xml:lang': 'fr', '$': 'Volumétrie'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11961082h',
               'prefLabel': {'@xml:lang': 'fr',
                '$': "Géométrie dans l'espace"},
               'altLabel': {'@xml:lang': 'fr', '$': "Géométrie de l'espace"}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11941221f',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Poids et mesures'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Mesures (métrologie)'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85144330',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Volume (Cubic content)'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Cubic measurement'},
             {'@xml:lang': 'en', '$': 'Volumetry'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318786q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sources'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Sources d'inspiration"},
             {'@xml:lang': 'fr', '$': 'Sources historiques'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012007',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sources'},
            'altLabel': {'@xml:lang': 'en', '$': 'Primary sources'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012010',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sources'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Primary sources'},
             {'@xml:lang': 'en', '$': 'Forerunners'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119336910',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Traduction'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Traductologie'},
             {'@xml:lang': 'fr', '$': 'Traduction écrite'},
             {'@xml:lang': 'fr', '$': 'Interprétariat'},
             {'@xml:lang': 'fr', '$': 'Traduction orale'},
             {'@xml:lang': 'fr', '$': 'Interprétation (traduction)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935387d',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Linguistique appliquée'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527103',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Traducción'},
            'label': {'@xml:lang': 'es', '$': 'Traducción'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Interpretación y traducción'},
             {'@xml:lang': 'es', '$': 'Literatura--Traducción'},
             {'@xml:lang': 'es', '$': 'Traducción--Teoría y técnica'},
             {'@xml:lang': 'es', '$': 'Traducción e interpretación'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006586',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Translating'},
            'altLabel': {'@xml:lang': 'en', '$': 'Translating services'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'lecteur'},
             {'@xml:lang': 'es', '$': 'lector'},
             {'@xml:lang': 'en', '$': 'reader'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
              'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
               {'@xml:lang': 'es', '$': 'práctica cotidiana'},
               {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt59R77d1H15',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Contemporary Period'},
             {'@xml:lang': 'fr', '$': 'ép contemporaine'},
             {'@xml:lang': 'es', '$': 'época contemporánea'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Contemporain'},
             {'@xml:lang': 'fr', '$': 'époque contemporaine'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#4|http://ark.frantiq.fr/ark:/26678/pcrt59R77d1H15',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Chronologie|ép contemporaine'}},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#4',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Chronologie'},
               {'@xml:lang': 'es', '$': 'Cronologia'},
               {'@xml:lang': 'en', '$': 'Chronology'}]}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtcs5l32pSUv',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire religieuse'},
             {'@xml:lang': 'es', '$': 'historia religiosa'},
             {'@xml:lang': 'en', '$': 'history of religion'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtcs5l32pSUv'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM',
              'prefLabel': [{'@xml:lang': 'en', '$': 'religion'},
               {'@xml:lang': 'fr', '$': 'religion'},
               {'@xml:lang': 'es', '$': 'religión'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119765542',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire religieuse'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX564697',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Cristianismo--Historia'},
            'label': {'@xml:lang': 'es', '$': 'Cristianismo--Historia'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX537348',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Historia eclesiástica'},
            'label': {'@xml:lang': 'es', '$': 'Historia eclesiástica'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Historia de la Iglesia'},
             {'@xml:lang': 'es', '$': 'Iglesia--Historia'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005023',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Church history'},
            'altLabel': {'@xml:lang': 'en', '$': 'Christian church history'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtcQviVbRaPn',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'liturgia'},
             {'@xml:lang': 'fr', '$': 'liturgie'},
             {'@xml:lang': 'en', '$': 'liturgy'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiSegPnzgXc|http://ark.frantiq.fr/ark:/26678/pcrthBOo082xvY|http://ark.frantiq.fr/ark:/26678/pcrtcQviVbRaPn'},
            'definition': {'@xml:lang': 'fr',
             '$': "Ordre des cérémonies et des prières déterminé par l'autorité spirituelle compétente (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthBOo082xvY',
              'prefLabel': [{'@xml:lang': 'en', '$': 'ritual'},
               {'@xml:lang': 'es', '$': 'ritual'},
               {'@xml:lang': 'fr', '$': 'rituel'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'cérémonial'},
               {'@xml:lang': 'fr', '$': 'rite'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiSegPnzgXc|http://ark.frantiq.fr/ark:/26678/pcrthBOo082xvY'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Ens. des règles, de rites (Rob.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11934689p',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Liturgie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Symbolisme liturgique'},
             {'@xml:lang': 'fr', '$': 'Liturgie (théologie)'},
             {'@xml:lang': 'fr', '$': 'Liturgies'},
             {'@xml:lang': 'fr', '$': 'Célébrations liturgiques'},
             {'@xml:lang': 'fr', '$': 'Actions liturgiques'},
             {'@xml:lang': 'fr', '$': 'Symboles liturgiques'},
             {'@xml:lang': 'fr', '$': 'Action liturgique'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938674m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie pastorale'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ministère pastoral'},
                {'@xml:lang': 'fr', '$': 'Soin des âmes'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12335519k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Culte public'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318440k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie pratique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Théologie de la pratique de l'Église"},
                {'@xml:lang': 'fr', '$': 'Débat pastoral'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002011417',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Liturgy'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525437',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Liturgia'},
            'label': {'@xml:lang': 'es', '$': 'Liturgia'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/11494',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'order'},
             {'@xml:lang': 'es', '$': 'orden'},
             {'@xml:lang': 'fr', '$': 'ordre'}],
            'definition': {'@xml:lang': 'en',
             '$': '1) A direction or command of a court. In this sense it is often used synonymously with judgment.  2) The document bearing the seal of the court recording its judgment in a case.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
              'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
               {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
               {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb15006053w',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Religieux'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Frères (religieux)'},
             {'@xml:lang': 'fr', '$': 'Religieux chrétiens'},
             {'@xml:lang': 'fr', '$': 'Pères (religieux)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931669b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biographies chrétiennes'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Biographies ecclésiastiques'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525977',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Religiosos'},
            'label': {'@xml:lang': 'es', '$': 'Religiosos'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Clero regular'},
             {'@xml:lang': 'es', '$': 'Frailes'},
             {'@xml:lang': 'es', '$': 'Monjes'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85017224',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Brothers (Religious)'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Monasticism and religious orders--Brothers'},
             {'@xml:lang': 'en',
              '$': 'Brothers (in religious orders, congregations, etc.)'},
             {'@xml:lang': 'en', '$': 'Religious brothers'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'religieux'},
             {'@xml:lang': 'es', '$': 'religioso'},
             {'@xml:lang': 'en', '$': 'religious personages'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133187930',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Ordres mendiants'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13162935m',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Monachisme et ordres religieux chrétiens'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX537441',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Órdenes mendicantes'},
            'label': {'@xml:lang': 'es', '$': 'Órdenes mendicantes'},
            'altLabel': {'@xml:lang': 'es',
             '$': 'Órdenes y congregaciones religiosas mendicantes'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85051969',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Friars'},
            'altLabel': {'@xml:lang': 'en', '$': 'Mendicant orders'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtX9hIpEsNpd',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Mendicant Orders'},
             {'@xml:lang': 'es', '$': 'Ordenes mendicantes'},
             {'@xml:lang': 'fr', '$': 'Ordres mendiants'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtyFIDkPnLlS|http://ark.frantiq.fr/ark:/26678/pcrtgE4pHNat6W|http://ark.frantiq.fr/ark:/26678/pcrtX9hIpEsNpd',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|religion|groupes religieux|Chrétiens|Ordres mendiants'},
              {'@xml:lang': 'en',
               '$': 'Themes|religion|religious groups|Christians|Mendicant Orders'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgE4pHNat6W',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Chrétiens'},
               {'@xml:lang': 'en', '$': 'Christians'},
               {'@xml:lang': 'es', '$': 'Cristianos'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtyFIDkPnLlS|http://ark.frantiq.fr/ark:/26678/pcrtgE4pHNat6W',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sujets|religion|groupes religieux|Chrétiens'},
                {'@xml:lang': 'en',
                 '$': 'Themes|religion|religious groups|Christians'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtOtoH7sRAAZ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'preaching'},
             {'@xml:lang': 'es', '$': 'prédica'},
             {'@xml:lang': 'fr', '$': 'prédication'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiSegPnzgXc|http://ark.frantiq.fr/ark:/26678/pcrtDh9KSR3zEO|http://ark.frantiq.fr/ark:/26678/pcrtOtoH7sRAAZ'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Action de prêcher ; sermon (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDh9KSR3zEO',
              'prefLabel': [{'@xml:lang': 'en', '$': 'religious life'},
               {'@xml:lang': 'es', '$': 'vida religiosa'},
               {'@xml:lang': 'fr', '$': 'vie religieuse'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiSegPnzgXc|http://ark.frantiq.fr/ark:/26678/pcrtDh9KSR3zEO'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16653651b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Prédication'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Éloquence de la chaire'},
             {'@xml:lang': 'fr', '$': 'Prédication (religion)'},
             {'@xml:lang': 'fr', '$': 'Éloquence sacrée'},
             {'@xml:lang': 'fr', '$': 'Éloquence religieuse'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977588m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Éloquence'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525951',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Predicación'},
            'label': {'@xml:lang': 'es', '$': 'Predicación'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Homilética'},
             {'@xml:lang': 'es', '$': 'Predicación cristiana'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85106171',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Preaching'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Christian preaching'},
             {'@xml:lang': 'en', '$': 'Speaking'},
             {'@xml:lang': 'en', '$': 'Homiletics'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525950',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Oratoria sagrada'},
            'label': {'@xml:lang': 'es', '$': 'Oratoria sagrada'},
            'altLabel': {'@xml:lang': 'es', '$': 'Elocuencia sagrada'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtyZKZIjwVI4',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'sermon'},
             {'@xml:lang': 'fr', '$': 'sermon'},
             {'@xml:lang': 'es', '$': 'sermón'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtyZKZIjwVI4'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Discours prononcé par un prédicateur ; discours moralisant (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
               {'@xml:lang': 'fr', '$': 'genre oratoire'},
               {'@xml:lang': 'en', '$': 'oratory genre'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdnI82Oq6lV',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'teología'},
             {'@xml:lang': 'fr', '$': 'théologie'},
             {'@xml:lang': 'en', '$': 'theology'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtdnI82Oq6lV'},
            'definition': {'@xml:lang': 'fr',
             '$': "Science de Dieu, de ses attributs, de ses rapports avec le monde et avec l'homme. (TLF)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM',
              'prefLabel': [{'@xml:lang': 'en', '$': 'religion'},
               {'@xml:lang': 'fr', '$': 'religion'},
               {'@xml:lang': 'es', '$': 'religión'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11951726r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Théologie chrétienne'},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1197'}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526172',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Teología'},
            'label': {'@xml:lang': 'es', '$': 'Teología'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Teología católica'},
             {'@xml:lang': 'es', '$': 'Teología cristiana'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008984',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Theology'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb150357447',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Occident'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Ouest, Pays de l'"},
             {'@xml:lang': 'fr', '$': 'Pays occidentaux'},
             {'@xml:lang': 'fr', '$': 'Occidentaux, Pays'},
             {'@xml:lang': 'fr', '$': "Pays de l'Ouest"}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#ALLEMAGNE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Allemagne'},
             {'@xml:lang': 'en', '$': 'Germany'},
             {'@xml:lang': 'es', '$': 'Alemania'}],
            'altLabel': [{'@xml:lang': 'fr',
              '$': "République fédérale d'Allemagne"},
             {'@xml:lang': 'en', '$': 'Federal Republic of Germany'},
             {'@xml:lang': 'fr', '$': 'RFA'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#ALLEMAGNE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|Allemagne'},
              {'@xml:lang': 'es', '$': 'Europa|Europa Occidental|Alemania'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|Germany'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '1',
            '@uri': 'http://sws.geonames.org/6441375/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Strasbourg',
             {'@xml:lang': 'fr', '$': 'Strasbourg'},
             {'@xml:lang': 'en', '$': 'Strasbourg'},
             {'@xml:lang': 'es', '$': 'Estrasburgo'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3038033/|http://sws.geonames.org/3034720/|http://sws.geonames.org/6441375/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Alsacia|Bajo Rin|Estrasburgo'},
              {'@xml:lang': 'fr',
               '$': 'Europe|France|Alsace|Bas-Rhin|Strasbourg'},
              {'@xml:lang': 'en',
               '$': 'Europe|France|Alsace|Bas-Rhin|Strasbourg'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Alsacia'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Alsace'},
              {'@xml:lang': 'en', '$': 'Europe|France|Alsace'}]},
            'latitude': '48.58361',
            'longitude': '7.74806',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3034720/',
              'prefLabel': ['Bas-Rhin',
               {'@xml:lang': 'fr', '$': 'Bas-Rhin'},
               {'@xml:lang': 'fr', '$': 'Département du Bas-Rhin'},
               {'@xml:lang': 'en', '$': 'Bas-Rhin'},
               {'@xml:lang': 'es', '$': 'Bajo Rin'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Bas-Rhin'},
               {'@xml:lang': 'fr', '$': 'Département du Bas-Rhin'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3038033/|http://sws.geonames.org/3034720/',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Alsacia|Bajo Rin'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Alsace|Bas-Rhin'},
                {'@xml:lang': 'en', '$': 'Europe|France|Alsace|Bas-Rhin'}],
               'expandedCountry': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Alsacia'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Alsace'},
                {'@xml:lang': 'en', '$': 'Europe|France|Alsace'}]},
              'latitude': '48.58333',
              'longitude': '7.66667',
              'exactMatch': []}}},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/2921044/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Germany',
             {'@xml:lang': 'fr', '$': 'Allemagne'},
             {'@xml:lang': 'es', '$': 'Alemania'},
             {'@xml:lang': 'en', '$': 'Federal Republic of Germany'},
             {'@xml:lang': 'en', '$': 'West Germany'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Allemagne'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2921044/',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Allemagne'},
              {'@xml:lang': 'es', '$': 'Europa|Alemania'},
              {'@xml:lang': 'en', '$': 'Europe|Federal Republic of Germany'}],
             'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|Germany'},
              {'@xml:lang': 'es', '$': 'Europa|Germany'},
              {'@xml:lang': 'en', '$': 'Europe|Germany'}]},
            'latitude': '51.5',
            'longitude': '10.5',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
              'prefLabel': ['Europe',
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
              'latitude': '48.69096',
              'longitude': '9.14062'}},
            'exactMatch': []}]}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.hist',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'en', '$': 'History'},
            {'@xml:lang': 'es', '$': 'Historia'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.hist',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Histoire"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|History'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Historia'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie228',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
               {'@xml:lang': 'es', '$': 'Historia'},
               {'@xml:lang': 'en', '$': 'History'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
                {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
                {'@xml:lang': 'en', '$': 'Society|History'}]}}},
            {'@uri': 'http://dbpedia.org/resource/History'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie228',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'es', '$': 'Historia'},
            {'@xml:lang': 'en', '$': 'History'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
             {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
             {'@xml:lang': 'en', '$': 'Society|History'}]}}}]},
       'dc:language': 'fr'}},
     {'@uri': '10670/1.2ch7yk',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': 'Démocratie et coutume à Futuna.'},
       'url': 'https://hal.archives-ouvertes.fr/hal-03332856',
       'enrichedCreators': {'creator': {'@origin': 'Favole, A.',
         '@normalizedAuthor': 'Favole, A.',
         '@idAuthor': 'favole_a',
         'firstname': 'A.',
         'lastname': 'Favole',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2007',
        '@startDate': '2007-01-01',
        '@endDate': '2007-12-31',
        '@treeDate': '2000/2000/2007',
        'normalizedDate': '2007-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2000'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2007'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28098286',
         '$': 'https://hal.archives-ouvertes.fr/hal-03332856'},
        'similar': 'hal-03332856'},
       'subjects': {'subject': '[SHS]Humanities and Social Sciences'},
       'types': {'type': ['info:eu-repo/semantics/article',
         'Journal articles']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.q0dtzi',
         '$': 'Archives ouvertes#HAL-SHS'},
        'sourceCode': {'@handle': '10670/2.q0dtzi',
         '$': 'd8793909-9989-4ab0-9a90-df96dfa247ba'},
        'sourceName': {'@shortLabel': 'HAL-SHS',
         '$': "Hyper Article en Ligne - Sciences de l'Homme et de la Société"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://halshs.archives-ouvertes.fr',
         '$': "L'archive ouverte HAL-SHS (Hyper Article en Ligne - Sciences de l'Homme et de la Société) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche dans les disciplines des SHS."},
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/hal/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2054',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'democracy'},
            {'@xml:lang': 'es', '$': 'democracia'},
            {'@xml:lang': 'fr', '$': 'démocratie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A system of governance in which ultimate authority power is vested in the people and exercised directly by them or by their freely elected agents.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6384',
             'prefLabel': [{'@xml:lang': 'en', '$': 'political organisation'},
              {'@xml:lang': 'es', '$': 'organización política'},
              {'@xml:lang': 'fr', '$': 'organisation politique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A group of persons organized to seek or exercise power in governmental or public affairs, by supporting candidates for office or by lobbying for action and mobilizing support for bills or governmental policies.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_28855'},
            {'@uri': 'http://eurovoc.europa.eu/381'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133185567',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Démocratie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Démocratie représentative'},
            {'@xml:lang': 'fr', '$': 'Nouvelles démocraties'},
            {'@xml:lang': 'fr', '$': 'Self-government'},
            {'@xml:lang': 'fr', '$': 'Gouvernement démocratique'},
            {'@xml:lang': 'fr', '$': 'Régime démocratique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319578s',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Régimes politiques'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Régime politique'},
              {'@xml:lang': 'fr', '$': 'Régime (science politique)'},
              {'@xml:lang': 'fr', '$': 'Régimes constitutionnels'},
              {'@xml:lang': 'fr', '$': 'Système politique'},
              {'@xml:lang': 'fr', '$': 'Systèmes politiques'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1229'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526104',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Democracia'},
           'label': {'@xml:lang': 'es', '$': 'Democracia'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2005003514',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'New democracies'},
           'altLabel': [{'@xml:lang': 'en', '$': 'States, Newly democratic'},
            {'@xml:lang': 'en', '$': 'Democracies, New'},
            {'@xml:lang': 'en', '$': 'Newly democratic states'},
            {'@xml:lang': 'en', '$': 'Nations, Newly democratic'},
            {'@xml:lang': 'en', '$': 'New democratic states'},
            {'@xml:lang': 'en', '$': 'Countries, Newly democratic'},
            {'@xml:lang': 'en', '$': 'Emerging democracies'},
            {'@xml:lang': 'en', '$': 'Democratic states, New'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85036647',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Democracy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Self-government'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0Y7m78gYEW',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'democracia'},
            {'@xml:lang': 'en', '$': 'democracy'},
            {'@xml:lang': 'fr', '$': 'démocratie'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrt0Y7m78gYEW',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|politique|régime politique|démocratie'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Gouvernement où le peuple exerce la souveraineté (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL',
             'prefLabel': [{'@xml:lang': 'en', '$': 'political régime'},
              {'@xml:lang': 'es', '$': 'régimen político'},
              {'@xml:lang': 'fr', '$': 'régime politique'}],
             'altLabel': [{'@xml:lang': 'en', '$': 'political regime'},
              {'@xml:lang': 'fr', '$': 'politique régime'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL'},
             'definition': {'@xml:lang': 'fr',
              '$': "Formes de gouvernement d'un Etat (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-671',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Démocratie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1597|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1923|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-671',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '071 Politique et pouvoirs publics|Politique|Système politique|Démocratie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1923',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Système politique'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1597|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1923'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtE7uzeXwa4y',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'tradición'},
            {'@xml:lang': 'en', '$': 'tradition'},
            {'@xml:lang': 'fr', '$': 'tradition'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'coutume'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK|http://ark.frantiq.fr/ark:/26678/pcrtE7uzeXwa4y'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Transmission de doctrines, de légendes, de coutumes, etc. pendant un long espace de temps (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
             'prefLabel': [{'@xml:lang': 'en', '$': 'civilization processes'},
              {'@xml:lang': 'fr', '$': 'faits de civilisation'},
              {'@xml:lang': 'es', '$': 'hechos de civilización'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|histoire-civilisation|faits de civilisation'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
            {'@xml:lang': 'fr', '$': 'Sciences exactes'},
            {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527870',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias'},
           'label': {'@xml:lang': 'es', '$': 'Ciencias'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.socio',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
            {'@xml:lang': 'en', '$': 'Sociology'},
            {'@xml:lang': 'es', '$': 'Sociología'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.socio',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Sociologie"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Sociology'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Sociología'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie201',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
               {'@xml:lang': 'en', '$': 'Sociology'},
               {'@xml:lang': 'es', '$': 'Sociología'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sociétés|Sociologie'},
                {'@xml:lang': 'es', '$': 'Sociedad|Sociología'},
                {'@xml:lang': 'en', '$': 'Society|Sociology'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Sociology'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie201',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
            {'@xml:lang': 'en', '$': 'Sociology'},
            {'@xml:lang': 'es', '$': 'Sociología'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Sociologie'},
             {'@xml:lang': 'es', '$': 'Sociedad|Sociología'},
             {'@xml:lang': 'en', '$': 'Society|Sociology'}]}}}]},
       'dc:language': 'fr'}},
     {'@uri': 'ark:/12148/btv1b10660876s',
      'isidore': {'title': 'Gozos en honor del glorioso obispo y confesor San Martin patron del colegio tridentino de la inmortal ciudad de Gerona; para cantar el dia 11 de Noviembre del presente año de 1846, en la iglesia de su invocacion recientemente reedificada',
       'url': 'http://gallica.bnf.fr/ark:/12148/btv1b10660876s',
       'enrichedCreators': [],
       'date': {'@origin': '1846',
        '@startDate': '1846-01-01',
        '@endDate': '1846-12-31',
        'normalizedDate': '1846-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1800'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1840'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'false',
         '@thumbnailId': '28010802',
         '$': 'http://gallica.bnf.fr/ark:/12148/btv1b10660876s'}},
       'subjects': {'subject': {'@xml:lang': 'fre', '$': 'Marti,sant'}},
       'relations': {'relation': 'Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb45922988b'},
       'abstract': ['Appartient à l’ensemble documentaire : 3M000',
        'Appartient à l’ensemble documentaire : 3M009'],
       'types': {'type': [{'@xml:lang': 'fre', '$': 'image fixe'},
         {'@xml:lang': 'eng', '$': 'image'},
         {'@xml:lang': 'eng', '$': 'still image'},
         {'@xml:lang': 'fre', '$': 'estampe'},
         {'@xml:lang': 'eng', '$': 'engraving'}]},
       'source_info': {'collectionLabel': {'@shortLabel': 'Gallica',
         '@handle': '10670/3.xut8e9',
         '@collectionUuid': '5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4',
         '$': 'Gallica'},
        'collectionOrganization': {'@organizationUrl': 'http://www.bnf.fr',
         '$': 'Bibliothèque nationale de France'},
        'collectionURLMainSite': {'@thumbnaiId': '630791',
         '$': 'http://gallica.bnf.fr'},
        'collectionInformations': {'collectionDescription': 'Gallica est la Bibliothèque numérique de la Bibliothèque nationale de France. Elle offre un accès à tous types de supports : imprimés (monographies, périodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.',
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'gallica@bnf.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'http://gallica.bnf.fr/(ark:/12148/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.xut8e9|10670/2.7mgthe',
         '$': 'Gallica#Estampes'},
        'sourceCode': {'@handle': '10670/2.7mgthe',
         '$': 'b95b96c6-591e-eaa1-8d53-7b603c9030ba'},
        'sourceName': {'@shortLabel': 'Estampes', '$': 'Estampes de Gallica'},
        'sourceDataType': 'Photos et images',
        'sourceWebSiteURL': {'@thumbnaiId': '630894',
         '$': 'http://gallica.bnf.fr/Search?f_typedoc=partitions'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://bibnum.bnf.fr/oai/index.html',
         '$': 'Cet ensemble donne accès aux estampes disponibles dans Gallica.'},
        'sourceOrganization': {'label': 'Bibliothèque nationale de France',
         'URI': 'http://www.bnf.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://oai.bnf.fr/oai2/OAIHandler',
         'crawlingFrequency': '14400',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#image',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Photos et images'},
            {'@xml:lang': 'en', '$': 'Images and photos'},
            {'@xml:lang': 'es', '$': 'Fotografías e imágenes'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/spa',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Spanish'},
            {'@xml:lang': 'fr', '$': 'Espagnol'},
            {'@xml:lang': 'es', '$': 'Idioma español'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX532860',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Goigs'},
           'label': {'@xml:lang': 'es', '$': 'Goigs'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Goigs catalanes'},
            {'@xml:lang': 'es', '$': 'Gozos'}],
           'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX533571',
             'prefLabel': {'@xml:lang': 'es',
              '$': 'Poesía religiosa catalana'},
             'label': {'@xml:lang': 'es', '$': 'Poesía religiosa catalana'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85055679',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Goigs'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRUXNAvwSSF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'honneur'},
            {'@xml:lang': 'es', '$': 'honor'},
            {'@xml:lang': 'en', '$': 'honour'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q|http://ark.frantiq.fr/ark:/26678/pcrtRUXNAvwSSF',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|society|standards of behaviour|honour'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q',
             'prefLabel': [{'@xml:lang': 'es', '$': 'costumbres'},
              {'@xml:lang': 'fr', '$': 'moeurs'},
              {'@xml:lang': 'en', '$': 'standards of behaviour'}],
             'altLabel': {'@xml:lang': 'en', '$': 'mores'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Habitudes, naturelles ou acquises, relatives à la pratique du bien ou du mal (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527063',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Honor'},
           'label': {'@xml:lang': 'es', '$': 'Honor'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85061884',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Honor'},
           'altLabel': {'@xml:lang': 'en', '$': 'Honour'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt8qSQmAM70s',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'bishop'},
            {'@xml:lang': 'fr', '$': 'évêque'},
            {'@xml:lang': 'es', '$': 'obispo'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe|http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc|http://ark.frantiq.fr/ark:/26678/pcrt8qSQmAM70s',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|religion|religious personages|clergy|bishop'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Prêtre dirigeant un diocèse (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'clergé'},
              {'@xml:lang': 'en', '$': 'clergy'},
              {'@xml:lang': 'es', '$': 'clero'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe|http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|religion|religious personages|clergy'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des prêtres d'un culte (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciudad'},
            {'@xml:lang': 'en', '$': 'town'},
            {'@xml:lang': 'fr', '$': 'ville'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'agglomération'},
            {'@xml:lang': 'fr', '$': 'agglomération urbaine'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2|http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|nucleated settlement|town'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hábitat agrupado'},
              {'@xml:lang': 'fr', '$': 'habitat groupé'},
              {'@xml:lang': 'en', '$': 'nucleated settlement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|habitat groupé"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|hábitat agrupado'}]},
             'definition': {'@xml:lang': 'fr',
              '$': "Sous ce terme sont regroupés tous les types d'agglomération urbaine (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#GERONE',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gérone'},
           'altLabel': {'@xml:lang': 'es', '$': 'Gerona'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_MERIDIONALE|http://GeoEthno#ESPAGNE|http://GeoEthno#CATALOGNE|http://GeoEthno#PROVINCE_DE_GERONE|http://GeoEthno#GERONE',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe méridionale|Espagne|Catalogne|Province de Gérone|Gérone'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#PROVINCE_DE_GERONE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Province de Gérone'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_MERIDIONALE|http://GeoEthno#ESPAGNE|http://GeoEthno#CATALOGNE|http://GeoEthno#PROVINCE_DE_GERONE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe méridionale|Espagne|Catalogne|Province de Gérone'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'church'},
            {'@xml:lang': 'fr', '$': 'église'},
            {'@xml:lang': 'es', '$': 'iglesia'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship|church'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|lieu de culte|église'}]},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX'}],
           'definition': {'@xml:lang': 'fr',
            '$': 'Edifice cultuel des diverses confessions chrétiennes (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu de culte'},
              {'@xml:lang': 'es', '$': 'lugar de culto'},
              {'@xml:lang': 'en', '$': 'place of worship'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
               'expandedLabel': [{'@xml:lang': 'en',
                 '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship'},
                {'@xml:lang': 'es',
                 '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|lugar de culto'}]},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|lieu de culte'}}],
             'definition': {'@xml:lang': 'fr',
              '$': "Endroit, généralement un édifice, dans lequel se réunissent les pratiquants d'une religion pour prier et célébrer un culte au cours de cérémonies. (Wikipédia)"}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526899',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Iglesia'},
           'label': {'@xml:lang': 'es', '$': 'Iglesia'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Iglesia cristiana'},
            {'@xml:lang': 'es', '$': 'Iglesia universal'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85025502',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Church'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Theology, Ecclesiastical'},
            {'@xml:lang': 'en', '$': 'Ecclesiastical theology'},
            {'@xml:lang': 'en', '$': 'Ecclesiology'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1410',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'church'},
            {'@xml:lang': 'es', '$': 'iglesia'},
            {'@xml:lang': 'fr', '$': 'église'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A building for religious activities.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10851',
             'prefLabel': [{'@xml:lang': 'en', '$': 'community facility'},
              {'@xml:lang': 'es', '$': 'equipamiento colectivo'},
              {'@xml:lang': 'fr', '$': 'équipement collectif'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Buildings, equipment and services provided for a community.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4101'}}]}},
       'dc:language': 'spa',
       'dc:rights': [{'@xml:lang': 'fre', '$': 'domaine public'},
        {'@xml:lang': 'eng', '$': 'public domain'}]}},
     {'@uri': '10670/1.alktgc',
      'isidore': {'title': 'Bordeaux – Église Sainte-Marie, Notre-Dame-de-la-Place',
       'url': 'http://journals.openedition.org/adlfi/105865',
       'enrichedCreators': {'creator': [{'@origin': 'Guibert, Pierre',
          '@normalizedAuthor': 'Guibert, Pierre',
          '@idAuthor': 'guibert_pierre',
          'firstname': 'Pierre',
          'lastname': 'Guibert',
          'title': [],
          'sameAs': {'orcid': '0000-0001-8969-8684',
           'idhal': 'pierre-guibert'}},
         {'@origin': 'Guibert, Pierre',
          '@normalizedAuthor': 'Guibert, Pierre',
          '@idAuthor': 'guibert_pierre',
          'firstname': 'Pierre',
          'lastname': 'Guibert',
          'title': [],
          'sameAs': {'orcid': '0000-0001-8969-8684',
           'idhal': 'pierre-guibert'}},
         {'@origin': 'Urbanová, Petra',
          '@normalizedAuthor': 'Urbanová, Petra',
          '@idAuthor': 'urbanova_petra',
          'firstname': 'Petra',
          'lastname': 'Urbanová',
          'title': [],
          'sameAs': {'idref': '197999115'}},
         {'@origin': 'Hervé, Gwénael',
          '@normalizedAuthor': 'Hervé, Gwénael',
          '@idAuthor': 'herve_gwenael',
          'firstname': 'Gwénael',
          'lastname': 'Hervé',
          'title': [],
          'sameAs': {'orcid': '0000-0001-8742-9069',
           'idref': '164464638',
           'idhal': 'gwenael-herve'}},
         {'@origin': 'Dufresne, Philippe',
          '@normalizedAuthor': 'Dufresne, Philippe',
          '@idAuthor': 'dufresne_philippe',
          'firstname': 'Philippe',
          'lastname': 'Dufresne',
          'title': [],
          'sameAs': {'orcid': '0000-0002-5799-5681',
           'idhal': 'philippe-dufresne'}},
         {'@origin': 'Lanos, Philippe',
          '@normalizedAuthor': 'Lanos, Philippe',
          '@idAuthor': 'lanos_philippe',
          'firstname': 'Philippe',
          'lastname': 'Lanos',
          'title': [],
          'sameAs': {'orcid': '0000-0002-2570-4667',
           'idref': '032794460',
           'idhal': 'philippe-lanos'}},
         {'@origin': 'Bouvier, Armel',
          '@normalizedAuthor': 'Bouvier, Armel',
          '@idAuthor': 'bouvier_armel',
          'firstname': 'Armel',
          'lastname': 'Bouvier',
          'title': [],
          'sameAs': {'idref': '170496856'}},
         {'@origin': 'Régaldo, Pierre',
          '@normalizedAuthor': 'Régaldo, Pierre',
          '@idAuthor': 'regaldo_pierre',
          'firstname': 'Pierre',
          'lastname': 'Régaldo',
          'title': [],
          'sameAs': []},
         {'@origin': 'Charpentier, Xavier',
          '@normalizedAuthor': 'Charpentier, Xavier',
          '@idAuthor': 'charpentier_xavier',
          'firstname': 'Xavier',
          'lastname': 'Charpentier',
          'title': [],
          'sameAs': {'orcid': '0000-0001-9039-8021'}}]},
       'date': {'@origin': '2021-09-14',
        '@startDate': '2021-09-14',
        '@endDate': '2021-09-14',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-09-14',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28120308',
          '$': 'http://journals.openedition.org/adlfi/105865'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'http://journals.openedition.org/adlfi/tei/105865'}]},
       'abstract': 'L’étude chronologique des vestiges qui se trouvent sous l’actuelle église Notre-Dame-de-la-Place (Bordeaux, place Pey-Berland), réalisée entre 2018 et\xa02019, s’intègre dans le cadre du programme de recherche MoDAq (Mortar Dating in Aquitaine, dir. P.\xa0Guibert, Iramat) financé par la région Nouvelle-Aquitaine, le service régional de l’archéologie, l’université Bordeaux-Montaigne et le CNRS. En prolongement des travaux de chronologie par thermoluminescence et par archéomagnétisme effectués entre ...',
       'types': {'type': 'archaeological note'},
       'source_info': {'collectionLabel': {'@shortLabel': 'OpenEdition Journals',
         '@handle': '10670/3.wnt2uz',
         '@collectionUuid': '1696a612-a6e4-473d-8f35-4cf007b39469',
         '$': 'OpenEdition Journals'},
        'collectionOrganization': {'@organizationUrl': 'http://www.openedition.org',
         '$': 'OpenEdition'},
        'collectionURLMainSite': {'@thumbnaiId': '630816',
         '$': 'http://journals.openedition.org'},
        'collectionInformations': {'collectionDescription': "Né en 1999, Revues.org est le plus ancien portail français de revues en ligne en sciences humaines et sociales. Il est développé par le Centre pour l'édition électronique ouverte (Cléo), un laboratoire associant le CNRS, l'EHESS, l'Université de Provence et l'Université d'Avignon. Depuis 2011, Revues.org fait partie du portail de ressources électronique OpenEdition.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'http://www.revues.org/images/revues-org.png',
         'collectionContactEmailAddress': 'contact@openedition.org'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'urn:doi:(10.4000/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.wnt2uz|10670/2.vvqtri',
         '$': 'OpenEdition Journals#adlfi'},
        'sourceCode': {'@handle': '10670/2.vvqtri',
         '$': '550704c7-4e03-45b5-80ee-70812beba045'},
        'sourceName': {'@shortLabel': 'adlfi',
         '$': 'ADLFI. Archéologie de la France - Informations'},
        'sourceISSN': 'https://portal.issn.org/resource/ISSN/2114-0502',
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4606393',
         '$': 'http://journals.openedition.org/adlfi'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://journals.openedition.org/adlfi',
         '$': "Conçue comme une coédition entre le ministère de la Culture et le CNRS, Archéologie de la France - Informations est une revue en ligne destinée à publier l'actualité des opérations archéologiques menées en France. Elle remplace Gallia Informations dont elle reprend les missions et assure le développement. AdlFI constitue une base de données à jour des dernières recherches et découvertes archéologiques en France, à l’usage des chercheurs nationaux et internationaux, des divers acteurs de l’archéologie et de tous ceux qui s’intéressent au patrimoine national."},
        'sourceOrganization': {'label': 'OpenEdition',
         'URI': 'http://www.openedition.org',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@openedition.org'},
        'sourceParameters': {'baseUrl': 'http://oai.openedition.org/',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '2',
            '@uri': 'http://GeoEthno#BORDEAUX',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bordeaux'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#SUD-OUEST_--_FRA|http://GeoEthno#AQUITAINE|http://GeoEthno#GIRONDE|http://GeoEthno#BORDEAUX',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|France|Sud-Ouest -- FRA|Aquitaine|Gironde|Bordeaux'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GIRONDE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Gironde'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#SUD-OUEST_--_FRA|http://GeoEthno#AQUITAINE|http://GeoEthno#GIRONDE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Sud-Ouest -- FRA|Aquitaine|Gironde'}}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119757086',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Église'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Église (théologie)'},
             {'@xml:lang': 'fr', '$': 'Chrétienté'},
             {'@xml:lang': 'fr', '$': 'Église chrétienne'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11951726r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Théologie chrétienne'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11982627p',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Peuple de Dieu'}}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85025502',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Church'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Theology, Ecclesiastical'},
             {'@xml:lang': 'en', '$': 'Ecclesiastical theology'},
             {'@xml:lang': 'en', '$': 'Ecclesiology'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX526899',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Iglesia'},
            'label': {'@xml:lang': 'es', '$': 'Iglesia'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Iglesia cristiana'},
             {'@xml:lang': 'es', '$': 'Iglesia universal'}]},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1410',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'church'},
             {'@xml:lang': 'es', '$': 'iglesia'},
             {'@xml:lang': 'fr', '$': 'église'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A building for religious activities.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10851',
              'prefLabel': [{'@xml:lang': 'en', '$': 'community facility'},
               {'@xml:lang': 'es', '$': 'equipamiento colectivo'},
               {'@xml:lang': 'fr', '$': 'équipement collectif'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Buildings, equipment and services provided for a community.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4101'}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-792',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Église'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-792',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '012 Typologie des bâtiments et équipements divers|Typologie des bâtiments|Bâtiment cultuel|Église'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment cultuel'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Bâtiment religieux'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'church'},
             {'@xml:lang': 'fr', '$': 'église'},
             {'@xml:lang': 'es', '$': 'iglesia'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
              'expandedLabel': [{'@xml:lang': 'en',
                '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship|church'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|lieu de culte|église'}]},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX'}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Edifice cultuel des diverses confessions chrétiennes (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu de culte'},
               {'@xml:lang': 'es', '$': 'lugar de culto'},
               {'@xml:lang': 'en', '$': 'place of worship'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
                'expandedLabel': [{'@xml:lang': 'en',
                  '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship'},
                 {'@xml:lang': 'es',
                  '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|lugar de culto'}]},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|lieu de culte'}}],
              'definition': {'@xml:lang': 'fr',
               '$': "Endroit, généralement un édifice, dans lequel se réunissent les pratiquants d'une religion pour prier et célébrer un culte au cours de cérémonies. (Wikipédia)"}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
             {'@xml:lang': 'es', '$': 'plaza'},
             {'@xml:lang': 'en', '$': 'public place'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Espace plus ou moins étendue (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
               {'@xml:lang': 'fr', '$': 'structure urbaine'},
               {'@xml:lang': 'en', '$': 'urban structure'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
                {'@xml:lang': 'es',
                 '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvdLWUtlP2',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es',
              '$': 'programa de investigación'},
             {'@xml:lang': 'fr', '$': 'programme de recherche'},
             {'@xml:lang': 'en', '$': 'research program'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq|http://ark.frantiq.fr/ark:/26678/pcrtfvdLWUtlP2',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación|programa de investigación'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche|programme de recherche'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
              'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
               {'@xml:lang': 'fr', '$': 'recherche'},
               {'@xml:lang': 'en', '$': 'research'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
                {'@xml:lang': 'fr',
                 '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#AQUITAINE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Aquitaine'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#SUD-OUEST_--_FRA|http://GeoEthno#AQUITAINE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|France|Sud-Ouest -- FRA|Aquitaine'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#SUD-OUEST_--_FRA',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sud-Ouest -- FRA'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#SUD-OUEST_--_FRA',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Sud-Ouest -- FRA'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7059',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'region'},
             {'@xml:lang': 'es', '$': 'regiones'},
             {'@xml:lang': 'fr', '$': 'région'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A designated area or an administrative division of a city, county or larger geographical territory that is formulated according to some biological, political, economic or demographic criteria.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8062',
              'prefLabel': [{'@xml:lang': 'en', '$': 'state'},
               {'@xml:lang': 'es', '$': 'estado'},
               {'@xml:lang': 'fr', '$': 'état'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3031'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtzuzR7iTq5A',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'region'},
             {'@xml:lang': 'fr', '$': 'région'},
             {'@xml:lang': 'es', '$': 'región'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n|http://ark.frantiq.fr/ark:/26678/pcrtzuzR7iTq5A',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|vie administrative|division administrative|région'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'administrative division'},
               {'@xml:lang': 'es', '$': 'división administrativa'},
               {'@xml:lang': 'fr', '$': 'division administrative'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|vie administrative|division administrative'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-538',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collectivité territoriale'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Collectivité locale'},
             {'@xml:lang': 'fr', '$': 'Municipalité'},
             {'@xml:lang': 'fr', '$': 'Commune'},
             {'@xml:lang': 'fr', '$': 'Conseil régional'},
             {'@xml:lang': 'fr', '$': 'Conseil général'},
             {'@xml:lang': 'fr', '$': 'Région'},
             {'@xml:lang': 'fr', '$': 'Département'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-538'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Pouvoirs publics'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'archaeology'},
             {'@xml:lang': 'fr', '$': 'archéologie'},
             {'@xml:lang': 'es', '$': 'arqueología'}],
            'altLabel': {'@xml:lang': 'en', '$': 'archeology'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|acquisition des données|archéologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'acquisition des données'},
               {'@xml:lang': 'en', '$': 'data collecting'},
               {'@xml:lang': 'es', '$': 'recolección de datos'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/530',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'archaeology'},
             {'@xml:lang': 'es', '$': 'arqueología'},
             {'@xml:lang': 'fr', '$': 'archéologie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The scientific study of the material remains of the cultures of historical or prehistorical peoples.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2453'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318444z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Archéologie'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': "Archéologie de l'Antiquité"},
             {'@xml:lang': 'fr', '$': 'Archéologie classique'},
             {'@xml:lang': 'fr', '$': 'Archéologie gréco-romaine'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133191133',
               'prefLabel': {'@xml:lang': 'fr',
                '$': "Sciences auxiliaires de l'histoire"},
               'altLabel': {'@xml:lang': 'fr', '$': 'Sciences historiques'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
               'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
                {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
                {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-648'}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525128',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Arqueología'},
            'label': {'@xml:lang': 'es', '$': 'Arqueología'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85006507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Archaeology'},
            'altLabel': {'@xml:lang': 'en', '$': 'Archeology'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-133',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Archéologie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Fouille archéologique'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-133',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Archéologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment universitaire'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Université'},
             {'@xml:lang': 'fr', '$': 'Faculté'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Campus'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Cité universitaire'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '012 Typologie des bâtiments et équipements divers|Campus'}}}}},
           {'@count': '1',
            '@uri': 'http://pactols.frantiq.fr/#4',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Chronologie'},
             {'@xml:lang': 'es', '$': 'Cronologia'},
             {'@xml:lang': 'en', '$': 'Chronology'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133190652',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chronologie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ères'},
             {'@xml:lang': 'fr', '$': 'Chronographie'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133191133',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "Sciences auxiliaires de l'histoire"},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sciences historiques'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012013',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Chronology'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Lists of events'},
             {'@xml:lang': 'en', '$': 'Biography--Chronology'},
             {'@xml:lang': 'en', '$': 'Chronological lists'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525952',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Cronología'},
            'label': {'@xml:lang': 'es', '$': 'Cronología'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012014',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Chronology'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtymoUAauQMy',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'chronologie'},
             {'@xml:lang': 'en', '$': 'chronology'},
             {'@xml:lang': 'es', '$': 'cronología'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'chronographie'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I|http://ark.frantiq.fr/ark:/26678/pcrtghRi4BOB8p|http://ark.frantiq.fr/ark:/26678/pcrtymoUAauQMy',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|histoire|histoire événementielle|chronologie'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ce terme est limité aux études sur les chronologies (BL). Pour des événements datés employer les termes appropriés dans PACTOLS Chronologie.'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtghRi4BOB8p',
              'prefLabel': [{'@xml:lang': 'en', '$': 'factual history'},
               {'@xml:lang': 'fr', '$': 'histoire événementielle'},
               {'@xml:lang': 'es', '$': 'historia de eventos'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I|http://ark.frantiq.fr/ark:/26678/pcrtghRi4BOB8p',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|histoire-civilisation|histoire|histoire événementielle'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Pour des événements datés voir PACTOLS Chronologie'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVPxBxiVqMy',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'termoluminiscencia'},
             {'@xml:lang': 'en', '$': 'thermoluminescence'},
             {'@xml:lang': 'fr', '$': 'thermoluminescence'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtnFzEJXOj2S|http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb|http://ark.frantiq.fr/ark:/26678/pcrtVPxBxiVqMy',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéométrie|datation|thermoluminescence'},
              {'@xml:lang': 'es',
               '$': 'Tema|metodología|recolección de datos|arqueología|arqueometría|datación|termoluminiscencia'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb',
              'prefLabel': [{'@xml:lang': 'es', '$': 'datación'},
               {'@xml:lang': 'fr', '$': 'datation'},
               {'@xml:lang': 'en', '$': 'dating'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'datation absolue'},
               {'@xml:lang': 'fr', '$': 'méthode de datation'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtnFzEJXOj2S|http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéométrie|datation'},
                {'@xml:lang': 'es',
                 '$': 'Tema|metodología|recolección de datos|arqueología|arqueometría|datación'}]},
              'definition': {'@xml:lang': 'fr',
               '$': 'Action de dater, estimation d’une date par des moyens scientifiques.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11983176r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Thermoluminescence'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Luminescence thermique'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11981130z',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Luminescence'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb122648246',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Conduction thermostimulée'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Courants stimulés thermiquement'},
                {'@xml:lang': 'fr', '$': 'Courants thermostimulés'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX532184',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Termoluminiscencia'},
            'label': {'@xml:lang': 'es', '$': 'Termoluminiscencia'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85134797',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Thermoluminescence'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13325498c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Archéomagnétisme'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Thermorémanence'},
             {'@xml:lang': 'fr', '$': 'Datation par archéomagnétisme'},
             {'@xml:lang': 'fr', '$': 'Magnétométrie en archéologie'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb123201041',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Physique en archéologie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Physique archéologique'},
                {'@xml:lang': 'fr', '$': 'Archéologie et physique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119394195'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb125142826',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Magnétométrie'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85079786',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Magnetometry in archaeology'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Magnetic surveys (Archaeology)'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKAS0FH5vun',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'archéomagnétisme'},
             {'@xml:lang': 'es', '$': 'arqueomagnetismo'},
             {'@xml:lang': 'en', '$': 'paleomagnetic dating'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtnFzEJXOj2S|http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb|http://ark.frantiq.fr/ark:/26678/pcrtKAS0FH5vun',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéométrie|datation|archéomagnétisme'},
              {'@xml:lang': 'es',
               '$': 'Tema|metodología|recolección de datos|arqueología|arqueometría|datación|arqueomagnetismo'}]},
            'definition': {'@xml:lang': 'fr',
             '$': "Détermination de la valeur et de la direction du champ magnétique terrestre dans le passé par l'étude des restes archéologiques (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb',
              'prefLabel': [{'@xml:lang': 'es', '$': 'datación'},
               {'@xml:lang': 'fr', '$': 'datation'},
               {'@xml:lang': 'en', '$': 'dating'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'datation absolue'},
               {'@xml:lang': 'fr', '$': 'méthode de datation'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtnFzEJXOj2S|http://ark.frantiq.fr/ark:/26678/pcrtpSis9hZLUb',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéométrie|datation'},
                {'@xml:lang': 'es',
                 '$': 'Tema|metodología|recolección de datos|arqueología|arqueometría|datación'}]},
              'definition': {'@xml:lang': 'fr',
               '$': 'Action de dater, estimation d’une date par des moyens scientifiques.'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '2',
            '@uri': 'http://sws.geonames.org/6455058/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Bordeaux',
             {'@xml:lang': 'fr', '$': 'Bordeaux'},
             {'@xml:lang': 'en', '$': 'Bordeaux'},
             {'@xml:lang': 'es', '$': 'Bordeaux'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3037350/|http://sws.geonames.org/3015948/|http://sws.geonames.org/6455058/',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|France|Aquitaine|Département de la Gironde|Bordeaux'},
              {'@xml:lang': 'es',
               '$': 'Europa|Francia|Aquitania|Gironda|Bordeaux'},
              {'@xml:lang': 'en',
               '$': 'Europe|France|Aquitaine|Gironde|Bordeaux'}],
             'expandedCountry': [{'@xml:lang': 'fr',
               '$': 'Europe|France|Aquitaine'},
              {'@xml:lang': 'es', '$': 'Europa|Francia|Aquitania'},
              {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}]},
            'latitude': '44.83778',
            'longitude': '-0.57944',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3015948/',
              'prefLabel': ['Gironde',
               {'@xml:lang': 'fr', '$': 'Département de la Gironde'},
               {'@xml:lang': 'fr', '$': 'Gironde'},
               {'@xml:lang': 'en', '$': 'Gironde'},
               {'@xml:lang': 'es', '$': 'Gironda'}],
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Département de la Gironde'},
               {'@xml:lang': 'fr', '$': 'Gironde'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3037350/|http://sws.geonames.org/3015948/',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Aquitania|Gironda'},
                {'@xml:lang': 'fr',
                 '$': 'Europe|France|Aquitaine|Département de la Gironde'},
                {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine|Gironde'}],
               'expandedCountry': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Aquitania'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Aquitaine'},
                {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}]},
              'latitude': '44.91667',
              'longitude': '-0.5'}}},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3037350/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Aquitaine',
             {'@xml:lang': 'en', '$': 'Aquitaine'},
             {'@xml:lang': 'fr', '$': 'Aquitaine'},
             {'@xml:lang': 'es', '$': 'Aquitania'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Aquitaine'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3037350/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Aquitania'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Aquitaine'},
              {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Aquitaine'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Aquitaine'},
              {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}]},
            'latitude': '44.58333',
            'longitude': '1',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3017382/',
              'prefLabel': ['France',
               {'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'es', '$': 'Francia'},
               {'@xml:lang': 'en', '$': 'France'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'fr', '$': 'République Française'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|Francia'},
                {'@xml:lang': 'en', '$': 'Europe|France'}],
               'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|France'},
                {'@xml:lang': 'en', '$': 'Europe|France'}]},
              'latitude': '46',
              'longitude': '2',
              'exactMatch': []}},
            'exactMatch': []}]}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'en',
             '$': 'Archaeology and Prehistory'},
            {'@xml:lang': 'fr', '$': 'Archéologie et Préhistoire'},
            {'@xml:lang': 'es', '$': 'Arqueología y Prehistoria'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Archéologie et Préhistoire"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Archaeology and Prehistory'},
             {'@xml:lang': 'es',
              '$': 'Ciencias sociales|Arqueología y Prehistoria'}]},
           'definition': [{'@xml:lang': 'fr',
             '$': 'L\'archéologie est une discipline scientifique dont l\'objectif est d\'étudier l\'Homme depuis la Préhistoire jusqu’à l\'époque contemporaine à travers sa technique grâce à l\'ensemble des vestiges matériels ayant subsisté et qu’il est parfois nécessaire de mettre au jour (objets, outils, ossements, poteries, armes, pièces de monnaie, bijoux, vêtements, empreintes, traces, peintures, bâtiments, infrastructures, etc.). L\'ensemble des artefacts et des écofacts relevant d\'une période, d\'une civilisation, d\'une région, ou d\'un peuplement donné, s\'appelle culture matérielle. Cette culture matérielle est avant tout un concept basé sur l\'assemblage de vestiges retrouvés dans des espaces et dans des chronologies contingentes, sur un même site, ou dans une même région, par exemple. On peut alors parler, pour désigner un ensemble cohérent, de culture archéologique (comme la culture de Hallstatt, ou la culture jomon, par exemple).  L’archéologue, dans une approche diachronique, acquiert donc l’essentiel de sa documentation à travers des travaux de terrain (prospections, sondages, fouilles, études de collections, analyses du bâti) par "opposition" à l’historien, dont les principales sources sont des textes. Mais l\'archéologue utilise aussi des documents écrits lorsque ceux-ci sont disponibles (inscriptions lapidaires, écrits sur parchemins ou papier, etc.), tout comme il peut faire appel aux sciences de la vie et de la terre ou aux autres sciences humaines (voir ci-dessous). L\'existence ou non de sources textuelles anciennes a permis d\'établir une division chronologique des spécialités archéologiques en trois grandes périodes: l\'archéologie de la Préhistoire (absence de sources textuelles), l\'Archéologie de la Protohistoire (peuples n\'ayant pas de sources textuelles mais étant cités dans ceux de peuples contemporains) et l\'archéologie des Périodes historiques (existence de sources textuelles). Il existe aussi des spécialisations archéologiques faites suivant le type d’artefacts étudiés (céramiques, bâti, etc.), ou à partir de la matière première des artefacts étudiés (pierre, terre crue, verre, os, cuir, etc.).  Le mot « archéologie » vient du grec ancien ἀρχαιολογία1 et est formé à partir des racines ἀρχαίος = ancien et λόγος = mot/parole/discours. Toutefois, c\'est avant tout à l\'étude de l\'objet fabriqué par l\'homme, donc à la technicité, que l\'archéologue consacre son travail.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Archéologie de Wikipédia en français'},
            {'@xml:lang': 'fr',
             '$': "La préhistoire (sans majuscule), appelée aussi archéologie préhistorique, est une discipline qui a pour ambition de reconstituer l'histoire et la vie des humains depuis leur apparition jusqu'à l'apparition de l'écriture, au cours de la période chronologique du même nom (la « Préhistoire », avec majuscule). Elle se fonde donc essentiellement sur l'examen et l'interprétation des témoignages de la présence humaine tels que les vestiges archéologiques découverts lors de fouilles ou les œuvres de l'art pariétal.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Préhistoire (discipline) de Wikipédia en français"}],
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie293',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
               {'@xml:lang': 'fr', '$': 'Archéologie'},
               {'@xml:lang': 'es', '$': 'Arqueología'}],
              'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
                'expandedLabel': [{'@xml:lang': 'fr',
                  '$': 'Sociétés|Histoire|Archéologie'},
                 {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
                 {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
               {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]}},
            {'@uri': 'http://dbpedia.org/resource/Archaeology'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie293',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
            {'@xml:lang': 'fr', '$': 'Archéologie'},
            {'@xml:lang': 'es', '$': 'Arqueología'}],
           'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sociétés|Histoire|Archéologie'},
              {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
              {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
            {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]}}]}}},
     {'@uri': '10670/1.be67x2',
      'isidore': {'title': 'Polo tous azimuts',
       'url': 'http://id.erudit.org/iderudit/95449ac',
       'enrichedCreators': {'creator': {'@origin': 'Guy, Priscilla',
         '@normalizedAuthor': 'Guy, Priscilla',
         '@idAuthor': 'guy_priscilla',
         'firstname': 'Priscilla',
         'lastname': 'Guy',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2021',
        '@startDate': '2021-01-01',
        '@endDate': '2021-12-31',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28028273',
          '$': 'http://id.erudit.org/iderudit/95449ac'},
         {'@crawl': 'true',
          '@rdfVisible': 'false',
          '@thumbnail': 'false',
          '$': 'http://oai.erudit.org/oai-interop/?verb=GetRecord&identifier=oai:erudit.org:95449ac&metadataPrefix=ea'}]},
       'relations': {'relation': 'Magazine Gaspésie ; vol. 58 no. 1 (2021)'},
       'types': {'type': 'text'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Erudit',
         '@handle': '10670/3.asd832',
         '@collectionUuid': '63f0dbf0-92ca-4435-b4a5-cd648f23bfbf',
         '$': 'Erudit'},
        'collectionOrganization': {'@organizationUrl': 'http://www.erudit.org',
         '$': 'Consortium Erudit'},
        'collectionURLMainSite': {'@thumbnaiId': '1743131',
         '$': 'http://www.erudit.org'},
        'collectionInformations': {'collectionDescription': "Erudit est une société sans but lucratif et un consortium interuniversitaire composé de l'Université de Montréal, de l'Université Laval et de l'Université du Québec à Montréal qui œuvre dans le domaine de l’édition numérique depuis 1998. Erudit propose un modèle innovateur de promotion et de diffusion de la recherche et de la création. Erudit constitue le « pôle Québec » du projet Synergies.",
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'doi:(10.7202/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.asd832|10670/2.7x61u6',
         '$': 'Erudit#Magazine Gaspésie'},
        'sourceCode': {'@handle': '10670/2.7x61u6',
         '$': '5398f03e-6c82-4e49-939c-fce103d74b0f'},
        'sourceName': {'@shortLabel': 'Magazine Gaspésie',
         '$': 'Magazine Gaspésie'},
        'sourceISSN': ['https://portal.issn.org/resource/ISSN/1207-5280',
         'https://portal.issn.org/resource/ISSN/2561-410X'],
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4080381',
         '$': 'http://www.erudit.org/culture/mgaspesie0787'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://www.erudit.org',
         '$': 'Magazine Gaspésie'},
        'sourceOrganization': {'label': 'Consortium Érudit',
         'URI': 'http://www.erudit.org',
         'isoCountry': 'CA',
         'contactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://oai.erudit.org/oai/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'metadataPrefixForResource': 'ea'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#text',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
            {'@xml:lang': 'en', '$': 'Textual materials'},
            {'@xml:lang': 'es', '$': 'Textos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11940205z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Polo'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16663533b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sports équestres'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937350j',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Jeux de balle et de ballon'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Ballon, Jeux de'},
               {'@xml:lang': 'fr', '$': 'Jeux de ballon'},
               {'@xml:lang': 'fr', '$': 'Balle et ballon (jeux)'},
               {'@xml:lang': 'fr', '$': 'Balle, Jeux de'},
               {'@xml:lang': 'fr', '$': 'Jeux de balle'},
               {'@xml:lang': 'fr', '$': 'Sports de ballon'},
               {'@xml:lang': 'fr', '$': 'Sports de balle'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85104545',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Polo'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.socio',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
            {'@xml:lang': 'en', '$': 'Sociology'},
            {'@xml:lang': 'es', '$': 'Sociología'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.socio',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Sociologie"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Sociology'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Sociología'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie201',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
               {'@xml:lang': 'en', '$': 'Sociology'},
               {'@xml:lang': 'es', '$': 'Sociología'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sociétés|Sociologie'},
                {'@xml:lang': 'es', '$': 'Sociedad|Sociología'},
                {'@xml:lang': 'en', '$': 'Society|Sociology'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Sociology'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie201',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sociologie'},
            {'@xml:lang': 'en', '$': 'Sociology'},
            {'@xml:lang': 'es', '$': 'Sociología'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie201',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Sociologie'},
             {'@xml:lang': 'es', '$': 'Sociedad|Sociología'},
             {'@xml:lang': 'en', '$': 'Society|Sociology'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'Tous droits réservés © Musée de la Gaspésie, 2021'}},
     {'@uri': 'ark:/12148/btv1b10468166x',
      'isidore': {'title': ["[L'aigle de Jupiter apporte à Psyché de l'eau du Styx] : [estampe] / LD [Léon Davent] [monogramme] ; IVLIVS // INVEN* // TOR [d'après Jules Romain] [signature]",
        "[Jupiter's eagle bringing the water of the Styx to Psyche]"],
       'url': 'http://gallica.bnf.fr/ark:/12148/btv1b10468166x',
       'enrichedCreators': {'creator': [{'@origin': 'Davent, Léon. Graveur',
          '@normalizedAuthor': 'Davent, Léon. Graveur',
          '@idAuthor': 'davent_leon_graveur',
          'firstname': 'Léon. Graveur',
          'lastname': 'Davent',
          'title': [],
          'sameAs': []},
         {'@origin': 'Romain, Jules (1499?-1546). Dessinateur du modèle',
          '@normalizedAuthor': 'Romain, Jules (1499?-1546). Dessinateur du modèle',
          '@idAuthor': 'romain_jules_dessinateur_du_modele',
          'firstname': 'Jules (1499?-1546). Dessinateur du modèle',
          'lastname': 'Romain',
          'title': [],
          'sameAs': []}]},
       'date': {'@origin': '15..',
        '@startDate': '0015-01-01',
        '@endDate': '0015-12-31',
        'normalizedDate': '0015-01-01'},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'false',
         '@thumbnailId': '28014728',
         '$': 'http://gallica.bnf.fr/ark:/12148/btv1b10468166x'}},
       'subjects': {'subject': [{'@xml:lang': 'fre',
          '$': 'Psyché (mythologie grecque)'},
         {'@xml:lang': 'fre', '$': 'École de Fontainebleau (art)'},
         {'@xml:lang': 'fre', '$': 'Scènes mythologiques -- 16e siècle'}]},
       'relations': {'relation': ['Notice de recueil : http://catalogue.bnf.fr/ark:/12148/cb40347039j',
         "Appartient à : [Recueil factice de gravures de l'école de Fontainebleau composé par Hippolyte Destailleur, et donné au Cabinet des Estampes par Félix Herbet]",
         'Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb46748956c']},
       'abstract': ['Référence bibliographique : Jenkins, L.D. 2',
        'Référence bibliographique : Zerner, L.D. 2',
        'Référence bibliographique : Herbet - I, 82',
        'Référence bibliographique : IFF 16, DAVENT (Léon), 70',
        'Référence bibliographique : Bartsch, DAVENT (L.), 46'],
       'types': {'type': [{'@xml:lang': 'fre', '$': 'image fixe'},
         {'@xml:lang': 'eng', '$': 'image'},
         {'@xml:lang': 'eng', '$': 'still image'},
         {'@xml:lang': 'fre', '$': 'estampe'},
         {'@xml:lang': 'eng', '$': 'engraving'}]},
       'source_info': {'collectionLabel': {'@shortLabel': 'Gallica',
         '@handle': '10670/3.xut8e9',
         '@collectionUuid': '5b7f0cc5-ebe6-4102-b0af-15ed86eb1ec4',
         '$': 'Gallica'},
        'collectionOrganization': {'@organizationUrl': 'http://www.bnf.fr',
         '$': 'Bibliothèque nationale de France'},
        'collectionURLMainSite': {'@thumbnaiId': '630791',
         '$': 'http://gallica.bnf.fr'},
        'collectionInformations': {'collectionDescription': 'Gallica est la Bibliothèque numérique de la Bibliothèque nationale de France. Elle offre un accès à tous types de supports : imprimés (monographies, périodiques et presse) en mode image et en mode texte, manuscrits, documents sonores, documents iconographiques, cartes et plans.',
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'gallica@bnf.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'http://gallica.bnf.fr/(ark:/12148/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.xut8e9|10670/2.7mgthe',
         '$': 'Gallica#Estampes'},
        'sourceCode': {'@handle': '10670/2.7mgthe',
         '$': 'b95b96c6-591e-eaa1-8d53-7b603c9030ba'},
        'sourceName': {'@shortLabel': 'Estampes', '$': 'Estampes de Gallica'},
        'sourceDataType': 'Photos et images',
        'sourceWebSiteURL': {'@thumbnaiId': '630894',
         '$': 'http://gallica.bnf.fr/Search?f_typedoc=partitions'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://bibnum.bnf.fr/oai/index.html',
         '$': 'Cet ensemble donne accès aux estampes disponibles dans Gallica.'},
        'sourceOrganization': {'label': 'Bibliothèque nationale de France',
         'URI': 'http://www.bnf.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://oai.bnf.fr/oai2/OAIHandler',
         'crawlingFrequency': '14400',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#image',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Photos et images'},
            {'@xml:lang': 'en', '$': 'Images and photos'},
            {'@xml:lang': 'es', '$': 'Fotografías e imágenes'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG'}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttto0QeS1er',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'águila'},
            {'@xml:lang': 'fr', '$': 'aigle'},
            {'@xml:lang': 'en', '$': 'eagle'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtT2H2KjqBcU|http://ark.frantiq.fr/ark:/26678/pcrtqbh6Y1DsXN|http://ark.frantiq.fr/ark:/26678/pcrtJzuAzNR9vn|http://ark.frantiq.fr/ark:/26678/pcrttto0QeS1er',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|fauna|bird|bird of prey|eagle'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Oiseau de proie diurne (famille des Aquilidés), de très grande taille, d'une envergure très étendue, au bec crochu du bout, aux tarses emplumés aux serres puissantes et doué d'une vue perçante. (TLFi)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJzuAzNR9vn',
             'prefLabel': [{'@xml:lang': 'en', '$': 'bird of prey'},
              {'@xml:lang': 'fr', '$': 'rapace'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtT2H2KjqBcU|http://ark.frantiq.fr/ark:/26678/pcrtqbh6Y1DsXN|http://ark.frantiq.fr/ark:/26678/pcrtJzuAzNR9vn'},
             'definition': {'@xml:lang': 'fr',
              '$': 'terme désignant en français des oiseaux carnivores'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133184548',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Âme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Psukhê'},
            {'@xml:lang': 'fr', '$': 'Souffle'},
            {'@xml:lang': 'fr', '$': 'Pneûma'},
            {'@xml:lang': 'fr', '$': 'Âme (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Psuché'},
            {'@xml:lang': 'fr', '$': 'Psyché'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Homme, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85125350',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Soul'},
           'altLabel': {'@xml:lang': 'en', '$': 'Pneuma'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX528333',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Alma'},
           'label': {'@xml:lang': 'es', '$': 'Alma'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb15608357m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Psychisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Faits psychiques'},
            {'@xml:lang': 'fr', '$': 'Vie mentale'},
            {'@xml:lang': 'fr', '$': 'Faits de la conscience'},
            {'@xml:lang': 'fr', '$': 'Vie psychique'},
            {'@xml:lang': 'fr', '$': 'Caractères psychiques'},
            {'@xml:lang': 'fr', '$': 'Organisation mentale'},
            {'@xml:lang': 'fr', '$': 'Psyché'},
            {'@xml:lang': 'fr', '$': 'Activité psychique'},
            {'@xml:lang': 'fr', '$': 'Phénomènes psychiques'},
            {'@xml:lang': 'fr', '$': 'Structure mentale'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11931913j',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Eau'},
           'altLabel': {'@xml:lang': 'fr', '$': 'RN 7732-18-5'},
           'exactMatch': [{'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-695'}},
            {'@uri': 'http://aims.fao.org/aos/agrovoc/c_8309'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85145447',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Water'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-744',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Eau'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-744'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Environnement'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '030 Paysage - environnement|Environnement'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJYawSTtElG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'agua'},
            {'@xml:lang': 'fr', '$': 'eau'},
            {'@xml:lang': 'en', '$': 'water'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B|http://ark.frantiq.fr/ark:/26678/pcrtJYawSTtElG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|public works|hydraulics|water'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hidráulica'},
              {'@xml:lang': 'en', '$': 'hydraulics'},
              {'@xml:lang': 'fr', '$': 'hydraulique'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'installation hydraulique'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|hydraulique"}},
             'definition': {'@xml:lang': 'fr',
              '$': "Science et technique qui traitent des problèmes posés par l'utilisation de l'eau (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://GeoEthno#STYX',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Styx'},
            {'@xml:lang': 'en', '$': 'Styx'}],
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ENFERS',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Enfers'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Royaume d’Hadès'},
              {'@xml:lang': 'fr', '$': 'Hadès'},
              {'@xml:lang': 'en', '$': 'Greek underworld'}]}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1022',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gravure'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sérigraphie'},
            {'@xml:lang': 'fr', '$': 'Estampe'},
            {'@xml:lang': 'fr', '$': 'Lithographie'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1022'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119389137',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Estampe'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Estampes'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931640m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Design graphique'},
               {'@xml:lang': 'fr', '$': 'Graphisme'},
               {'@xml:lang': 'fr', '$': 'Création graphique'},
               {'@xml:lang': 'fr', '$': 'Conception graphique'},
               {'@xml:lang': 'fr', '$': 'Art graphique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977261r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Non-livres'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85106831',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prints'},
           'altLabel': {'@xml:lang': 'en', '$': 'Fine prints'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQRJAu1ZqJK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'estampe'},
            {'@xml:lang': 'en', '$': 'etching'},
            {'@xml:lang': 'es', '$': 'impresiones'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtkOgxvd4Ijy|http://ark.frantiq.fr/ark:/26678/pcrtQRJAu1ZqJK'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Image sur papier ou vélin, obtenue par l’impression d’une plaque de bois, ou de métal, gravée en taille douce, ou par lithographie et enduite d’encre. (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkOgxvd4Ijy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'artes decorativas'},
              {'@xml:lang': 'fr', '$': 'arts décoratifs'},
              {'@xml:lang': 'en', '$': 'decorative arts'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'art décoratif'},
              {'@xml:lang': 'fr', '$': 'décor'},
              {'@xml:lang': 'fr', '$': 'décoration'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtkOgxvd4Ijy'},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des disciplines visant à la production d'éléments propres à décorer, d'objets, d'usage pratique ou non, ayant une valeur esthétique (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfhp4JWbDmF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'monogram'},
            {'@xml:lang': 'es', '$': 'monograma'},
            {'@xml:lang': 'fr', '$': 'monogramme'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtJrInD7k8G1|http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e|http://ark.frantiq.fr/ark:/26678/pcrtfhp4JWbDmF'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e',
             'prefLabel': [{'@xml:lang': 'es', '$': 'inscripción contenido'},
              {'@xml:lang': 'en', '$': 'inscription content'},
              {'@xml:lang': 'fr', '$': 'inscription contenu'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtJrInD7k8G1|http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|épigraphie|inscription contenu'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZTmusVUU24',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Antigüedad romana'},
            {'@xml:lang': 'fr', '$': 'Antiquité romaine'},
            {'@xml:lang': 'en', '$': 'Roman Antiquity'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'époque romaine'},
            {'@xml:lang': 'fr', '$': 'ép romaine'},
            {'@xml:lang': 'fr', '$': 'Romain'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#4|http://ark.frantiq.fr/ark:/26678/pcrtxT02uJOogm|http://ark.frantiq.fr/ark:/26678/pcrtof7EHNsS2e|http://ark.frantiq.fr/ark:/26678/pcrtZTmusVUU24',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Chronologie|Antiquité|Antiquité gréco-romaine|Antiquité romaine'},
             {'@xml:lang': 'es',
              '$': 'Cronologia|Antigüedad|Antigüedad greco-romana|Antigüedad romana'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtof7EHNsS2e',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Antigüedad greco-romana'},
              {'@xml:lang': 'fr', '$': 'Antiquité gréco-romaine'},
              {'@xml:lang': 'en', '$': 'Greco-Roman Antiquity'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'Antiquité classique'},
              {'@xml:lang': 'fr', '$': 'ép gréco-romaine'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#4|http://ark.frantiq.fr/ark:/26678/pcrtxT02uJOogm|http://ark.frantiq.fr/ark:/26678/pcrtof7EHNsS2e',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': 'Chronologie|Antiquité|Antiquité gréco-romaine'},
               {'@xml:lang': 'es',
                '$': 'Cronologia|Antigüedad|Antigüedad greco-romana'}]}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVMjOmd0xaG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'firma'},
            {'@xml:lang': 'en', '$': 'signature'},
            {'@xml:lang': 'fr', '$': 'signature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtJrInD7k8G1|http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e|http://ark.frantiq.fr/ark:/26678/pcrtVMjOmd0xaG'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e',
             'prefLabel': [{'@xml:lang': 'es', '$': 'inscripción contenido'},
              {'@xml:lang': 'en', '$': 'inscription content'},
              {'@xml:lang': 'fr', '$': 'inscription contenu'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtJrInD7k8G1|http://ark.frantiq.fr/ark:/26678/pcrt2hsBAwey2e',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|épigraphie|inscription contenu'}}}}},
          {'@count': '5',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1747',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Référence'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1747',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Référence'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13549188z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Insomnie fatale familiale'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'IFF'},
            {'@xml:lang': 'fr',
             '$': 'Insomnie familiale à évolution maligne'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119442366',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Maladies héréditaires'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Maladies génotypiques'},
               {'@xml:lang': 'fr', '$': 'Génopathies'},
               {'@xml:lang': 'fr', '$': 'Maladies génétiques'},
               {'@xml:lang': 'fr', '$': "Maladies d'origine génétique"}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119320824',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Insomnie'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sommeil, Perte du'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12350954d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Infections à prions'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Infections à virus lents non conventionnels'},
               {'@xml:lang': 'fr',
                '$': 'Maladies à virus lent non conventionnel'},
               {'@xml:lang': 'fr',
                '$': 'Infections à virus lent non conventionnel'},
               {'@xml:lang': 'fr',
                '$': 'Maladies à virus lents non conventionnels'},
               {'@xml:lang': 'fr', '$': 'Maladies à prions'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13555112z'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb135551108',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Carence en cuivre'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Déficience en cuivre'},
               {'@xml:lang': 'fr', '$': 'Maladies par carence en cuivre'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh93006259',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fatal familial insomnia'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb121171850',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Psyché (mythologie grecque)'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939424r',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Mythologie grecque'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb126531909',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'École de Fontainebleau (art)'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'École de Fontainebleau'},
            {'@xml:lang': 'fr', '$': 'Fontainebleau, École de (art)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119367883',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Maniérisme (art)'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Peinture maniériste'},
              {'@xml:lang': 'fr', '$': 'Sculpture maniériste'},
              {'@xml:lang': 'fr', '$': 'Art maniériste'},
              {'@xml:lang': 'fr', '$': 'Dessin maniériste'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX558343',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escuela de Fontainebleau'},
           'label': {'@xml:lang': 'es', '$': 'Escuela de Fontainebleau'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85050179',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Fontainebleau school of art'},
           'altLabel': [{'@xml:lang': 'en', '$': 'School of Fontainebleau'},
            {'@xml:lang': 'en', '$': 'Ecole de Fontainebleau'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb125248764',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Scènes'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Vie quotidienne, Scènes de la'},
            {'@xml:lang': 'fr', '$': 'Scènes de la vie quotidienne'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11976033q',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': '16e siècle'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Seizième siècle (subdivision)'},
            {'@xml:lang': 'fr', '$': 'XVIe siècle (subdivision)'},
            {'@xml:lang': 'fr', '$': '16e siècle (subdivision)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11993774x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Renaissance'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Renaissance (subdivision chronologique)'},
               {'@xml:lang': 'fr',
                '$': '+* 1400......- 1599......+:1400-1599: (Renaissance)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119768499',
              'prefLabel': {'@xml:lang': 'fr', '$': '1500-1800'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': '+* 1483......- 1789......+:Ancien régime:'},
               {'@xml:lang': 'fr', '$': '1500-1800 (subdivision)'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006122',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'History--16th century'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012470',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': '16th century'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119789194',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Seizième siècle'},
           'altLabel': [{'@xml:lang': 'fr', '$': '16e siècle'},
            {'@xml:lang': 'fr', '$': 'XVIe siècle'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb135365017',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Deuxième millénaire'},
              'altLabel': {'@xml:lang': 'fr', '$': '2e millénaire'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119404792',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Réforme'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Réforme protestante'},
               {'@xml:lang': 'fr', '$': 'Réformation'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T4-28'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85123070',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Sixteenth century'},
           'altLabel': {'@xml:lang': 'en', '$': '16th century'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-4',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': '16e siècle'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1759|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-4',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '090 Chronologie|Renaissance|16e siècle'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1759',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Renaissance'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1759',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '090 Chronologie|Renaissance'}}}}}]}},
       'dc:language': 'Sans contenu linguistique',
       'dc:rights': [{'@xml:lang': 'fre', '$': 'domaine public'},
        {'@xml:lang': 'eng', '$': 'public domain'}]}},
     {'@uri': '10670/1.fx58k0',
      'isidore': {'title': {'@xml:lang': 'en',
        '$': 'Joint Use of e.Photoexpression© and Photonarration: What Methodological Added Value?'},
       'url': 'https://hal.archives-ouvertes.fr/hal-03349412',
       'enrichedCreators': {'creator': [{'@origin': 'Deyra, Maéliane',
          '@normalizedAuthor': 'Deyra, Maéliane',
          '@idAuthor': 'deyra_maeliane',
          'firstname': 'Maéliane',
          'lastname': 'Deyra',
          'title': [],
          'sameAs': []},
         {'@origin': 'Gay, Chloé',
          '@normalizedAuthor': 'Gay, Chloé',
          '@idAuthor': 'gay_chloe',
          'firstname': 'Chloé',
          'lastname': 'Gay',
          'title': [],
          'sameAs': {'idref': '235498548'}},
         {'@origin': 'Laurent, Gerbaud',
          '@normalizedAuthor': 'Laurent, Gerbaud',
          '@idAuthor': 'laurent_gerbaud',
          'firstname': 'Gerbaud',
          'lastname': 'Laurent',
          'title': [],
          'sameAs': []},
         {'@origin': 'Berland, Pauline',
          '@normalizedAuthor': 'Berland, Pauline',
          '@idAuthor': 'berland_pauline',
          'firstname': 'Pauline',
          'lastname': 'Berland',
          'title': [],
          'sameAs': []},
         {'@origin': 'Pizon, Frank',
          '@normalizedAuthor': 'Pizon, Frank',
          '@idAuthor': 'pizon_frank',
          'firstname': 'Frank',
          'lastname': 'Pizon',
          'title': [],
          'sameAs': {'orcid': '0000-0003-0529-3167',
           'idhal': 'frank-pizon'}}]},
       'date': {'@origin': '2021-09-13',
        '@startDate': '2021-09-13',
        '@endDate': '2021-09-13',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-09-13',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://hal.archives-ouvertes.fr/hal-03349412'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '28088656',
          '$': 'https://hal.archives-ouvertes.fr/hal-03349412/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://hal.archives-ouvertes.fr/hal-03349412/file/Deyra%20et%20al%202021%20Joint%20Use%20of%20e.Photoexpression%20and%20Photonarration%20What%20Methodological%20Added%20Value.pdf'}],
        'similar': ['hal-03349412', 'DOI: 10.3389/fpubh.2021.691587']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'complementarity'},
         {'@xml:lang': 'en', '$': 'methodological added value'},
         {'@xml:lang': 'en', '$': 'e.Photoexpression ©'},
         {'@xml:lang': 'en', '$': 'photonarration'},
         {'@xml:lang': 'en', '$': 'cancer and health perceptions'},
         {'@xml:lang': 'en', '$': 'children'},
         '[SHS]Humanities and Social Sciences']},
       'relations': {'relation': 'info:eu-repo/semantics/altIdentifier/doi/10.3389/fpubh.2021.691587'},
       'abstract': ['International audience',
        {'@xml:lang': 'en',
         '$': 'Objectives: The objective is to describe the informative value and the added value of a qualitative multiphase methodology in order to investigate the conceptions of children aged 6-11 on the determinants of health and cancer. Method: This article provides an analysis of the "Determ\'Ados" research protocol, a qualitative study in human and social sciences, carried out with children aged 6-11 years. This protocol, organized in three phases, addresses in the first global health with the tool "e.Photoexpression © ," in the second questions and knowledge around the topic of cancer with the tool "QC" and in the third cancer again with the "Photonarration" tool. The methodology of this innovative, open and exploratory research protocol aims to collect data relating to the experiences, declared practices and knowledge specific to each child who express themselves through photography and storytelling. Results: The analysis of the Déterm\'Ados methodology reveals a density and richness of results among all the children interviewed, even among the youngest: 1,498 productions (4 productions per child) were made by 381 children resulting in a wealth of data available thanks to the multiphase protocol. This massive qualitative survey brings complementarity as the collection phases progress and guarantees continuity in the discourse of each child which allows them to deepen their conceptions and to know how they create or not meaning between the determinants of health and cancer. Perspectives: The density and quality of the proposals collected from the children reinforce the validity and rigor of the Determ\'Ados methodology. Multiphase is the innovative aspect of the tools used. The e.Photoexpression © and the Photonarration are complementary and inseparable to bring out concepts on health and cancer. These research results, transferable into interventions and current practices, present prevention officers to act more effectively, closer to the conceptions and needs of children.'}],
       'types': {'type': ['info:eu-repo/semantics/article',
         'Journal articles']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.q0dtzi',
         '$': 'Archives ouvertes#HAL-SHS'},
        'sourceCode': {'@handle': '10670/2.q0dtzi',
         '$': 'd8793909-9989-4ab0-9a90-df96dfa247ba'},
        'sourceName': {'@shortLabel': 'HAL-SHS',
         '$': "Hyper Article en Ligne - Sciences de l'Homme et de la Société"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://halshs.archives-ouvertes.fr',
         '$': "L'archive ouverte HAL-SHS (Hyper Article en Ligne - Sciences de l'Homme et de la Société) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche dans les disciplines des SHS."},
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/hal/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/eng',
           'prefLabel': [{'@xml:lang': 'en', '$': 'English'},
            {'@xml:lang': 'fr', '$': 'Anglais'},
            {'@xml:lang': 'es', '$': 'Idioma inglés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006428',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Utilization'},
           'altLabel': {'@xml:lang': 'en', '$': 'Use of'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119758012'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85141931',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Value added'},
           'altLabel': {'@xml:lang': 'en', '$': 'Added value'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85080664',
             'prefLabel': {'@xml:lang': 'en', '$': 'Manufacturing processes'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Industrial processing'},
              {'@xml:lang': 'en', '$': 'Processes, Manufacturing'},
              {'@xml:lang': 'en', '$': 'Production processes'},
              {'@xml:lang': 'en', '$': 'Processing, Industrial'},
              {'@xml:lang': 'en', '$': 'Manufacture'},
              {'@xml:lang': 'en',
               '$': 'Process engineering (Manufactures)'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119625557'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85141930',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Value'},
           'altLabel': {'@xml:lang': 'en', '$': 'Standard of value'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85046224',
              'prefLabel': {'@xml:lang': 'en', '$': 'Exchange'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85040850',
              'prefLabel': {'@xml:lang': 'en', '$': 'Economics'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Economic theory'},
               {'@xml:lang': 'en', '$': 'Political economy'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85145828',
              'prefLabel': {'@xml:lang': 'en', '$': 'Wealth'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Fortunes'},
               {'@xml:lang': 'en', '$': 'Riches'},
               {'@xml:lang': 'en', '$': 'Affluence'},
               {'@xml:lang': 'en', '$': 'Distribution of wealth'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85033192',
              'prefLabel': {'@xml:lang': 'en', '$': 'Cost'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Expenses'},
               {'@xml:lang': 'en', '$': 'Costs (Economics)'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119512162'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXyLVOLoD5w',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'valeur'},
            {'@xml:lang': 'es', '$': 'valor'},
            {'@xml:lang': 'en', '$': 'value'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'valeur (notion)'},
            {'@xml:lang': 'fr', '$': 'valeur-virtus'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtXyLVOLoD5w'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001902',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Methodology'}},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'méthodologie'},
            {'@xml:lang': 'en', '$': 'methodology'},
            {'@xml:lang': 'es', '$': 'metodología'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH'},
           'definition': {'@xml:lang': 'fr',
            '$': "Toutes les méthodes d'approches de l'Antiquité ainsi que l'organisation de la recherche (BL)"}},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
           'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
            {'@xml:lang': 'es', '$': 'metodología'},
            {'@xml:lang': 'fr', '$': 'méthodologie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The system of methods and principles used in a particular discipline.'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85084414',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Methodology'},
           'altLabel': {'@xml:lang': 'en', '$': 'Philosophy--Methodology'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11932499z'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb131942840'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/5079'},
            {'@uri': 'http://aims.fao.org/aos/agrovoc/c_12522'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85095351',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Order'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/11494',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'order'},
            {'@xml:lang': 'es', '$': 'orden'},
            {'@xml:lang': 'fr', '$': 'ordre'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) A direction or command of a court. In this sense it is often used synonymously with judgment.  2) The document bearing the seal of the court recording its judgment in a case.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
             'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
              {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
              {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}}},
          {'@count': '7',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004941',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Children'}},
          {'@count': '7',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85023418',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Children'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Childhood'},
            {'@xml:lang': 'en', '$': 'Youngsters'},
            {'@xml:lang': 'en', '$': 'Pedology (Child study)'},
            {'@xml:lang': 'en', '$': 'Kids (Children)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85076820',
              'prefLabel': {'@xml:lang': 'en', '$': 'Life cycle, Human'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Life stages, Human'},
               {'@xml:lang': 'en', '$': 'Lifecycle, Human'},
               {'@xml:lang': 'en', '$': 'Human life cycle'}]}},
            {'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96005443'},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85047009',
              'prefLabel': {'@xml:lang': 'en', '$': 'Families'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Family'},
               {'@xml:lang': 'en', '$': 'Family structure'},
               {'@xml:lang': 'en', '$': 'Families--Social aspects'},
               {'@xml:lang': 'en', '$': 'Families--Social conditions'},
               {'@xml:lang': 'en', '$': 'Family life'},
               {'@xml:lang': 'en', '$': 'Structure, Family'},
               {'@xml:lang': 'en', '$': 'Family relationships'},
               {'@xml:lang': 'en', '$': 'Relationships, Family'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85002083',
              'prefLabel': {'@xml:lang': 'en', '$': 'Age groups'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Peer groups'},
               {'@xml:lang': 'en', '$': 'Groups, Age'},
               {'@xml:lang': 'en', '$': 'Social generations'}]}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119319811'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/797'},
            {'@uri': 'http://content.glin.gov/subjectTerm/200'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85002087',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Older people'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Older persons'},
            {'@xml:lang': 'en', '$': 'Older adults'},
            {'@xml:lang': 'en', '$': 'Seniors (Older people)'},
            {'@xml:lang': 'en', '$': 'Elderly people'},
            {'@xml:lang': 'en', '$': 'Old people'},
            {'@xml:lang': 'en', '$': 'Senior citizens'},
            {'@xml:lang': 'en', '$': 'Aging people'},
            {'@xml:lang': 'en', '$': 'Aged'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85100163',
              'prefLabel': {'@xml:lang': 'en', '$': 'Persons'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Individuals (Persons)'},
               {'@xml:lang': 'en', '$': 'People'}]}},
            {'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96007814'},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85002083',
              'prefLabel': {'@xml:lang': 'en', '$': 'Age groups'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Peer groups'},
               {'@xml:lang': 'en', '$': 'Groups, Age'},
               {'@xml:lang': 'en', '$': 'Social generations'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119329500'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85037299',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Determinants'},
           'altLabel': {'@xml:lang': 'en', '$': 'Resultants'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85003425',
              'prefLabel': {'@xml:lang': 'en', '$': 'Algebra'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2002007922',
              'prefLabel': {'@xml:lang': 'en', '$': 'Mathematics'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85082139',
              'prefLabel': {'@xml:lang': 'en', '$': 'Mathematics'},
              'altLabel': {'@xml:lang': 'en', '$': 'Math'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11975737s'}},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3865',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'health'},
            {'@xml:lang': 'es', '$': 'salud'},
            {'@xml:lang': 'fr', '$': 'santé'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A state of dynamic equilibrium between an organism and its environment in which all functions of mind and body are normal.'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3511'},
            {'@uri': 'http://eurovoc.europa.eu/2479'}]},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'health'},
            {'@xml:lang': 'es', '$': 'salud'},
            {'@xml:lang': 'fr', '$': 'santé'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006004',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Health'},
           'altLabel': {'@xml:lang': 'en', '$': 'Biography--Health'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85059518',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Health'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Wellness'},
            {'@xml:lang': 'en', '$': 'Personal health'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85101679',
              'prefLabel': {'@xml:lang': 'en', '$': 'Physiology'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Animals--Physiology'},
               {'@xml:lang': 'en', '$': 'Animal physiology'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005103',
              'prefLabel': {'@xml:lang': 'en', '$': 'Physiology'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85083064',
              'prefLabel': {'@xml:lang': 'en', '$': 'Medicine'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Clinical sciences'},
               {'@xml:lang': 'en', '$': 'Medical profession'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00006614',
              'prefLabel': {'@xml:lang': 'en', '$': 'Medicine'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11945860z'}},
          {'@count': '6',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85019492',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Cancer'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Carcinoma'},
            {'@xml:lang': 'en', '$': 'Cancers'},
            {'@xml:lang': 'en', '$': 'Malignancy (Cancer)'},
            {'@xml:lang': 'en', '$': 'Malignant tumors'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85138553',
              'prefLabel': {'@xml:lang': 'en', '$': 'Tumors'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Tumours'},
               {'@xml:lang': 'en', '$': 'Neoplasms'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2001009206',
              'prefLabel': {'@xml:lang': 'en', '$': 'Tumors'}}}],
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/704'},
            {'@uri': 'http://content.glin.gov/subjectTerm/1139'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11931105q'}]},
          {'@count': '6',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1130',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'cancer'},
            {'@xml:lang': 'es', '$': 'cáncer'},
            {'@xml:lang': 'fr', '$': 'cancer'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Any malignant cellular tumour including carcinoma and sarcoma. It encompasses a group of neoplastic diseases in which there is a transformation of normal body cells into malignant ones, probably involving some change in the genetic material of the cells, possibly as a result of faulty repair of damage to the cell caused by carcinogenic agents or ionizing radiation.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4046',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human disease'},
              {'@xml:lang': 'es', '$': 'enfermedad humana'},
              {'@xml:lang': 'fr', '$': 'maladie humaine'}],
             'definition': {'@xml:lang': 'en',
              '$': 'An interruption, cessation or disorder of human bodily functions, systems or organs resulting from genetic or developmental errors, infection, nutritional deficiency, toxicity, illness or unfavorable environmental factors.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/5104'}},
          {'@count': '6',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004861',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Cancer'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99002330',
              'prefLabel': {'@xml:lang': 'en', '$': 'Diseases'},
              'altLabel': {'@xml:lang': 'en', '$': 'Diseases and hygiene'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85038411',
              'prefLabel': {'@xml:lang': 'en', '$': 'Diseases'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Sickness'},
               {'@xml:lang': 'en', '$': 'Human beings--Diseases'},
               {'@xml:lang': 'en', '$': 'Morbidity'},
               {'@xml:lang': 'en', '$': 'Illness'},
               {'@xml:lang': 'en', '$': 'Sicknesses'},
               {'@xml:lang': 'en', '$': 'Illnesses'}]}}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13088',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'method'},
            {'@xml:lang': 'es', '$': 'método'},
            {'@xml:lang': 'fr', '$': 'méthode'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A way of proceeding or doing something, especially a systematic or regular one.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
             'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'},
              {'@xml:lang': 'fr', '$': 'méthodologie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The system of methods and principles used in a particular discipline.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4788'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002463'},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85008151',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Article'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11976998s'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85056267',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Grammar, Comparative and general--Article'},
           'altLabel': {'@xml:lang': 'en', '$': 'Article'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh90000816',
             'prefLabel': {'@xml:lang': 'en',
              '$': 'Grammar, Comparative and general--Function words'},
             'altLabel': [{'@xml:lang': 'en',
               '$': 'Grammatical words (Grammar)'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Empty words'},
              {'@xml:lang': 'en', '$': 'Form words (Grammar)'},
              {'@xml:lang': 'en', '$': 'Empty words (Grammar)'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Structural words'},
              {'@xml:lang': 'en', '$': 'Structural words (Grammar)'},
              {'@xml:lang': 'en', '$': 'Functors (Grammar)'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Form words'},
              {'@xml:lang': 'en', '$': 'Function words (Grammar)'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Functors'},
              {'@xml:lang': 'en', '$': 'Closed-class words (Grammar)'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Closed-class words'},
              {'@xml:lang': 'en',
               '$': 'Grammar, Comparative and general--Grammatical words'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
            {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
            {'@xml:lang': 'en', '$': 'Analytical methods'},
            {'@xml:lang': 'en', '$': 'Chemical analysis'},
            {'@xml:lang': 'en', '$': 'Analysis methods'},
            {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
            {'@xml:lang': 'es', '$': 'análisis'},
            {'@xml:lang': 'fr', '$': 'analyse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Examination or determination.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
            {'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'},
            {'@xml:lang': 'en', '$': 'research'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'organisation de la recherche'},
              {'@xml:lang': 'es', '$': 'organización de la investigación'},
              {'@xml:lang': 'en', '$': 'organization of research'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85113021',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Scientific research'},
            {'@xml:lang': 'en', '$': 'Science research'},
            {'@xml:lang': 'en', '$': 'Science--Research'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11938467s'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
           'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/403'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/5458'}]},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6758',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'protocol'},
            {'@xml:lang': 'es', '$': 'protocolos'},
            {'@xml:lang': 'fr', '$': 'protocole'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) The original draft of a document. 2) An international agreement of a less formal nature than a treaty. It is often used to amend treaties.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
             'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
              {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
              {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/6884'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85124003',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social sciences'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Social science'},
            {'@xml:lang': 'en', '$': 'Sciences, Social'},
            {'@xml:lang': 'en', '$': 'Human sciences'},
            {'@xml:lang': 'en', '$': 'Social studies'},
            {'@xml:lang': 'en', '$': 'Behavioral sciences'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005029',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': {'@xml:lang': 'en', '$': 'Culture (Civilization)'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85026423',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Civilisation'},
               {'@xml:lang': 'en', '$': 'Barbarism'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb133183827'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias humanas'},
            {'@xml:lang': 'fr', '$': 'sciences humaines'},
            {'@xml:lang': 'en', '$': 'social sciences'}],
           'altLabel': [{'@xml:lang': 'en', '$': 'human sciences'},
            {'@xml:lang': 'fr', '$': "science de l'homme"}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'méthodologie'},
              {'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH'},
             'definition': {'@xml:lang': 'fr',
              '$': "Toutes les méthodes d'approches de l'Antiquité ainsi que l'organisation de la recherche (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
            {'@xml:lang': 'es', '$': 'años'},
            {'@xml:lang': 'en', '$': 'years'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
              {'@xml:lang': 'en', '$': 'division of time'},
              {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
            {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Orations'},
            {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Discourses'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85047940',
             'prefLabel': {'@xml:lang': 'en', '$': 'Festschriften'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Commemorative volumes'},
              {'@xml:lang': 'en', '$': 'Anniversary volumes'},
              {'@xml:lang': 'en', '$': 'Homage volumes'},
              {'@xml:lang': 'en', '$': 'Jubilee volumes'},
              {'@xml:lang': 'en', '$': 'Wedding publications'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11948542x'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85075676',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Lectures and lecturing'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
            {'@xml:lang': 'en', '$': 'Lecturing'},
            {'@xml:lang': 'en', '$': 'Speaking'},
            {'@xml:lang': 'en', '$': 'Discourses'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85113628',
              'prefLabel': {'@xml:lang': 'en', '$': 'Rhetoric'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Speaking'},
               {'@xml:lang': 'en', '$': 'Language and languages--Rhetoric'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85042633',
              'prefLabel': {'@xml:lang': 'en', '$': 'Elocution'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Speaking'},
               {'@xml:lang': 'en', '$': 'Declamation'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85108814',
              'prefLabel': {'@xml:lang': 'en', '$': 'Public speaking'},
              'altLabel': {'@xml:lang': 'en',
               '$': 'Public speaking--Study and teaching'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00007543',
              'prefLabel': {'@xml:lang': 'en', '$': 'Rhetoric'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85148199',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'World health'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Global health'},
            {'@xml:lang': 'en', '$': 'International health'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85108638',
             'prefLabel': {'@xml:lang': 'en', '$': 'Public health'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Health services'},
              {'@xml:lang': 'en', '$': 'Hygiene, Social'},
              {'@xml:lang': 'en', '$': 'Social hygiene'},
              {'@xml:lang': 'en', '$': 'Public hygiene'},
              {'@xml:lang': 'en', '$': 'Sanitary affairs'},
              {'@xml:lang': 'en', '$': 'Public health services'},
              {'@xml:lang': 'en', '$': 'Hygiene, Public'},
              {'@xml:lang': 'en', '$': 'Community health'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119332195'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtxs8Kml8jLw',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'outil'},
            {'@xml:lang': 'en', '$': 'tool'},
            {'@xml:lang': 'es', '$': 'utensilio'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'outillage'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtxs8Kml8jLw',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|tool'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici sont regroupées toutes les pièces dites utilitaires, à l'exception des"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
            {'@xml:lang': 'es', '$': 'saber'},
            {'@xml:lang': 'fr', '$': 'savoir'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3OJx1alrMD',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'child'},
            {'@xml:lang': 'fr', '$': 'enfant'},
            {'@xml:lang': 'es', '$': 'infante'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs|http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf|http://ark.frantiq.fr/ark:/26678/pcrt3OJx1alrMD'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf',
             'prefLabel': [{'@xml:lang': 'en', '$': 'childhood'},
              {'@xml:lang': 'fr', '$': 'enfance'},
              {'@xml:lang': 'es', '$': 'infancia'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs|http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf'}}}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1350',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'child'},
            {'@xml:lang': 'es', '$': 'niño'},
            {'@xml:lang': 'fr', '$': 'enfant'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A person below the age of puberty.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6527',
             'prefLabel': [{'@xml:lang': 'en', '$': 'population structure'},
              {'@xml:lang': 'es', '$': 'estructura de la población'},
              {'@xml:lang': 'fr', '$': 'structure de la population'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The organization of, and inter-relationships among, inhabitants of a given region, country or city.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/758'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006943',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'},
           'exactMatch': {'@uri': 'http://content.glin.gov/subjectTerm/9490'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206'},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85128407',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Storytelling'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Story-telling'},
            {'@xml:lang': 'en', '$': 'Telling of stories'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85095240',
             'prefLabel': {'@xml:lang': 'en', '$': 'Oral interpretation'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Speech, Interpretative'},
              {'@xml:lang': 'en', '$': 'Interpretative reading'},
              {'@xml:lang': 'en', '$': 'Interpretative speech'},
              {'@xml:lang': 'en', '$': 'Reading, Interpretative'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11930962h'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005507',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Density'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2008002816',
             'prefLabel': {'@xml:lang': 'en', '$': 'Properties'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85036848',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Density'},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/20350'},
            {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2186'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119773882'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/11116',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'density'},
            {'@xml:lang': 'es', '$': 'densidad'},
            {'@xml:lang': 'fr', '$': 'densité'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The mass of unit volume of a substance.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6229',
             'prefLabel': [{'@xml:lang': 'en', '$': 'physical property'},
              {'@xml:lang': 'es', '$': 'propiedad física'},
              {'@xml:lang': 'fr', '$': 'propriété physique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Property of a compound that can change without involving a change in chemical composition.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2186'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthULalfPMJs',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'richesse'},
            {'@xml:lang': 'es', '$': 'riqueza'},
            {'@xml:lang': 'en', '$': 'wealth'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtubcbbalocA|http://ark.frantiq.fr/ark:/26678/pcrtIZBySAvPeG|http://ark.frantiq.fr/ark:/26678/pcrthULalfPMJs',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|world of finance|financial matters|wealth'}},
           'definition': {'@xml:lang': 'fr', '$': 'Abondance de biens (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIZBySAvPeG',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'faits financiers'},
              {'@xml:lang': 'en', '$': 'financial matters'},
              {'@xml:lang': 'es', '$': 'hechos financieros'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'finance faits'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtubcbbalocA|http://ark.frantiq.fr/ark:/26678/pcrtIZBySAvPeG',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|world of finance|financial matters'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85145828',
           'prefLabel': {'@xml:lang': 'en', '$': 'Wealth'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Fortunes'},
            {'@xml:lang': 'en', '$': 'Riches'},
            {'@xml:lang': 'en', '$': 'Affluence'},
            {'@xml:lang': 'en', '$': 'Distribution of wealth'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM6WKp5XFlj',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'prospección'},
            {'@xml:lang': 'fr', '$': 'prospection'},
            {'@xml:lang': 'en', '$': 'survey'}],
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'reconnaissance archéologique'},
            {'@xml:lang': 'fr', '$': 'survey'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl|http://ark.frantiq.fr/ark:/26678/pcrtM6WKp5XFlj',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéologie de terrain|prospection'},
             {'@xml:lang': 'es',
              '$': 'Tema|metodología|recolección de datos|arqueología|arqueología de campo|prospección'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'archéologie de terrain'},
              {'@xml:lang': 'es', '$': 'arqueología de campo'},
              {'@xml:lang': 'en', '$': 'field archaeology'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'archéologie terrain'},
              {'@xml:lang': 'en', '$': 'field archeology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéologie de terrain'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8240',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'survey'},
            {'@xml:lang': 'es', '$': 'encuesta'},
            {'@xml:lang': 'fr', '$': 'enquête'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A critical examination of facts or conditions to provide information on a situation. Usually conducted by interviews and/or on-site visitations.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5354',
             'prefLabel': [{'@xml:lang': 'en', '$': 'monitoring technique'},
              {'@xml:lang': 'es', '$': 'técnicas de vigilancia'},
              {'@xml:lang': 'fr', '$': 'technique de surveillance'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Techniques employed in the process of checking, observing and measuring events, processes or physical, chemical, biological and environmental phenomena.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_7537'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgHEvW05pJS',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'collection'},
            {'@xml:lang': 'es', '$': 'recopilación'},
            {'@xml:lang': 'fr', '$': 'recueil'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'anthologie'},
            {'@xml:lang': 'fr', '$': 'recueil de textes'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrtgHEvW05pJS',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|metodología|análisis documental|instrumento documental|recopilación'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
              {'@xml:lang': 'es', '$': 'instrumento documental'},
              {'@xml:lang': 'fr', '$': 'outil documentaire'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85107318',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Progress'},
           'altLabel': {'@xml:lang': 'en', '$': 'Social progress'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005029',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': {'@xml:lang': 'en', '$': 'Culture (Civilization)'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85026423',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Civilisation'},
               {'@xml:lang': 'en', '$': 'Barbarism'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb133184261'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtaczpOVS2NO',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'progrès'},
            {'@xml:lang': 'es', '$': 'progreso'},
            {'@xml:lang': 'en', '$': 'progress'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtaczpOVS2NO'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85031565',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Continuity'},
           'altLabel': {'@xml:lang': 'en', '$': 'Continuum'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85082153',
             'prefLabel': {'@xml:lang': 'en', '$': 'Mathematics--Philosophy'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Logic of mathematics'},
              {'@xml:lang': 'en', '$': 'Mathematics, Logic of'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11957040t'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006909',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Quality'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006431',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Validity'},
           'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/52493'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002418',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Aspect'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11975736f'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/13045'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004807',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Implements'},
           'altLabel': {'@xml:lang': 'en', '$': 'Tools'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13163000q'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85136049',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Tools'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Hand tools'},
            {'@xml:lang': 'en', '$': 'Handtools'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85058890',
             'prefLabel': {'@xml:lang': 'en', '$': 'Hardware'}}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119384564'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85029623',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Concepts'},
           'altLabel': {'@xml:lang': 'en', '$': 'Concept formation'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85099708',
              'prefLabel': {'@xml:lang': 'en', '$': 'Perception'},
              'altLabel': {'@xml:lang': 'en',
               '$': 'Supraliminal perception'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85072732',
              'prefLabel': {'@xml:lang': 'en', '$': 'Knowledge, Theory of'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Theory of knowledge'},
               {'@xml:lang': 'en', '$': 'Epistemology'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85108459',
              'prefLabel': {'@xml:lang': 'en', '$': 'Psychology'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Science, Mental'},
               {'@xml:lang': 'en', '$': 'Mental philosophy'},
               {'@xml:lang': 'en', '$': 'Mind'},
               {'@xml:lang': 'en', '$': 'Behavioral sciences'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2002011487',
              'prefLabel': {'@xml:lang': 'en', '$': 'Psychology'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Biography--Psychology'},
               {'@xml:lang': 'en', '$': 'Personality'},
               {'@xml:lang': 'en', '$': 'Biography--Character'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85000258',
              'prefLabel': {'@xml:lang': 'en', '$': 'Abstraction'},
              'altLabel': {'@xml:lang': 'en', '$': 'Abstract thought'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119380383'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002416',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prevention'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb122628283'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119329891'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00002550',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Officers'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119542410'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12542929t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Territoire fédéral de Canberra (Australie)'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Australian Capital Territory'},
            {'@xml:lang': 'fr',
             '$': 'Canberra (Australie. - Territoire fédéral)'},
            {'@xml:lang': 'en', '$': 'ACT'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15522911r'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12542920q'}}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/79',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'act'},
            {'@xml:lang': 'es', '$': 'actos'},
            {'@xml:lang': 'fr', '$': 'acte législatif'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) Something done voluntarily by a person, and of such a nature that certain legal consequences attach to it. 2) Documents, decrees, edicts, laws, judgments, etc.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4707',
             'prefLabel': [{'@xml:lang': 'en', '$': 'law (individual)'},
              {'@xml:lang': 'es', '$': 'ley (individual)'},
              {'@xml:lang': 'fr', '$': 'loi'}],
             'definition': {'@xml:lang': 'en',
              '$': 'One of the rules making up the body of law.'}}}}]}},
       'dc:language': 'en',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.tzuw1d',
      'isidore': {'title': 'Modelización matemática de lo jurídico en Bolivia',
       'url': 'http://www.scielo.org.bo/scielo.php?script=sci_arttext&pid=S2413-28102018000200009',
       'enrichedCreators': {'creator': [{'@origin': 'Gallardo Rivas,Carlos Adán',
          '@normalizedAuthor': 'Gallardo Rivas, Carlos Adán',
          '@idAuthor': 'gallardo_rivas_carlos_adan',
          'firstname': 'Carlos Adán',
          'lastname': 'Gallardo Rivas',
          'title': [],
          'sameAs': []},
         {'@origin': 'Villanueva Vacaflor,Lindsay Denise',
          '@normalizedAuthor': 'Villanueva Vacaflor, Lindsay Denise',
          '@idAuthor': 'villanueva_vacaflor_lindsay_denise',
          'firstname': 'Lindsay Denise',
          'lastname': 'Villanueva Vacaflor',
          'title': [],
          'sameAs': []}]},
       'date': {'@origin': '2018-07-01',
        '@startDate': '2018-07-01',
        '@endDate': '2018-07-01',
        '@treeDate': '2000/2010/2018',
        'normalizedDate': '2018-07-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2018'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '18718930',
         '$': 'http://www.scielo.org.bo/scielo.php?script=sci_arttext&pid=S2413-28102018000200009'}},
       'subjects': {'subject': ['Modelización',
         'nivel de confianza del sistema',
         'nivel de potencia del sistema',
         'eficiencia y falla general del sistema',
         'efectividad de la política criminal']},
       'abstract': 'Resúmen En Bolivia, la construcción de modelos matemáticos en el ámbito jurídico es casi inexistente, de la revisión documental de los últimos 20 años se encontró tan solo un artículo, titulado "Teoría General de la Efectividad de la Política Criminal". El desarrollo del modelo es de autoría de Rafael Torrez Valdivia y en ella se explícita un conjunto de variables y momentos flujo-temporales interconectados, orientados a medir el grado de efectividad de las políticas criminales. Con el fin de divulgar el trabajo de Torrez, en el presente artículo desarrollamos una breve explicación del proceso de modelización; describimos y analizamos el modelo desarrollado por Torrez y proponemos discutir la importancia relativa de la modelación matemática de lo jurídico en el ámbito académico boliviano.',
       'types': {'type': 'info:eu-repo/semantics/article'},
       'source_info': {'collectionLabel': {'@shortLabel': 'SciELO',
         '@handle': '10670/3.7oraz1',
         '@collectionUuid': 'd4d63191-85d3-4fb9-9db1-a1efdca0eda3',
         '$': 'SciELO : Scientific Electronic Library Online'},
        'collectionOrganization': {'@organizationUrl': 'http://www.scielo.org',
         '$': 'SciELO'},
        'collectionURLMainSite': {'@thumbnaiId': '8144499',
         '$': 'http://www.scielo.org'},
        'collectionInformations': {'collectionDescription': 'The 15 year path taken by the SciELO Program in bringing about the improvement of the academic journals which it indexes and publishes in Open Access - a path which it continues to follow to this day – is examined from various perspectives such as the rationale and objectives of the program, its origin in Brazil and expansion to 15 other countries, the results it has achieved, its quality control and production system, the technological platform and the impact that has been made by the Program.',
         'collectionCountry': 'EN',
         'collectionContactEmailAddress': 'scielo@scielo.org'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.7oraz1|10670/2.lasand',
         '$': 'SciELO : Scientific Electronic Library Online#Revista Jurídica Derecho'},
        'sourceCode': {'@handle': '10670/2.lasand',
         '$': '92ad9c5e-aea9-8f22-f5ee-8596eb56e8ee'},
        'sourceName': {'@shortLabel': 'Revista Jurídica Derecho',
         '$': 'Revista Jurídica Derecho'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '18564636',
         '$': 'http://www.scielo.org.bo/scielo.php?script=sci_serial&pid=2413-2810&nrm=iso&lng=es'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'https://www.scielo.org',
         '$': 'La Revista Jurídica de Derecho del Instituto de Investigaciones y Seminarios, Carrera de Derecho – UMSA, promueve y difunde el conocimiento científico y la investigación en el ámbito social, jurídico, histórico, político a nivel nacional e internacional, con el fin de contribuir a la reflexión y análisis crítico de la realidad socio jurídica.'},
        'sourceOrganization': {'label': 'SciELO',
         'URI': 'https://www.scielo.org',
         'isoCountry': 'ES',
         'contactEmailAddress': 'scielo@scielo.org'},
        'sourceParameters': {'baseUrl': 'http://www.scielo.org.bo/oai/scielo-oai.php',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n,%p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/spa',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Spanish'},
            {'@xml:lang': 'fr', '$': 'Espagnol'},
            {'@xml:lang': 'es', '$': 'Idioma español'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUbQwxQM8Q8',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'modélisation'},
             {'@xml:lang': 'es', '$': 'modelización'},
             {'@xml:lang': 'en', '$': 'modelling (conception)'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrt1GP77Af0SA|http://ark.frantiq.fr/ark:/26678/pcrtUbQwxQM8Q8',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|informatique|modélisation'},
              {'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|informática|modelización'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1GP77Af0SA',
              'prefLabel': [{'@xml:lang': 'en', '$': 'computer science'},
               {'@xml:lang': 'es', '$': 'informática'},
               {'@xml:lang': 'fr', '$': 'informatique'}],
              'altLabel': [{'@xml:lang': 'en', '$': 'computing'},
               {'@xml:lang': 'fr', '$': 'informatisation'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrt1GP77Af0SA',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|informatique'}}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0fWVRe0hvf',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'matemática'},
             {'@xml:lang': 'en', '$': 'mathematics'},
             {'@xml:lang': 'fr', '$': 'mathématique'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'mathématiques'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrt0fWVRe0hvf'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
              'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
               {'@xml:lang': 'en', '$': 'sciences'},
               {'@xml:lang': 'fr', '$': 'sciences'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'}}}},
           {'@count': '2',
            '@uri': 'http://GeoEthno#BOLIVIE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Bolivie'},
             {'@xml:lang': 'es', '$': 'Bolivia'},
             {'@xml:lang': 'en', '$': 'Bolivia'}],
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'République de Bolivie (av. 2009)'},
             {'@xml:lang': 'fr',
              '$': 'Haut-Pérou (16ème siècle - 19ème siècle)'},
             {'@xml:lang': 'es', '$': 'República de Bolivia (av. 2009)'},
             {'@xml:lang': 'es',
              '$': 'Alto Perú  (16ème siècle - 19ème siècle)'},
             {'@xml:lang': 'en',
              '$': 'Upper Peru (16ème siècle - 19ème siècle)'},
             {'@xml:lang': 'en', '$': 'Republic of Bolivia (av. 2009)'},
             {'@xml:lang': 'fr', '$': 'État plurinational de Bolivie'},
             {'@xml:lang': 'es', '$': 'Estado Plurinacional de Bolivia'},
             {'@xml:lang': 'en', '$': 'Plurinational State of Bolivia'},
             {'@xml:lang': 'en', '$': 'Bolivia, Plurinational State of'}],
            'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_DU_SUD|http://GeoEthno#BOLIVIE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Amérique|Amérique du Sud|Bolivie'},
              {'@xml:lang': 'es', '$': 'América|América del Sur|Bolivia'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#AMERIQUE_DU_SUD',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Amérique du Sud'},
               {'@xml:lang': 'es', '$': 'América del Sur'},
               {'@xml:lang': 'en', '$': 'South America'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Amérique latine'},
               {'@xml:lang': 'es', '$': 'Suramérica'},
               {'@xml:lang': 'es', '$': 'Sudamérica'},
               {'@xml:lang': 'en', '$': 'Latin America'}],
              'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_DU_SUD',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Amérique|Amérique du Sud'},
                {'@xml:lang': 'es', '$': 'América|América del Sur'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'block of flats'},
             {'@xml:lang': 'es', '$': 'construcción'},
             {'@xml:lang': 'fr', '$': 'immeuble'}],
            'altLabel': [{'@xml:lang': 'en', '$': 'apartment building'},
             {'@xml:lang': 'fr', '$': 'habitation-HLM'},
             {'@xml:lang': 'en', '$': 'insula'},
             {'@xml:lang': 'fr', '$': 'insula'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
              'expandedLabel': [{'@xml:lang': 'en',
                '$': 'Themes|architecture|architecture (conception)|domestic architecture|settlement|block of flats'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat|immeuble'}]},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtfdjrKksfEZ|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|specialized quarter|block of flats'}}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Demeure divisée, à la construction, en appartements pour plusieurs particuliers. (Dico archi)'},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
               'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
                {'@xml:lang': 'es', '$': 'hábitat'},
                {'@xml:lang': 'en', '$': 'settlement'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
                {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
               'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
                 'expandedLabel': {'@xml:lang': 'fr',
                  '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
                {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
               'definition': {'@xml:lang': 'fr',
                '$': "Lieu d'habitation construit."}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfdjrKksfEZ',
               'prefLabel': [{'@xml:lang': 'es', '$': 'barrio especial'},
                {'@xml:lang': 'fr', '$': 'quartier spécial'},
                {'@xml:lang': 'en', '$': 'specialized quarter'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524879',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Construcción'},
            'label': {'@xml:lang': 'es', '$': 'Construcción'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Edificación'},
             {'@xml:lang': 'es', '$': 'Edificios--Construcción'},
             {'@xml:lang': 'es', '$': 'Industria de la construcción'},
             {'@xml:lang': 'es', '$': 'Sector de la construcción'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85017693',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Building'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Architectural engineering'},
             {'@xml:lang': 'en', '$': 'Construction'},
             {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
             {'@xml:lang': 'en', '$': 'Engineering, Architectural'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'building (process of)'},
             {'@xml:lang': 'es', '$': 'construcción'},
             {'@xml:lang': 'fr', '$': 'construction'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|technology|building (process of)'}}],
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
               'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
                {'@xml:lang': 'fr', '$': 'architecture'},
                {'@xml:lang': 'es', '$': 'arquitectura'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
               'definition': {'@xml:lang': 'fr',
                '$': 'Art de construire les bâtiments (Lar.)'}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
               'prefLabel': [{'@xml:lang': 'fr', '$': 'technologie'},
                {'@xml:lang': 'en', '$': 'technology'},
                {'@xml:lang': 'es', '$': 'tecnología'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'technique'},
                {'@xml:lang': 'fr', '$': 'technique de fabrication'},
                {'@xml:lang': 'fr', '$': 'techniques'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576317',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Modelos matemáticos'},
            'label': {'@xml:lang': 'es', '$': 'Modelos matemáticos'},
            'altLabel': {'@xml:lang': 'es', '$': 'Modelos (Matemáticas)'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85082124',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Mathematical models'},
            'altLabel': {'@xml:lang': 'en', '$': 'Models, Mathematical'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
             {'@xml:lang': 'es', '$': 'años'},
             {'@xml:lang': 'en', '$': 'years'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
               {'@xml:lang': 'en', '$': 'division of time'},
               {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'general'},
             {'@xml:lang': 'es', '$': 'general'},
             {'@xml:lang': 'fr', '$': 'général'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe|http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'chef militaire'},
               {'@xml:lang': 'es', '$': 'jefe militar'},
               {'@xml:lang': 'en', '$': 'military chief'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe'}}}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX4577038',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Política criminal'},
            'label': {'@xml:lang': 'es', '$': 'Política criminal'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Delincuencia--Política gubernamental'},
             {'@xml:lang': 'es', '$': 'Política penal'}]},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'modèle'},
             {'@xml:lang': 'es', '$': 'modelo'},
             {'@xml:lang': 'en', '$': 'model (object of imitation)'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0|http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|art|art (conception of)|status of a work of art|model (object of imitation)'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0',
              'prefLabel': [{'@xml:lang': 'es', '$': 'estatus de la obra'},
               {'@xml:lang': 'en', '$': 'status of a work of art'},
               {'@xml:lang': 'fr', '$': "statut de l'oeuvre"}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX5161319',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Autoría'},
            'label': {'@xml:lang': 'es', '$': 'Autoría'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Artistas--Obras atribuidas'},
             {'@xml:lang': 'es', '$': 'Atribución artística'},
             {'@xml:lang': 'es', '$': 'Atribución literaria'},
             {'@xml:lang': 'es', '$': 'Escritores--Obras atribuidas'},
             {'@xml:lang': 'es', '$': 'Obras de arte--Atribución'},
             {'@xml:lang': 'es', '$': 'Obras literarias--Atribución'},
             {'@xml:lang': 'es', '$': 'Paternidad artística'},
             {'@xml:lang': 'es', '$': 'Paternidad literaria'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85010030',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Authorship'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Authoring (Authorship)'},
             {'@xml:lang': 'en', '$': 'Writing (Authorship)'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'},
             {'@xml:lang': 'en', '$': 'work'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
               {'@xml:lang': 'fr', '$': 'société'},
               {'@xml:lang': 'en', '$': 'society'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
              'definition': {'@xml:lang': 'fr',
               '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
             {'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'}],
            'definition': {'@xml:lang': 'en',
             '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
             {'@uri': 'http://eurovoc.europa.eu/4543'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524430',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
            'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh90004091',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Labor'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Labor and laboring classes'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtYubrNNSU09',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'procès'},
             {'@xml:lang': 'es', '$': 'proceso'},
             {'@xml:lang': 'en', '$': 'trial'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN|http://ark.frantiq.fr/ark:/26678/pcrtYubrNNSU09'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN',
              'prefLabel': [{'@xml:lang': 'es', '$': 'procedimiento'},
               {'@xml:lang': 'en', '$': 'procedure'},
               {'@xml:lang': 'fr', '$': 'procédure'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Forme suivant laquelle les affaires sont instruites devant les tribunaux (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6737',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'prosecution'},
             {'@xml:lang': 'es', '$': 'proceso'},
             {'@xml:lang': 'fr', '$': 'poursuite'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The pursuit of legal proceedings, particularly criminal proceedings.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11540',
              'prefLabel': [{'@xml:lang': 'en', '$': 'crime'},
               {'@xml:lang': 'es', '$': 'delitos'},
               {'@xml:lang': 'fr', '$': 'crime'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any act done in violation of those duties which an individual owes to the community, and for the breach of which the law has provided that the offender shall make satisfaction to the public.'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4X1xfOc3xS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'modelado'},
             {'@xml:lang': 'fr', '$': 'modelage'},
             {'@xml:lang': 'en', '$': 'modelling (art)'}],
            'altLabel': {'@xml:lang': 'es', '$': 'modelación'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW|http://ark.frantiq.fr/ark:/26678/pcrt4X1xfOc3xS'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW',
              'prefLabel': [{'@xml:lang': 'es', '$': 'escultura'},
               {'@xml:lang': 'en', '$': 'sculpture'},
               {'@xml:lang': 'fr', '$': 'sculpture'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW'},
              'definition': {'@xml:lang': 'fr',
               '$': "Domaine de l'art qui est concerné par la production de formes en ronde bosse ou en relief au moyen de diverses techniques : taille, moulage, modelage, fonte, repoussé, etc.  Ce terme désigne également l'oeuvre ou l'objet résultant de ces techniques. (Thésaurus Min. Culture F)"}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX548191',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Confianza'},
            'label': {'@xml:lang': 'es', '$': 'Confianza'},
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX4659789',
              'prefLabel': {'@xml:lang': 'es',
               '$': 'Emociones y sentimientos'},
              'label': {'@xml:lang': 'es', '$': 'Emociones y sentimientos'},
              'altLabel': [{'@xml:lang': 'es', '$': 'Emociones'},
               {'@xml:lang': 'es', '$': 'Estados de ánimo'},
               {'@xml:lang': 'es', '$': 'Estados emocionales'},
               {'@xml:lang': 'es', '$': 'Sentimientos'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85030926',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Confidence'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85138261',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Trust'},
            'altLabel': {'@xml:lang': 'en', '$': 'Trust (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtD9Jt6A2Jia',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'potencia'},
             {'@xml:lang': 'en', '$': 'power (strength)'},
             {'@xml:lang': 'fr', '$': 'puissance'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z|http://ark.frantiq.fr/ark:/26678/pcrtD9Jt6A2Jia',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philosophie|philosophie (aspect)|métaphysique|puissance'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
              'prefLabel': [{'@xml:lang': 'es', '$': 'metafísica'},
               {'@xml:lang': 'en', '$': 'metaphysic'},
               {'@xml:lang': 'fr', '$': 'métaphysique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'ontologie'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philosophie|philosophie (aspect)|métaphysique'}}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '2',
           '@uri': 'http://sws.geonames.org/3923057/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Bolivia',
            {'@xml:lang': 'es', '$': 'Bolivia'},
            {'@xml:lang': 'en', '$': 'Bolivia, Plurinational State Of'},
            {'@xml:lang': 'en', '$': 'Plurinational State of Bolivia'},
            {'@xml:lang': 'en', '$': 'Republic of Bolivia'},
            {'@xml:lang': 'fr', '$': 'Bolivie'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Bolivie'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255150/|http://sws.geonames.org/3923057/',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Amérique du Sud|Bolivie'},
             {'@xml:lang': 'es', '$': 'América del Sur|Bolivia'},
             {'@xml:lang': 'en',
              '$': 'South America|Bolivia, Plurinational State Of'}],
            'expandedCountry': [{'@xml:lang': 'fr',
              '$': 'Amérique du Sud|Bolivia'},
             {'@xml:lang': 'es', '$': 'América del Sur|Bolivia'},
             {'@xml:lang': 'en', '$': 'South America|Bolivia'}]},
           'latitude': '-17',
           'longitude': '-65',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255150/',
             'prefLabel': ['South America',
              {'@xml:lang': 'en', '$': 'South America'},
              {'@xml:lang': 'es', '$': 'América del Sur'},
              {'@xml:lang': 'fr', '$': 'Amérique du Sud'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Sud'},
             'latitude': '-14.60485',
             'longitude': '-57.65625'}},
           'exactMatch': []}}]},
       'dc:language': 'es',
       'dc:rights': 'info:eu-repo/semantics/openAccess'}},
     {'@uri': '10.7202/1081091ar',
      'isidore': {'title': 'In Memoriam : Régine Robin',
       'url': 'http://id.erudit.org/iderudit/1081091ar',
       'enrichedCreators': {'creator': {'@origin': 'Gyssels, Kathleen',
         '@normalizedAuthor': 'Gyssels, Kathleen',
         '@idAuthor': 'gyssels_kathleen',
         'firstname': 'Kathleen',
         'lastname': 'Gyssels',
         'title': [],
         'sameAs': {'orcid': '0000-0003-2951-872X', 'idref': '034736069'}}},
       'date': {'@origin': '2021',
        '@startDate': '2021-01-01',
        '@endDate': '2021-12-31',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28026912',
          '$': 'http://id.erudit.org/iderudit/1081091ar'},
         {'@crawl': 'true',
          '@rdfVisible': 'false',
          '@thumbnail': 'false',
          '$': 'http://oai.erudit.org/oai-interop/?verb=GetRecord&identifier=oai:erudit.org:1081091ar&metadataPrefix=ea'}],
        'similar': 'doi:10.7202/1081091ar'},
       'relations': {'relation': "Dalhousie French Studies : Revue d'études littéraires du Canada atlantique ; vol. no. 118 (2021)"},
       'types': {'type': 'text'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Erudit',
         '@handle': '10670/3.asd832',
         '@collectionUuid': '63f0dbf0-92ca-4435-b4a5-cd648f23bfbf',
         '$': 'Erudit'},
        'collectionOrganization': {'@organizationUrl': 'http://www.erudit.org',
         '$': 'Consortium Erudit'},
        'collectionURLMainSite': {'@thumbnaiId': '1743131',
         '$': 'http://www.erudit.org'},
        'collectionInformations': {'collectionDescription': "Erudit est une société sans but lucratif et un consortium interuniversitaire composé de l'Université de Montréal, de l'Université Laval et de l'Université du Québec à Montréal qui œuvre dans le domaine de l’édition numérique depuis 1998. Erudit propose un modèle innovateur de promotion et de diffusion de la recherche et de la création. Erudit constitue le « pôle Québec » du projet Synergies.",
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'doi:(10.7202/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.asd832|10670/2.0ge721',
         '$': "Erudit#Dalhousie French Studies: Revue d'études littéraires du Canada atlantique"},
        'sourceCode': {'@handle': '10670/2.0ge721',
         '$': '3c81b934-808e-979f-3781-a43018484dfa'},
        'sourceName': {'@shortLabel': "Dalhousie French Studies: Revue d'études littéraires du Canada atlantique",
         '$': "Dalhousie French Studies: Revue d'études littéraires du Canada atlantique"},
        'sourceISSN': ['https://portal.issn.org/resource/ISSN/0711-8813',
         'https://portal.issn.org/resource/ISSN/2562-8704'],
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '22042924',
         '$': 'http://www.erudit.org/revue/dfs'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://www.erudit.org',
         '$': "Dalhousie French Studies: Revue d'études littéraires du Canada atlantique"},
        'sourceOrganization': {'label': 'Consortium Érudit',
         'URI': 'http://www.erudit.org',
         'isoCountry': 'CA',
         'contactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://oai.erudit.org/oai/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'metadataPrefixForResource': 'ea'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#text',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
            {'@xml:lang': 'en', '$': 'Textual materials'},
            {'@xml:lang': 'es', '$': 'Textos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.droit',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Derecho'},
            {'@xml:lang': 'fr', '$': 'Droit'},
            {'@xml:lang': 'en', '$': 'Law'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.droit',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Droit"},
             {'@xml:lang': 'en', '$': 'Humanities and Social Sciences|Law'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Derecho'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie251',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Derecho'},
               {'@xml:lang': 'fr', '$': 'Droit'},
               {'@xml:lang': 'en', '$': 'Law'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie251',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Droit'},
                {'@xml:lang': 'es', '$': 'Sociedad|Derecho'},
                {'@xml:lang': 'en', '$': 'Society|Law'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Law'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie251',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Derecho'},
            {'@xml:lang': 'fr', '$': 'Droit'},
            {'@xml:lang': 'en', '$': 'Law'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie251',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Droit'},
             {'@xml:lang': 'es', '$': 'Sociedad|Derecho'},
             {'@xml:lang': 'en', '$': 'Society|Law'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'All Rights Reserved ©, 2021Dalhousie French Studies'}},
     {'@uri': '10670/1.xrb1pu',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'Marceau Gast Fonds - Ahaggar - Feeding the Ahaggar community - Wells and reservoirs for watering livestock'},
        {'@xml:lang': 'fr',
         '$': 'Fonds Marceau Gast - Ahaggar – Alimentation de la population de l’Ahaggar – Puits et bassins d’abreuvage à In Abangarit (nord Niger)'}],
       'url': 'https://medihal.archives-ouvertes.fr/hal-03346104',
       'enrichedCreators': {'creator': {'@origin': 'Gast, Marceau',
         '@normalizedAuthor': 'Gast, Marceau',
         '@idAuthor': 'gast_marceau',
         'firstname': 'Marceau',
         'lastname': 'Gast',
         'title': [],
         'sameAs': {'idref': '033621446'}}},
       'date': {'@origin': '1953',
        '@startDate': '1953-01-01',
        '@endDate': '1953-12-31',
        '@treeDate': '1900/1950/1953',
        'normalizedDate': '1953-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1900'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1950'},
        'years': {'@start': '1950', '@end': '2030', 'year': '1953'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://medihal.archives-ouvertes.fr/hal-03346104'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '28132775',
          '$': 'https://medihal.archives-ouvertes.fr/hal-03346104/image'},
         {'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://medihal.archives-ouvertes.fr/hal-03346104/file/3_03.jpg'}],
        'similar': 'hal-03346104'},
       'subjects': {'subject': [{'@xml:lang': 'fr',
          '$': 'Archives de chercheur'},
         {'@xml:lang': 'fr', '$': 'Touareg'},
         {'@xml:lang': 'fr', '$': 'Sahara'},
         {'@xml:lang': 'fr',
          '$': 'Alimentation de la population de l’Ahaggar'},
         {'@xml:lang': 'fr', '$': 'Animal du désert'},
         {'@xml:lang': 'fr', '$': 'Eau'},
         {'@xml:lang': 'fr', '$': 'Puits'},
         {'@xml:lang': 'fr', '$': 'Photographie couleur'},
         {'@xml:lang': 'fr', '$': 'Phonothèque de la MMSH'},
         {'@xml:lang': 'fr', '$': 'Photographie ethnologique'},
         {'@xml:lang': 'fr', '$': 'Collecte de Marceau Gast dans le Hoggar'},
         {'@xml:lang': 'fr', '$': 'Niger'},
         '[SHS.ANTHRO-SE]Humanities and Social Sciences/Social Anthropology and ethnology']},
       'coverages': {'coverage': 'In-Abangarit, Niger'},
       'abstract': 'Le corpus photographique de Marceau Gast sur le Hoggar est constitué de clichés en noir et blanc et en couleur (formats mentionnés par le chercheur dans ses carnets : 24X36, 6X6, 6X9 cm). Les photographies peuvent être issues de la période où il était instituteur dans le Sud du Sahara (1948-1956) ou de ses études ethnographiques sur l\'alimentation (1960-1968) en tant que chercheur au CNRS. Il a déposé en 2004 à la phonothèque de la MMSH ses enregistrements sonores [http://www.calames.abes.fr/pub/ms/FileId-1566] ainsi que des documents d\'accompagnement. La numérisation d’une partie des photographies a été effectuée sur un financement de la TGIR Huma-Num (CNRS, AMU) dans le cadre du Consortium « Archives des ethnologues » et le département de la Culture et du patrimoine scientifique d\'Aix-Marseille Université. L\'association des Amis de l’Encyclopédie berbère était détentrice des originaux au moment de cet archivage ; elle a pu venir en soutien à la documentation. L\'ensemble du traitement des images et des carnets a été réalisé par Maryasha Barbé, reprenant les informations recueillies dans les carnets de terrain, les ouvrages et les enquêtes enregistrées produites par Marceau Gast, dans le cadre d\'un stage de Master 1, "Métier des bibliothèques et des archives. Médiations de l’histoire et humanités numériques" (Aix-Marseille Université) à la phonothèque de la MMSH en 2020. La mise en ligne a été finalisée en septembre 2021 dans le cadre d’une fairisation des données du fonds sur un financement du CNRS. Pour toute information complémentaire sur la diffusion et la documentation des images, merci d\'écrire à : contact.bibliotheques.mmsh@services.cnrs.fr',
       'types': {'type': ['info:eu-repo/semantics/other', 'Photos']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.hlil75',
         '$': 'Archives ouvertes#MédiHAL'},
        'sourceCode': {'@handle': '10670/2.hlil75',
         '$': '1163faa1-d3ad-4fb5-a41b-3d527e4fff90'},
        'sourceName': {'@shortLabel': 'MédiHAL',
         '$': "MédiHAL, l'archive ouverte de photographiques et d'images scientifiques"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778260',
         '$': 'https://medihal.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://medihal.archives-ouvertes.fr',
         '$': "MédiHAL est une archive ouverte qui permet de déposer des images scientifiques et des documents iconographiques scientifiques (images scannées, photographies numérisées, photographies numériques, images de synthèse ou des images de simulations numériques, etc.) pouvant être assimililé à des données scientifiques pour la recherche (corpus de photos, collection du patrimoine scientifique, corpus accompagnant une expérience ou un projet de recherche). Ces documents iconographiques sont stockés dans un dépôt sécurisé, disposant d'une forte infrastructure numérique et humaine, avec copies de sécurité des images et de leurs métadonnées. Réalisée par le CCSD en collaboration avec le Centre national pour la numérisation de sources visuelles et le TGE Adonis en 2010, le dépôt dans MédiHAL est ouvert pour l'ensemble des domaines scientifiques."},
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/medihal/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#other',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
             {'@xml:lang': 'en', '$': 'Others'},
             {'@xml:lang': 'es', '$': 'Otros'}]},
           {'@uri': 'http://isidore.science/ontology#image',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Photos et images'},
             {'@xml:lang': 'en', '$': 'Images and photos'},
             {'@xml:lang': 'es', '$': 'Fotografías e imágenes'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/eng',
           'prefLabel': [{'@xml:lang': 'en', '$': 'English'},
            {'@xml:lang': 'fr', '$': 'Anglais'},
            {'@xml:lang': 'es', '$': 'Idioma inglés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936696f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Propriété foncière'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Biens fonciers'},
             {'@xml:lang': 'fr', '$': 'Domaines'},
             {'@xml:lang': 'fr', '$': 'Domaine foncier'},
             {'@xml:lang': 'fr', '$': 'Régime foncier'},
             {'@xml:lang': 'fr', '$': 'Terres, Tenure des'},
             {'@xml:lang': 'fr', '$': 'Question agraire'},
             {'@xml:lang': 'fr', '$': 'Propriété rurale'},
             {'@xml:lang': 'fr', '$': 'Tenure'},
             {'@xml:lang': 'fr', '$': 'Fonds'},
             {'@xml:lang': 'fr', '$': 'Propriété domaniale'},
             {'@xml:lang': 'fr', '$': 'Biens fonds'},
             {'@xml:lang': 'fr', '$': 'Propriété terrienne'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133408829',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Droit commercial'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Commercialité'},
                {'@xml:lang': 'fr', '$': 'Droit des échanges commerciaux'},
                {'@xml:lang': 'fr', '$': 'Législation commerciale'},
                {'@xml:lang': 'fr',
                 '$': 'Droit des activités commerciales'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12647624n',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Propriété immobilière'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Accession immobilière'},
                {'@xml:lang': 'fr', '$': 'Patrimoine immobilier'},
                {'@xml:lang': 'fr', '$': 'Biens immobiliers'},
                {'@xml:lang': 'fr', '$': 'Immeubles (droit)'},
                {'@xml:lang': 'fr', '$': 'Enquêtes cadastrales'},
                {'@xml:lang': 'fr', '$': 'Biens immeubles'},
                {'@xml:lang': 'fr', '$': 'Actif immobilier'}]}}]},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85074312',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Land tenure'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Land ownership'},
             {'@xml:lang': 'en', '$': 'Land question'},
             {'@xml:lang': 'en', '$': 'Agrarian tenure'},
             {'@xml:lang': 'en', '$': 'Tenure of land'},
             {'@xml:lang': 'en', '$': 'Freehold'},
             {'@xml:lang': 'en', '$': 'Feudal tenure'},
             {'@xml:lang': 'en', '$': 'Landownership'}]},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318298b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Alimentation'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Science de l'alimentation"},
             {'@xml:lang': 'fr', '$': 'Rations alimentaires'}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-782'}}},
           {'@count': '3',
            '@uri': 'http://datos.bne.es/resource/XX531792',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Alimentación'},
            'label': {'@xml:lang': 'es', '$': 'Alimentación'}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005394',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Feeding and feeds'},
            'altLabel': {'@xml:lang': 'en', '$': 'Feeds'}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkAoBnFpdrT',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'alimentación'},
             {'@xml:lang': 'fr', '$': 'alimentation'},
             {'@xml:lang': 'en', '$': 'consumption of food'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtkAoBnFpdrT'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO',
              'prefLabel': [{'@xml:lang': 'en', '$': 'everyday life'},
               {'@xml:lang': 'es', '$': 'vida diaria'},
               {'@xml:lang': 'fr', '$': 'vie quotidienne'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'culture matérielle'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO'},
              'definition': {'@xml:lang': 'fr',
               '$': "Cette rubrique traite avant tout de la culture matérielle d'une civilisation (BL)"}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7vLkeZro2h',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'población'},
             {'@xml:lang': 'en', '$': 'population'},
             {'@xml:lang': 'fr', '$': 'population'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrt7vLkeZro2h',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|géographie|géographie humaine|population'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD',
              'prefLabel': [{'@xml:lang': 'es', '$': 'geografía humana'},
               {'@xml:lang': 'fr', '$': 'géographie humaine'},
               {'@xml:lang': 'en', '$': 'human geography'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Population'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '061 Sociologie - population - loisirs|Population'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '061 Sociologie - population - loisirs'}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4056',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'human population'},
             {'@xml:lang': 'es', '$': 'población humana'},
             {'@xml:lang': 'fr', '$': 'population'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Group of individuals having common characteristics.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2060',
              'prefLabel': [{'@xml:lang': 'en', '$': 'demography'},
               {'@xml:lang': 'es', '$': 'demografía'},
               {'@xml:lang': 'fr', '$': 'démographie'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The statistical study of human vital statistics and population dynamics.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3683'},
             {'@uri': 'http://eurovoc.europa.eu/52'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119563454',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Population'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Natalité'},
             {'@xml:lang': 'fr', '$': 'Dimension de la population'},
             {'@xml:lang': 'fr', '$': 'Surpeuplement'},
             {'@xml:lang': 'fr', '$': 'Surpopulation'},
             {'@xml:lang': 'fr', '$': 'Accroissement de population'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
                {'@xml:lang': 'fr', '$': 'Économie'},
                {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
                {'@xml:lang': 'fr', '$': 'Analyse économique'},
                {'@xml:lang': 'fr', '$': 'Science économique'},
                {'@xml:lang': 'fr', '$': 'Économique'},
                {'@xml:lang': 'fr', '$': 'Théorie économique'},
                {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
                {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133184997',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Écologie humaine'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Espaces naturels-homme, Relations'},
                {'@xml:lang': 'fr', '$': 'Relations homme-environnement'},
                {'@xml:lang': 'fr', '$': 'Relations homme-nature'},
                {'@xml:lang': 'fr', '$': 'Survie (écologie humaine)'},
                {'@xml:lang': 'fr', '$': 'Environnement-homme, Relations'},
                {'@xml:lang': 'fr', '$': 'Cadre de vie'},
                {'@xml:lang': 'fr', '$': 'Nature-homme, Relations'},
                {'@xml:lang': 'fr', '$': 'Relations nature-homme'},
                {'@xml:lang': 'fr', '$': 'Relations milieu naturel-homme'},
                {'@xml:lang': 'fr', '$': 'Écologie sociale'},
                {'@xml:lang': 'fr', '$': 'Relations environnement-homme'},
                {'@xml:lang': 'fr', '$': 'Environnement humain'},
                {'@xml:lang': 'fr', '$': 'Relations homme-milieu naturel'},
                {'@xml:lang': 'fr', '$': 'Socioécologie'}]}}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1066'}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006969',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Population'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Demography'},
             {'@xml:lang': 'en', '$': 'Demographics'}]},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/9290',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'well'},
             {'@xml:lang': 'es', '$': 'pozos'},
             {'@xml:lang': 'fr', '$': 'puits'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A hole dug into the earth to reach a supply of water, oil, brine or gas.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9165',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'water distribution system'},
               {'@xml:lang': 'es', '$': 'sistema de distribución de agua'},
               {'@xml:lang': 'fr', '$': "réseau de distribution d'eau"}],
              'definition': {'@xml:lang': 'en',
               '$': 'The system of pipes supplying water to communities and industries.'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'pozo'},
             {'@xml:lang': 'fr', '$': 'puits'},
             {'@xml:lang': 'en', '$': 'well'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B|http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|public works|hydraulics|well'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hidráulica'},
               {'@xml:lang': 'en', '$': 'hydraulics'},
               {'@xml:lang': 'fr', '$': 'hydraulique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'installation hydraulique'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|hydraulique"}},
              'definition': {'@xml:lang': 'fr',
               '$': "Science et technique qui traitent des problèmes posés par l'utilisation de l'eau (Lar.)"}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1699',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Puits'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2128|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1438|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1699',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "011 Ouvrages d'art|Ouvrage d'art|Puits"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1438',
              'prefLabel': {'@xml:lang': 'fr', '$': "Ouvrage d'art"},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2128|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1438',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "011 Ouvrages d'art|Ouvrage d'art"}}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119759000',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Puits'},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-884'}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85146057',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Wells'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Tube wells'},
             {'@xml:lang': 'en', '$': 'Water wells'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb123228482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Nord (point cardinal)'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Nord'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12322811q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Points cardinaux'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Rose des vents'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092449',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'North (The word)'}},
           {'@count': '3',
            '@uri': 'http://GeoEthno#NIGER',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Niger'},
             {'@xml:lang': 'es', '$': 'Níger'},
             {'@xml:lang': 'en', '$': 'Níger'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République du Niger'},
             {'@xml:lang': 'en', '$': 'Republic of the Niger'}],
            'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_OCCIDENTALE|http://GeoEthno#NIGER',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Afrique|Afrique occidentale|Niger'},
              {'@xml:lang': 'es', '$': 'África|África occidental|Níger'},
              {'@xml:lang': 'en', '$': 'Africa|West Africa|Níger'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#AFRIQUE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Afrique occidentale'},
               {'@xml:lang': 'es', '$': 'África occidental'},
               {'@xml:lang': 'en', '$': 'West Africa'}],
              'altLabel': [{'@xml:lang': 'en', '$': 'Western Africa'},
               {'@xml:lang': 'fr', '$': "Afrique de l'Ouest"}],
              'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Afrique|Afrique occidentale'},
                {'@xml:lang': 'es', '$': 'África|África occidental'},
                {'@xml:lang': 'en', '$': 'Africa|West Africa'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
             {'@xml:lang': 'es', '$': 'corpus'},
             {'@xml:lang': 'fr', '$': 'corpus'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '2',
            '@uri': 'http://GeoEthno#HOGGAR',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Hoggar'},
            'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_SEPTENTRIONALE|http://GeoEthno#ALGERIE|http://GeoEthno#WILAYA_DE_TAMANRASSET|http://GeoEthno#HOGGAR',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Afrique|Afrique septentrionale|Algérie|Wilaya de Tamanrasset|Hoggar'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#WILAYA_DE_TAMANRASSET',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Wilaya de Tamanrasset'},
              'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_SEPTENTRIONALE|http://GeoEthno#ALGERIE|http://GeoEthno#WILAYA_DE_TAMANRASSET',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Afrique|Afrique septentrionale|Algérie|Wilaya de Tamanrasset'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3kpULwWUS2',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'black'},
             {'@xml:lang': 'es', '$': 'negro'},
             {'@xml:lang': 'fr', '$': 'noir'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtvsFBSmOKN2|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618|http://ark.frantiq.fr/ark:/26678/pcrt3kpULwWUS2',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|savoir|science|sciences|physique antique|optique|couleur|noir'}},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618|http://ark.frantiq.fr/ark:/26678/pcrt3kpULwWUS2'}],
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618',
              'prefLabel': [{'@xml:lang': 'es', '$': 'color'},
               {'@xml:lang': 'en', '$': 'colour'},
               {'@xml:lang': 'fr', '$': 'couleur'}],
              'altLabel': {'@xml:lang': 'en', '$': 'color'},
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtvsFBSmOKN2|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'}],
              'definition': {'@xml:lang': 'fr'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12499413m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Noir'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119591110',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Couleurs'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85014515',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Black'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtTrvqZaQ5Bt',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'blanc'},
             {'@xml:lang': 'es', '$': 'blanco'},
             {'@xml:lang': 'en', '$': 'white'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtvsFBSmOKN2|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618|http://ark.frantiq.fr/ark:/26678/pcrtTrvqZaQ5Bt',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|savoir|science|sciences|physique antique|optique|couleur|blanc'}},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618|http://ark.frantiq.fr/ark:/26678/pcrtTrvqZaQ5Bt'}],
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618',
              'prefLabel': [{'@xml:lang': 'es', '$': 'color'},
               {'@xml:lang': 'en', '$': 'colour'},
               {'@xml:lang': 'fr', '$': 'couleur'}],
              'altLabel': {'@xml:lang': 'en', '$': 'color'},
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtvsFBSmOKN2|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'}],
              'definition': {'@xml:lang': 'fr'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12499414z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Blanc'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119591110',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Couleurs'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85146459',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'White'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119348239',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Couleur'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Robe'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11959338k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Photométrie'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119582471',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ondes lumineuses'},
                {'@xml:lang': 'fr', '$': 'Rayons lumineux'},
                {'@xml:lang': 'fr', '$': 'Rayonnement optique'},
                {'@xml:lang': 'fr', '$': 'Rayonnement visible'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976012r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Optique'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005563',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Color'},
            'altLabel': {'@xml:lang': 'en', '$': 'Coloration'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526449',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Color'},
            'label': {'@xml:lang': 'es', '$': 'Color'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Colores'},
             {'@xml:lang': 'es', '$': 'Cromática'},
             {'@xml:lang': 'es', '$': 'Cromatología'}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-623',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Couleur'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Polychromie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-623',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '080 Sciences exactes et appliquées|Physique|Lumière|Couleur'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1571',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'colour'},
             {'@xml:lang': 'es', '$': 'color'},
             {'@xml:lang': 'fr', '$': 'couleur'}],
            'definition': {'@xml:lang': 'en',
             '$': 'An attribute of things that results from the light they reflect, transmit, or emit in so far as this light causes a visual sensation that depends on its wavelengths.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6229',
              'prefLabel': [{'@xml:lang': 'en', '$': 'physical property'},
               {'@xml:lang': 'es', '$': 'propiedad física'},
               {'@xml:lang': 'fr', '$': 'propriété physique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Property of a compound that can change without involving a change in chemical composition.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_1773'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618',
            'prefLabel': [{'@xml:lang': 'es', '$': 'color'},
             {'@xml:lang': 'en', '$': 'colour'},
             {'@xml:lang': 'fr', '$': 'couleur'}],
            'altLabel': {'@xml:lang': 'en', '$': 'color'},
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtvsFBSmOKN2|http://ark.frantiq.fr/ark:/26678/pcrtu5RUM9S618'}],
            'definition': {'@xml:lang': 'fr'}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11979168c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes, esquisses, etc.'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Carnets'}]},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001659',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Notebooks, sketchbooks, etc'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sketchbooks'}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12369740j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cahiers'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Cahiers d'exercices"},
             {'@xml:lang': 'fr', '$': 'Calepins'},
             {'@xml:lang': 'fr', '$': 'Notes (recueils)'},
             {'@xml:lang': 'fr', '$': 'Bloc-notes'},
             {'@xml:lang': 'fr', '$': 'Mémorandums (cahiers)'},
             {'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Mémentos'},
             {'@xml:lang': 'fr', '$': 'Carnets'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
               {'@xml:lang': 'fr', '$': 'Livre'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092792',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Notebooks'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Exercise books'},
             {'@xml:lang': 'en', '$': 'Sketchbooks'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12010336g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Photographies'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Phototypes'},
             {'@xml:lang': 'fr', '$': 'Photographies en couleurs'},
             {'@xml:lang': 'fr', '$': 'Images photographiques'},
             {'@xml:lang': 'fr', '$': 'Oeuvres photographiques'},
             {'@xml:lang': 'fr', '$': 'Objets photographiques'},
             {'@xml:lang': 'fr', '$': 'Photographies en noir et blanc'},
             {'@xml:lang': 'fr', '$': 'Clichés photographiques'},
             {'@xml:lang': 'fr', '$': 'Vues (photographies)'},
             {'@xml:lang': 'fr', '$': 'Patrimoine photographique'},
             {'@xml:lang': 'fr', '$': 'Documents photographiques'},
             {'@xml:lang': 'fr', '$': 'Photos'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977261r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Non-livres'}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001240',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Photographs'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11948204j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Portes'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Portes d'entrée"},
             {'@xml:lang': 'fr', '$': 'Issues'},
             {'@xml:lang': 'fr', '$': 'Portes de sortie'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb125704047',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Baies (architecture)'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Ouvertures (architecture)'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2366'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005689',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Doors'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119750773',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sud (point cardinal)'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Sud'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12322811q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Points cardinaux'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Rose des vents'}}}},
           {'@count': '2',
            '@uri': 'http://GeoEthno#SAHARA',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sahara'},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GeoEthno'}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11933572f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sahara'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Al-Ṣahrā ̒'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119308460',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Afrique du Nord'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Barbarie (région)'},
                {'@xml:lang': 'fr', '$': 'Afrique méditerranéenne'},
                {'@xml:lang': 'fr', '$': 'Maghrib'},
                {'@xml:lang': 'fr', '$': 'Afrique septentrionale'},
                {'@xml:lang': 'fr', '$': 'Marhrib'},
                {'@xml:lang': 'fr', '$': 'Barbaresques, États'},
                {'@xml:lang': 'fr', '$': 'Moghreb'},
                {'@xml:lang': 'fr', '$': 'Afrique (nord)'},
                {'@xml:lang': 'fr', '$': 'Afrique blanche'},
                {'@xml:lang': 'fr', '$': 'États Barbaresques'},
                {'@xml:lang': 'fr', '$': 'Maghreb'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120085880'}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119615806',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enregistrements sonores'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Phonogrammes'},
             {'@xml:lang': 'fr', '$': 'Documents sonores'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11949586s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Documents audiovisuels'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Techniques audiovisuelles'},
               {'@xml:lang': 'fr', '$': 'Moyens audiovisuels'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85125391',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sound recordings'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Audiorecordings'},
             {'@xml:lang': 'en', '$': 'Records, Phonograph'},
             {'@xml:lang': 'en', '$': 'Sound discs'},
             {'@xml:lang': 'en', '$': 'Discs, Audio'},
             {'@xml:lang': 'en', '$': 'Recordings, Sound'},
             {'@xml:lang': 'en', '$': 'Audio discs'},
             {'@xml:lang': 'en', '$': 'Audio recordings'},
             {'@xml:lang': 'en', '$': 'Phonorecords'},
             {'@xml:lang': 'en', '$': 'Records, Sound'},
             {'@xml:lang': 'en', '$': 'Recordings, Audio'},
             {'@xml:lang': 'en', '$': 'Disks, Sound'},
             {'@xml:lang': 'en', '$': 'Phonograph records'},
             {'@xml:lang': 'en', '$': 'Phonodiscs'},
             {'@xml:lang': 'en', '$': 'Discs, Sound'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318927r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Diplomatique'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Diplômes (actes royaux)'},
             {'@xml:lang': 'fr', '$': 'Documents'},
             {'@xml:lang': 'fr', '$': 'Diplômes (diplomatique)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133191133',
               'prefLabel': {'@xml:lang': 'fr',
                '$': "Sciences auxiliaires de l'histoire"},
               'altLabel': {'@xml:lang': 'fr', '$': 'Sciences historiques'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133188651'}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85038194',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Diplomatics'},
            'altLabel': {'@xml:lang': 'en', '$': 'Documents'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13324505k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Numérisation'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Digitalisation (informatique)'},
             {'@xml:lang': 'fr', '$': 'Discrétisation (informatique)'},
             {'@xml:lang': 'fr', '$': 'Conversion en données numériques'},
             {'@xml:lang': 'fr', '$': 'Codage numérique'},
             {'@xml:lang': 'fr', '$': 'Conservation par numérisation'},
             {'@xml:lang': 'fr', '$': 'Conservation numérique'},
             {'@xml:lang': 'fr', '$': 'Conservation électronique'},
             {'@xml:lang': 'fr', '$': 'Numérisation des documents'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12289141g',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Gestion électronique de documents'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'GEIDE'},
               {'@xml:lang': 'fr',
                '$': 'Systèmes de gestion électronique de documents'},
               {'@xml:lang': 'fr',
                '$': "Gestion électronique d'information et de documents existants"},
               {'@xml:lang': 'fr', '$': 'GED'},
               {'@xml:lang': 'fr',
                '$': 'Visualisation de documents, Systèmes de'},
               {'@xml:lang': 'fr', '$': 'Diffusion électronique de documents'},
               {'@xml:lang': 'fr', '$': 'Documentique'},
               {'@xml:lang': 'fr', '$': 'SGED'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002011497',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Digitization'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11961031m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Finances'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ressources financières'},
             {'@xml:lang': 'fr', '$': 'Moyens financiers'},
             {'@xml:lang': 'fr', '$': 'Financement'},
             {'@xml:lang': 'fr', '$': 'Milieux financiers'},
             {'@xml:lang': 'fr', '$': 'Finance'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319296w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Affaires'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
                {'@xml:lang': 'fr', '$': 'Économie'},
                {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
                {'@xml:lang': 'fr', '$': 'Analyse économique'},
                {'@xml:lang': 'fr', '$': 'Science économique'},
                {'@xml:lang': 'fr', '$': 'Économique'},
                {'@xml:lang': 'fr', '$': 'Théorie économique'},
                {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
                {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2901'}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX524839',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Finanzas'},
            'label': {'@xml:lang': 'es', '$': 'Finanzas'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007885',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Finance'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Finance, commerce, confiscations, etc'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3205',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'financing'},
             {'@xml:lang': 'es', '$': 'financiación'},
             {'@xml:lang': 'fr', '$': 'financement'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Procurement of monetary resources or credit to operate a business or acquire assets.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/3194',
              'prefLabel': [{'@xml:lang': 'en', '$': 'finances'},
               {'@xml:lang': 'es', '$': 'finanzas'},
               {'@xml:lang': 'fr', '$': 'finances'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The monetary resources or revenue of a government, company, organization or individual.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_29785'},
             {'@uri': 'http://eurovoc.europa.eu/1000'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13534224k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Couverture maladie universelle'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'AMU'},
             {'@xml:lang': 'fr', '$': 'Assurance maladie généralisée'},
             {'@xml:lang': 'fr', '$': 'Assurances populaires'},
             {'@xml:lang': 'fr', '$': 'CMU'},
             {'@xml:lang': 'fr', '$': 'Assurance maladie universelle'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11950045v',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Assurance-maladie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Prestations de maladie'},
                {'@xml:lang': 'fr', '$': 'Allocations de maladie'},
                {'@xml:lang': 'fr',
                 '$': 'Indemnités journalières de maladie'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11967213p',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Droit à la santé'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Protection de la santé, Droit à la'},
                {'@xml:lang': 'fr', '$': 'Soins médicaux, Droit aux'},
                {'@xml:lang': 'fr', '$': 'Santé, Droit à la'},
                {'@xml:lang': 'fr', '$': 'Droit aux soins médicaux'},
                {'@xml:lang': 'fr', '$': 'Droit à la protection de la santé'},
                {'@xml:lang': 'fr', '$': 'Accès aux soins'},
                {'@xml:lang': 'fr', '$': 'Accès à la santé'}]}}]},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-952',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': "Fonds d'archives"},
            'altLabel': {'@xml:lang': 'fr', '$': 'Archives'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-952'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Information'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318572g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Archives'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Archives courantes'},
             {'@xml:lang': 'fr', '$': "Documents d'archives"},
             {'@xml:lang': 'fr', '$': 'Dossiers'},
             {'@xml:lang': 'fr', '$': 'Archives en formation'},
             {'@xml:lang': 'fr', '$': 'Archives administratives'},
             {'@xml:lang': 'fr', '$': 'Archives historiques'},
             {'@xml:lang': 'fr', '$': 'Archives définitives'},
             {'@xml:lang': 'fr', '$': 'Archives (documents)'},
             {'@xml:lang': 'fr', '$': 'Archives déclassifiées'},
             {'@xml:lang': 'fr', '$': "Collections d'archives"},
             {'@xml:lang': 'fr', '$': 'Archives intermédiaires'},
             {'@xml:lang': 'fr', '$': 'Archives communicables'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133184637',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133190710',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Patrimoine culturel'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Trésors artistiques'},
                {'@xml:lang': 'fr', '$': 'Patrimonialisation'},
                {'@xml:lang': 'fr', '$': 'Patrimoine immobilier (culture)'},
                {'@xml:lang': 'fr', '$': 'Patrimoine immatériel'},
                {'@xml:lang': 'fr', '$': 'Patrimoine ethnologique'},
                {'@xml:lang': 'fr', '$': 'Patrimoine ethnographique'},
                {'@xml:lang': 'fr', '$': 'Richesses artistiques'},
                {'@xml:lang': 'fr', '$': 'Héritage culturel'},
                {'@xml:lang': 'fr', '$': 'Patrimoine (culture)'},
                {'@xml:lang': 'fr', '$': 'Biens culturels'},
                {'@xml:lang': 'fr', '$': 'Patrimoine mobilier (culture)'},
                {'@xml:lang': 'fr', '$': 'Patrimoine artistique'},
                {'@xml:lang': 'fr', '$': 'Patrimoine historique'},
                {'@xml:lang': 'fr', '$': 'Patrimoine intellectuel'},
                {'@xml:lang': 'fr', '$': 'Patrimoine national (culture)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133188651'}}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-254'}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001262',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Archives'}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttUONyH0Uai',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'archives'},
             {'@xml:lang': 'fr', '$': 'archives'},
             {'@xml:lang': 'es', '$': 'archivos'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrttUONyH0Uai',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|organización de la investigación|archivos'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|archives'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'organisation de la recherche'},
               {'@xml:lang': 'es', '$': 'organización de la investigación'},
               {'@xml:lang': 'en', '$': 'organization of research'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120348963',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Ethnologues'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Ethnographes'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935988d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Anthropologues'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85045197',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Ethnologists'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-538',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collectivité territoriale'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Collectivité locale'},
             {'@xml:lang': 'fr', '$': 'Municipalité'},
             {'@xml:lang': 'fr', '$': 'Commune'},
             {'@xml:lang': 'fr', '$': 'Conseil régional'},
             {'@xml:lang': 'fr', '$': 'Conseil général'},
             {'@xml:lang': 'fr', '$': 'Région'},
             {'@xml:lang': 'fr', '$': 'Département'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-538'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Pouvoirs publics'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931827z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Culture'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Vie culturelle'},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-786'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85034755',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Culture'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Cultural sociology'},
             {'@xml:lang': 'en', '$': 'Culture--Social aspects'},
             {'@xml:lang': 'en', '$': 'Sociology of culture'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Cultura'},
             {'@xml:lang': 'fr', '$': 'culture'},
             {'@xml:lang': 'en', '$': 'Culture'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filosofía|filosofía (noción)|naturaleza/cultura|Cultura'}}],
            'definition': {'@xml:lang': 'fr',
             '$': "En philosophie désigne ce qui est différent de la nature, c'est-à-dire ce qui est de l'ordre de l'acquis et non de l'inné. En sociologie,  désigne ce qui est commun à un groupe d'individus et ce qui le soude, c'est-à-dire ce qui est appris, transmis, produit et créé et englobe les arts, les lettres, les sciences, les modes de vie, les droits fondamentaux de l'être humain, les systèmes de valeurs, les traditions et les croyances. (d'après Wikipédia)"},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
               'prefLabel': [{'@xml:lang': 'en',
                 '$': 'civilization processes'},
                {'@xml:lang': 'fr', '$': 'faits de civilisation'},
                {'@xml:lang': 'es', '$': 'hechos de civilización'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|histoire-civilisation|faits de civilisation'}}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D',
               'prefLabel': [{'@xml:lang': 'es', '$': 'naturaleza/cultura'},
                {'@xml:lang': 'en', '$': 'nature/culture'},
                {'@xml:lang': 'fr', '$': 'nature/culture'}],
               'altLabel': {'@xml:lang': 'fr', '$': 'culture/nature'}}}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1899',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'cultivation'},
             {'@xml:lang': 'es', '$': 'cultivo'},
             {'@xml:lang': 'fr', '$': 'culture'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The practice of growing and nurturing plants outside of their wild habitat (i.e., in gardens, nurseries, arboreta).'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/232',
              'prefLabel': [{'@xml:lang': 'en', '$': 'agriculture'},
               {'@xml:lang': 'es', '$': 'agricultura'},
               {'@xml:lang': 'fr', '$': 'agriculture'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The production of plants and animals useful to man, involving soil cultivation and the breeding and management of crops and livestock.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2018'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11932940p',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Patrimoine'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Droits patrimoniaux'},
             {'@xml:lang': 'fr', '$': 'Droit patrimonial'},
             {'@xml:lang': 'fr', '$': 'Droits pécuniaires'},
             {'@xml:lang': 'fr', '$': 'Patrimoine (droit)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12649852x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Droit civil'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Droit commun (droit privé)'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15071052s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Droits subjectifs'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Situations juridiques subjectives'},
                {'@xml:lang': 'fr', '$': 'Intérêt juridiquement protégé'},
                {'@xml:lang': 'fr', '$': 'Prérogatives individuelles'},
                {'@xml:lang': 'fr', '$': 'Droit subjectif'},
                {'@xml:lang': 'fr', '$': 'Prérogatives juridiques'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977007d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Richesse'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Opulence'},
                {'@xml:lang': 'fr', '$': 'Patrimoine économique national'},
                {'@xml:lang': 'fr', '$': 'Fortune'},
                {'@xml:lang': 'fr', '$': 'Biens temporels'},
                {'@xml:lang': 'fr', '$': 'Aisance'},
                {'@xml:lang': 'fr', '$': 'Richesse nationale'},
                {'@xml:lang': 'fr', '$': 'Abondance'},
                {'@xml:lang': 'fr', '$': 'Répartition des richesses'},
                {'@xml:lang': 'fr', '$': 'Richesses'},
                {'@xml:lang': 'fr', '$': 'Grandes fortunes'},
                {'@xml:lang': 'fr', '$': 'Patrimoine national'},
                {'@xml:lang': 'fr', '$': 'Fortunes'},
                {'@xml:lang': 'fr', '$': 'Avoir'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00005640',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Estate'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX555894',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Patrimonio'},
            'label': {'@xml:lang': 'es', '$': 'Patrimonio'},
            'altLabel': {'@xml:lang': 'es', '$': 'Derechos patrimoniales'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1hEGf8Mxjm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'patrimoine'},
             {'@xml:lang': 'es', '$': 'patrimonio'},
             {'@xml:lang': 'en', '$': 'patrimony'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrt26sQARUUhp|http://ark.frantiq.fr/ark:/26678/pcrtGpaHedh79M|http://ark.frantiq.fr/ark:/26678/pcrt1hEGf8Mxjm',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|derecho|derecho privado|derecho de propiedad|propiedad|patrimonio'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ensemble des biens hérités des ascendants ou réunis et conservés pour être transmis aux descendants. (TLF). - Ne pas utiliser pour le patrimoine culturel !'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGpaHedh79M',
              'prefLabel': [{'@xml:lang': 'en', '$': 'property'},
               {'@xml:lang': 'es', '$': 'propiedad'},
               {'@xml:lang': 'fr', '$': 'propriété'}],
              'altLabel': {'@xml:lang': 'en', '$': 'estate'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrt26sQARUUhp|http://ark.frantiq.fr/ark:/26678/pcrtGpaHedh79M',
               'expandedLabel': {'@xml:lang': 'es',
                '$': 'Tema|derecho|derecho privado|derecho de propiedad|propiedad'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Droit d'user, de jouir et de disposer d'une chose d'une manière exclusive et absolue sous les restrictions établies par la loi (Robert)"}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1480',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Patrimoine'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-521|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1480',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Civilisation|Patrimoine'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-521',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment universitaire'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Université'},
             {'@xml:lang': 'fr', '$': 'Faculté'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Campus'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Cité universitaire'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '012 Typologie des bâtiments et équipements divers|Campus'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0bOnESvRsW',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'groupe associatif'},
             {'@xml:lang': 'es', '$': 'grupo asociativo'},
             {'@xml:lang': 'en', '$': 'sodality'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'association'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrt0bOnESvRsW'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N',
              'prefLabel': [{'@xml:lang': 'en', '$': 'social life'},
               {'@xml:lang': 'es', '$': 'vida social'},
               {'@xml:lang': 'fr', '$': 'vie sociale'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/607',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'association'},
             {'@xml:lang': 'es', '$': 'asociaciones'},
             {'@xml:lang': 'fr', '$': 'association'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A body of persons associated for the regulation of a common economic activity by means of a special organization.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7796',
              'prefLabel': [{'@xml:lang': 'en', '$': 'social group'},
               {'@xml:lang': 'es', '$': 'grupos sociales'},
               {'@xml:lang': 'fr', '$': 'groupe social'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A collection of people who interact with one another and share a certain feeling of unity.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_37955'},
             {'@uri': 'http://eurovoc.europa.eu/2944'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12065684d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Amis et relations'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Relations (personnes)'},
             {'@xml:lang': 'fr', '$': 'Connaissances (personnes)'},
             {'@xml:lang': 'fr', '$': 'Copains'},
             {'@xml:lang': 'fr', '$': 'Collègues'},
             {'@xml:lang': 'fr', '$': 'Camarades'},
             {'@xml:lang': 'fr', '$': 'Amis'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120760052',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Contemporains'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00005818',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Friends and associates'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Relations with friends and associates'},
             {'@xml:lang': 'en', '$': 'Associates'},
             {'@xml:lang': 'en', '$': 'Companions'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119373318',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Amitié'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Affection'},
             {'@xml:lang': 'fr', '$': 'Camaraderie'},
             {'@xml:lang': 'fr', '$': 'Amis'},
             {'@xml:lang': 'fr', '$': 'Entente'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937314p',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Morale pratique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Morale privée'},
                {'@xml:lang': 'fr', '$': 'Morale individuelle'},
                {'@xml:lang': 'fr', '$': 'Morale personnelle'},
                {'@xml:lang': 'fr', '$': 'Morale de tous les jours'},
                {'@xml:lang': 'fr', '$': 'Morale quotidienne'},
                {'@xml:lang': 'fr', '$': 'Morale spéciale'},
                {'@xml:lang': 'fr', '$': 'Conduite de la vie (morale)'},
                {'@xml:lang': 'fr', '$': 'Moralité pratique'},
                {'@xml:lang': 'fr',
                 '$': 'Éthique appliquée à la vie quotidienne'},
                {'@xml:lang': 'fr',
                 '$': 'Morale appliquée à la vie quotidienne'},
                {'@xml:lang': 'fr', '$': 'Morale au quotidien'},
                {'@xml:lang': 'fr', '$': 'Morale de la vie quotidienne'},
                {'@xml:lang': 'fr', '$': 'Morale domestique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119458243',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Relations humaines'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Lien social'},
                {'@xml:lang': 'fr', '$': 'Relations sociales'},
                {'@xml:lang': 'fr', '$': 'Rapports humains'},
                {'@xml:lang': 'fr', '$': 'Sociabilité'},
                {'@xml:lang': 'fr', '$': 'Rapports sociaux'},
                {'@xml:lang': 'fr', '$': 'Rencontres interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Relations interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Liens sociaux'},
                {'@xml:lang': 'fr', '$': 'Rapports interpersonnels'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940600b',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Sentiments'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Sensibilité'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524756',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Amistad'},
            'label': {'@xml:lang': 'es', '$': 'Amistad'},
            'altLabel': {'@xml:lang': 'es', '$': 'Amigos'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85051992',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Friendship'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Affection'},
             {'@xml:lang': 'en', '$': 'Friendliness'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgndE5dVqQc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'enciclopedia'},
             {'@xml:lang': 'en', '$': 'encyclopedia'},
             {'@xml:lang': 'fr', '$': 'encyclopédie'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrtgndE5dVqQc',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|enciclopedia'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-802',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Encyclopédie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-802',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '062 Information - communication|Information|Documentation|Encyclopédie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2696',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'encyclopaedia'},
             {'@xml:lang': 'es', '$': 'enciclopedia'},
             {'@xml:lang': 'fr', '$': 'encyclopédie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A comprehensive, often multivolume, reference work containing articles on a wide rage of subjects or on various aspects of a particular field, usually, alphabetically arranged.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
              'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
               {'@xml:lang': 'es', '$': 'tipo de documento'},
               {'@xml:lang': 'fr', '$': 'type de document'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4137'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318623j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Berbères'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Amazigh'},
             {'@xml:lang': 'fr', '$': 'Amazirh'},
             {'@xml:lang': 'fr', '$': 'Berbère'},
             {'@xml:lang': 'fr', '$': 'Imazighen'},
             {'@xml:lang': 'fr', '$': 'Peuples berbères'},
             {'@xml:lang': 'fr', '$': 'Civilisation berbère'},
             {'@xml:lang': 'fr', '$': 'Imazirhen'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119799108'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85013290',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Berbers'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Mazigh'},
             {'@xml:lang': 'en', '$': 'Imazighan'},
             {'@xml:lang': 'en', '$': 'Amazigh'},
             {'@xml:lang': 'en', '$': 'Imazighen'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576461',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Bereberes'},
            'label': {'@xml:lang': 'es', '$': 'Bereberes'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Amazighs'},
             {'@xml:lang': 'es', '$': 'Bereberes (Pueblo africano)'},
             {'@xml:lang': 'es', '$': 'Bereberes--Civilización'},
             {'@xml:lang': 'es', '$': 'Civilización bereber'},
             {'@xml:lang': 'es', '$': 'Imazighen'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13319451g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gestion des documents'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Documents, Gestion des'},
             {'@xml:lang': 'fr',
              '$': 'Gestion des archives courantes et intermédiaires'},
             {'@xml:lang': 'fr', '$': 'Records management'},
             {'@xml:lang': 'fr', '$': "Gestion des documents d'archives"},
             {'@xml:lang': 'fr', '$': 'Gestion documentaire'},
             {'@xml:lang': 'fr',
              '$': 'Archives courantes et intermédiaires, Gestion des'},
             {'@xml:lang': 'fr', '$': 'Gestion de documents'},
             {'@xml:lang': 'fr', '$': 'Archivage'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133184021',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Archivistique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11950206h',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Gestion'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences de la gestion'},
                {'@xml:lang': 'fr', '$': 'Gestion, Sciences de la'},
                {'@xml:lang': 'fr', '$': 'Sciences de gestion'},
                {'@xml:lang': 'fr', '$': 'Techniques de gestion'},
                {'@xml:lang': 'fr', '$': 'Direction'},
                {'@xml:lang': 'fr', '$': 'Management'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4577063',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Gestión documental'},
            'label': {'@xml:lang': 'es', '$': 'Gestión documental'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Documentos--Gestión'},
             {'@xml:lang': 'es', '$': 'Documentos administrativos--Gestión'},
             {'@xml:lang': 'es', '$': 'Gestión de documentos'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85111941',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Records--Management'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Disposition of records'},
             {'@xml:lang': 'en', '$': 'Records management'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2007102276',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Business records--Management'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2284',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'documentation'},
             {'@xml:lang': 'es', '$': 'documentación'},
             {'@xml:lang': 'fr', '$': 'documentation'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4303',
              'prefLabel': [{'@xml:lang': 'en', '$': 'information'},
               {'@xml:lang': 'es', '$': 'información'},
               {'@xml:lang': 'fr', '$': 'information'}],
              'definition': {'@xml:lang': 'en',
               '$': 'All facts, ideas or imaginative works of the mind which have been communicated, published or distributed formally or informally in any format, or the knowledge that is  communicated or received.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_2350'},
             {'@uri': 'http://eurovoc.europa.eu/494'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133184637',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11965196f',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "Sciences de l'information"},
              'altLabel': [{'@xml:lang': 'fr', '$': 'SIC'},
               {'@xml:lang': 'fr', '$': 'Sciences de la documentation'},
               {'@xml:lang': 'fr', '$': 'Science de la documentation'},
               {'@xml:lang': 'fr', '$': "Science de l'information"},
               {'@xml:lang': 'fr', '$': "Technique de l'information"},
               {'@xml:lang': 'fr', '$': "Information, Sciences de l'"},
               {'@xml:lang': 'fr',
                '$': "Sciences de l'information et de la communication"}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005687',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Documentation'}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Information'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'documentación'},
             {'@xml:lang': 'fr', '$': 'documentation'},
             {'@xml:lang': 'en', '$': 'source material'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'enregistrement-diffusion'},
               {'@xml:lang': 'es', '$': 'grabación - difusión'},
               {'@xml:lang': 'en', '$': 'record-diffusion'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11932092f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': "Traitement d'images"},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Traitement des images'},
             {'@xml:lang': 'fr', '$': 'Images, Traitement des'},
             {'@xml:lang': 'fr', '$': "Analyse d'images"}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119415218',
               'prefLabel': {'@xml:lang': 'fr',
                '$': "Traitement optique de l'information"},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Information, Traitement optique de l'"},
                {'@xml:lang': 'fr', '$': 'Opto-informatique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120658363',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Imagerie (technique)'},
               'altLabel': [{'@xml:lang': 'fr', '$': "Images, Systèmes d'"},
                {'@xml:lang': 'fr', '$': "Systèmes d'images"},
                {'@xml:lang': 'fr', '$': "Systèmes de formation d'images"},
                {'@xml:lang': 'fr', '$': 'Imageurs'},
                {'@xml:lang': 'fr', '$': 'Imagerie scientifique'},
                {'@xml:lang': 'fr',
                 '$': "Générateurs d'images sur support matériel"}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528057',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Proceso de imágenes'},
            'label': {'@xml:lang': 'es', '$': 'Proceso de imágenes'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Dibujo--Tratamiento electrónico'},
             {'@xml:lang': 'es', '$': 'Imágenes--Tratamiento electrónico'},
             {'@xml:lang': 'es', '$': 'Procesado de imágenes'},
             {'@xml:lang': 'es', '$': 'Procesamiento de imágenes'},
             {'@xml:lang': 'es', '$': 'Tratamiento electrónico de imágenes'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85064446',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Image processing'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Pictorial data processing'},
             {'@xml:lang': 'en', '$': 'Picture processing'},
             {'@xml:lang': 'en', '$': 'Processing, Image'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119767371',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Information'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Information de presse'},
             {'@xml:lang': 'fr', '$': 'Nouvelles (journalisme)'},
             {'@xml:lang': 'fr', '$': 'Informations'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002303',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Communication'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13505219m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enquêtes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Sondages'},
             {'@xml:lang': 'fr', '$': 'Collectes (enquêtes)'},
             {'@xml:lang': 'fr', '$': 'Investigations'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX535906',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Encuestas'},
            'label': {'@xml:lang': 'es', '$': 'Encuestas'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001768',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Surveys'},
            'altLabel': {'@xml:lang': 'en', '$': 'Land surveys'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'empleo'},
             {'@xml:lang': 'fr', '$': 'emploi'},
             {'@xml:lang': 'en', '$': 'occupation'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'emploi-fonction'},
             {'@xml:lang': 'fr', '$': 'fonction'},
             {'@xml:lang': 'fr', '$': 'fonction-emploi'},
             {'@xml:lang': 'fr', '$': 'métier'},
             {'@xml:lang': 'fr', '$': 'profession'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9|http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
              'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
               {'@xml:lang': 'fr', '$': 'travail'},
               {'@xml:lang': 'en', '$': 'work'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318325d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bibliothèques'},
            'altLabel': {'@xml:lang': 'fr',
             '$': 'Bibliothèques (institutions)'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11981761w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Équipements culturels'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Équipements socio-culturels'},
                {'@xml:lang': 'fr', '$': 'Complexes culturels'},
                {'@xml:lang': 'fr', '$': 'Institutions culturelles'},
                {'@xml:lang': 'fr', '$': 'Établissements culturels'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb126539899',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Établissements publics'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Établissements d'utilité publique"},
                {'@xml:lang': 'fr',
                 '$': "Reconnaissance d'utilité publique"}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006394',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Libraries'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3983',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'history'},
             {'@xml:lang': 'es', '$': 'historia'},
             {'@xml:lang': 'fr', '$': 'histoire'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3635'},
             {'@uri': 'http://eurovoc.europa.eu/1245'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire'},
             {'@xml:lang': 'es', '$': 'historia'},
             {'@xml:lang': 'en', '$': 'history'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|histoire'}},
            'definition': {'@xml:lang': 'fr'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
               {'@xml:lang': 'es', '$': 'historia-civilización'},
               {'@xml:lang': 'en', '$': 'history-civilization'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
              'definition': {'@xml:lang': 'fr',
               '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
             {'@xml:lang': 'fr', '$': 'Sciences historiques'},
             {'@xml:lang': 'fr', '$': 'Science historique'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
               {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
               {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005024',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'History'},
            'altLabel': {'@xml:lang': 'en', '$': 'Frontier troubles'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525283',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Historia'},
            'label': {'@xml:lang': 'es', '$': 'Historia'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Histoire'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16620091k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Humanités digitales'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Humanités électroniques'},
             {'@xml:lang': 'fr', '$': 'Humanités numériques'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933226f',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir et érudition'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Savoirs'},
                {'@xml:lang': 'fr', '$': 'Connaissances'},
                {'@xml:lang': 'fr', '$': 'Érudition'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133328054',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Société numérique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Société informatisée'},
                {'@xml:lang': 'fr', '$': 'Société du savoir'},
                {'@xml:lang': 'fr', '$': "Société de l'information"},
                {'@xml:lang': 'fr', '$': 'Numérique, Société'},
                {'@xml:lang': 'fr', '$': 'Révolution numérique'},
                {'@xml:lang': 'fr', '$': 'Société digitale'},
                {'@xml:lang': 'fr', '$': 'Société de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Révolution digitale'},
                {'@xml:lang': 'fr', '$': 'Société en réseaux'}]}}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14920',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'line'},
             {'@xml:lang': 'es', '$': 'línea'},
             {'@xml:lang': 'fr', '$': 'ligne'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Term used in GIS technologies in the vector type of internal data organization: spatial data are divided into point, line and polygon types. In most cases, point entities (nodes) are specified directly as coordinate pairs, with lines (arcs or edges) represented as chains of points. Regions are similarly defined in terms of the lines which form their boundaries. Some vector GIS store information in the form of points, line segments and point pairs; others maintain closed lists of points defining polygon regions. Vector structures are especially suited to storing definitions of spatial objects for which sharp boundaries exist or can be imposed.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
              'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
               {'@xml:lang': 'es', '$': 'parámetro'},
               {'@xml:lang': 'fr', '$': 'paramètre'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13513860f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Septembre'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318617m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mois'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001004502',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'September'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Information'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '062 Information - communication|Information'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '062 Information - communication'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4303',
            'prefLabel': [{'@xml:lang': 'en', '$': 'information'},
             {'@xml:lang': 'es', '$': 'información'},
             {'@xml:lang': 'fr', '$': 'information'}],
            'definition': {'@xml:lang': 'en',
             '$': 'All facts, ideas or imaginative works of the mind which have been communicated, published or distributed formally or informally in any format, or the knowledge that is  communicated or received.'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLQniqVZQLR',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'diffusion'},
             {'@xml:lang': 'fr', '$': 'diffusion'},
             {'@xml:lang': 'es', '$': 'difusión'}],
            'altLabel': {'@xml:lang': 'en', '$': 'broadcasting'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrtFlZ2UyH7Bb|http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM|http://ark.frantiq.fr/ark:/26678/pcrtLQniqVZQLR',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|vie économique|économie (faits)|mode de distribution|diffusion'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'mode de distribution'},
               {'@xml:lang': 'en', '$': 'mode of distribution'},
               {'@xml:lang': 'es', '$': 'modo de distribución'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrtFlZ2UyH7Bb|http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2186',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'diffusion'},
             {'@xml:lang': 'es', '$': 'difusión'},
             {'@xml:lang': 'fr', '$': 'diffusion'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The spontaneous movement and scattering of particles (atoms and molecules), of liquid, gases, and solids.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6228',
              'prefLabel': [{'@xml:lang': 'en', '$': 'physical process'},
               {'@xml:lang': 'es', '$': 'procesos físicos'},
               {'@xml:lang': 'fr', '$': 'processus physique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A continuous action or series of changes which alters the material form of matter.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_24936'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119409512',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Illustrations, images, etc.'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Images'},
             {'@xml:lang': 'fr', '$': 'Documents iconographiques'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931755x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication visuelle'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Image, Communication par l'"},
               {'@xml:lang': 'fr', '$': 'Communication graphique'},
               {'@xml:lang': 'fr', '$': "Communication par l'image"}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85102012',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Pictures'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Pictorial representations'},
             {'@xml:lang': 'en', '$': 'Iconography'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX530997',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Imágenes'},
            'label': {'@xml:lang': 'es', '$': 'Imágenes'},
            'altLabel': {'@xml:lang': 'es',
             '$': 'Ilustraciones, imágenes, etc.'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1T6wfJWaaF',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Touareg'},
             {'@xml:lang': 'fr', '$': 'Touareg'},
             {'@xml:lang': 'es', '$': 'Tuareg'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Touaregs'},
             {'@xml:lang': 'en', '$': 'Tuareg'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG|http://ark.frantiq.fr/ark:/26678/pcrt6dOfSUnkXu|http://ark.frantiq.fr/ark:/26678/pcrt1T6wfJWaaF',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Peuples|Peuples|Africains|Touareg'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Population nomade du Sahara d'origine berbère, fortement d'Arabes et de Noirs, parlant berbère (Rob.2)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6dOfSUnkXu',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Africains'},
               {'@xml:lang': 'es', '$': 'Africanos'},
               {'@xml:lang': 'en', '$': 'Africans'}],
              'altLabel': {'@xml:lang': 'fr', '$': "Peuples d'Afrique"},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG|http://ark.frantiq.fr/ark:/26678/pcrt6dOfSUnkXu',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Peuples|Peuples|Africains'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-93',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Animal'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Zoologie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-93'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '080 Sciences exactes et appliquées|Biologie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119328694',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Animaux'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Règne animal'},
             {'@xml:lang': 'fr', '$': 'Bêtes'},
             {'@xml:lang': 'fr', '$': 'Faune'},
             {'@xml:lang': 'fr', '$': 'Animal'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527383',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fauna'},
            'label': {'@xml:lang': 'es', '$': 'Fauna'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85005249',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Animals'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Fauna'},
             {'@xml:lang': 'en', '$': 'Native fauna'},
             {'@xml:lang': 'en', '$': 'Native animals'},
             {'@xml:lang': 'en', '$': 'Beasts'},
             {'@xml:lang': 'en', '$': 'Wildlife'},
             {'@xml:lang': 'en', '$': 'Wild animals'},
             {'@xml:lang': 'en', '$': 'Animal kingdom'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524601',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Animales'},
            'label': {'@xml:lang': 'es', '$': 'Animales'},
            'altLabel': {'@xml:lang': 'es', '$': 'Reino animal'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/450',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'animal'},
             {'@xml:lang': 'es', '$': 'animales'},
             {'@xml:lang': 'fr', '$': 'animal'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Any living organism characterized by voluntary movement, the possession of cells with noncellulose cell walls and specialized sense organs enabling rapid response to stimuli, and the ingestion of complex organic substances such as plants and other animals.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5914',
              'prefLabel': [{'@xml:lang': 'en', '$': 'organism'},
               {'@xml:lang': 'es', '$': 'organismos'},
               {'@xml:lang': 'fr', '$': 'organisme'}],
              'definition': {'@xml:lang': 'en',
               '$': 'An individual constituted to carry out all life functions.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_444'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-682',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Désert'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-682',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '030 Paysage - environnement|Environnement|Environnement naturel|Désert'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Environnement naturel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Espace naturel'},
               {'@xml:lang': 'fr', '$': 'Milieu naturel'},
               {'@xml:lang': 'fr', '$': 'Biosphère'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtshBq5ZfbdH',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'desert'},
             {'@xml:lang': 'fr', '$': 'désert'},
             {'@xml:lang': 'es', '$': 'desierto'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183|http://ark.frantiq.fr/ark:/26678/pcrtshBq5ZfbdH',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|géographie|géographie physique|milieu végétal|désert'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183',
              'prefLabel': [{'@xml:lang': 'es', '$': 'entorno vegetal'},
               {'@xml:lang': 'fr', '$': 'milieu végétal'},
               {'@xml:lang': 'en', '$': 'vegetational environment'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'végétation'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie physique|milieu végétal'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2103',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'desert'},
             {'@xml:lang': 'es', '$': 'desiertos'},
             {'@xml:lang': 'fr', '$': 'désert'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A wide, open, comparatively barren tract of land with few forms of life and little rainfall.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/552',
              'prefLabel': [{'@xml:lang': 'en', '$': 'arid land'},
               {'@xml:lang': 'es', '$': 'terreno árido'},
               {'@xml:lang': 'fr', '$': 'terre aride'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Lands characterized by low annual rainfall of less than 250 mm, by evaporation exceeding precipitation and a sparse vegetation.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/415'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931913j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Eau'},
            'altLabel': {'@xml:lang': 'fr', '$': 'RN 7732-18-5'},
            'exactMatch': [{'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-695'}},
             {'@uri': 'http://aims.fao.org/aos/agrovoc/c_8309'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85145447',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Water'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-744',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Eau'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-744'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Environnement'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '030 Paysage - environnement|Environnement'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJYawSTtElG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'agua'},
             {'@xml:lang': 'fr', '$': 'eau'},
             {'@xml:lang': 'en', '$': 'water'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B|http://ark.frantiq.fr/ark:/26678/pcrtJYawSTtElG',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|public works|hydraulics|water'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hidráulica'},
               {'@xml:lang': 'en', '$': 'hydraulics'},
               {'@xml:lang': 'fr', '$': 'hydraulique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'installation hydraulique'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|hydraulique"}},
              'definition': {'@xml:lang': 'fr',
               '$': "Science et technique qui traitent des problèmes posés par l'utilisation de l'eau (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936843d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie en couleurs'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Chromophotographie'},
             {'@xml:lang': 'fr', '$': 'Photographie couleur'},
             {'@xml:lang': 'fr', '$': 'Couleurs, Photographie en'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Technique photographique'},
               {'@xml:lang': 'fr', '$': 'Art photographique'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85028614',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Color photography'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Chromophotography'},
             {'@xml:lang': 'en', '$': 'Heliochromy'},
             {'@xml:lang': 'en', '$': 'Photography, Color'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528098',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía en color'},
            'label': {'@xml:lang': 'es', '$': 'Fotografía en color'},
            'altLabel': {'@xml:lang': 'es', '$': 'Cromofotografía'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119687379',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Photographie ethnographique'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Photographie anthropométrique'},
             {'@xml:lang': 'fr', '$': 'Photographie en anthropométrie'},
             {'@xml:lang': 'fr', '$': 'Photoethnographie'},
             {'@xml:lang': 'fr', '$': 'Photographie en anthropologie'},
             {'@xml:lang': 'fr', '$': 'Anthropométrie et photographie'},
             {'@xml:lang': 'fr', '$': 'Photographie en ethnographie'},
             {'@xml:lang': 'fr', '$': 'Photographie en ethnologie'},
             {'@xml:lang': 'fr', '$': 'Photographie anthropologique'},
             {'@xml:lang': 'fr', '$': 'Photographie ethnologique'},
             {'@xml:lang': 'fr', '$': 'Anthropologie et photographie'},
             {'@xml:lang': 'fr', '$': 'Ethnologie et photographie'},
             {'@xml:lang': 'fr', '$': 'Ethnophotographie'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11951678q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Art et anthropologie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Art et ethnologie'},
                {'@xml:lang': 'fr', '$': 'Anthropologie et art'},
                {'@xml:lang': 'fr', '$': 'Art et ethnographie'},
                {'@xml:lang': 'fr', '$': 'Ethnologie et art'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331145',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Photographie scientifique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11947544c'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13168664t',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Anthropologie visuelle'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX553515',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es',
             '$': 'Fotografía en antropología cultural y social'},
            'label': {'@xml:lang': 'es',
             '$': 'Fotografía en antropología cultural y social'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Etnofotografía'},
             {'@xml:lang': 'es', '$': 'Fotografía antropológica'},
             {'@xml:lang': 'es', '$': 'Fotografía en etnología'},
             {'@xml:lang': 'es', '$': 'Fotografía etnológica'},
             {'@xml:lang': 'es', '$': 'Fotografías antropológicas'},
             {'@xml:lang': 'es', '$': 'Fotografías etnológicas'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85101312',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Photography in ethnology'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh86007278',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Photography in anthropology'}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '3',
            '@uri': 'http://sws.geonames.org/2440476/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Niger',
             {'@xml:lang': 'es', '$': 'Níger'},
             {'@xml:lang': 'en', '$': 'Republic of Niger'},
             {'@xml:lang': 'fr', '$': 'République du Niger'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Niger'},
             {'@xml:lang': 'fr', '$': 'République du Niger'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255146/|http://sws.geonames.org/2440476/',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Afrique|République du Niger'},
              {'@xml:lang': 'es', '$': 'África|Níger'},
              {'@xml:lang': 'en', '$': 'Africa|Republic of Niger'}],
             'expandedCountry': [{'@xml:lang': 'fr', '$': 'Afrique|Niger'},
              {'@xml:lang': 'es', '$': 'África|Niger'},
              {'@xml:lang': 'en', '$': 'Africa|Niger'}]},
            'latitude': '18',
            'longitude': '9',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255146/',
              'prefLabel': ['Africa',
               {'@xml:lang': 'en', '$': 'Africa'},
               {'@xml:lang': 'es', '$': 'África'},
               {'@xml:lang': 'fr', '$': 'Afrique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Afrique'},
              'latitude': '7.1881',
              'longitude': '21.09375'}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3337406/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['South',
             {'@xml:lang': 'fr', '$': 'Sud'},
             {'@xml:lang': 'en', '$': 'South'},
             {'@xml:lang': 'es', '$': 'Meridional'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Sud'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2629691/|http://sws.geonames.org/3337406/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Republic of Iceland|South'},
              {'@xml:lang': 'es', '$': 'Europa|Islandia|Meridional'},
              {'@xml:lang': 'fr', '$': 'Europe|Islande|Sud'}],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Republic of Iceland|South'},
              {'@xml:lang': 'es', '$': 'Europa|Islandia|South'},
              {'@xml:lang': 'fr', '$': 'Europe|Islande|South'}]},
            'latitude': '64',
            'longitude': '-19',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2629691/',
              'prefLabel': ['Iceland',
               {'@xml:lang': 'es', '$': 'Islandia'},
               {'@xml:lang': 'en', '$': 'Republic of Iceland'},
               {'@xml:lang': 'fr', '$': 'Islande'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Islande'},
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2629691/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Islande'},
                {'@xml:lang': 'es', '$': 'Europa|Islandia'},
                {'@xml:lang': 'en', '$': 'Europe|Republic of Iceland'}],
               'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|Iceland'},
                {'@xml:lang': 'es', '$': 'Europa|Iceland'},
                {'@xml:lang': 'en', '$': 'Europe|Iceland'}]},
              'latitude': '65',
              'longitude': '-18',
              'exactMatch': []}}}]}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr',
             '$': 'Anthropologie sociale et ethnologie'},
            {'@xml:lang': 'es', '$': 'Antropología social y etnología'},
            {'@xml:lang': 'en', '$': 'Social Anthropology and ethnology'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Anthropologie sociale et ethnologie"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Social Anthropology and ethnology'},
             {'@xml:lang': 'es',
              '$': 'Ciencias sociales|Antropología social y etnología'}]},
           'definition': {'@xml:lang': 'fr',
            '$': "L'ethnologie est une des sciences humaines et sociales qui relève de l'anthropologie et qui est connexe à la sociologie, et dont l'objet est l'étude comparative et explicative de l'ensemble des caractères sociaux et culturels des groupes humains d'ethnie « les plus manifestes comme les moins avou[é]s »1. À l'aide de théories et concepts qui lui sont propres, elle tente de parvenir à la formulation de la structure, du fonctionnement et de l'évolution des sociétés. Elle comporte notamment deux théories opposées, le fonctionnalisme de Bronislaw Malinowski et le structuralisme de Claude Lévi-Strauss.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Ethnologie de Wikipédia en français"},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie213',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'Ethnologie, anthropologie'},
               {'@xml:lang': 'en', '$': 'Ethnology, anthropology'},
               {'@xml:lang': 'es', '$': 'Etnología, antropología'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie213',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Sociétés|Ethnologie, anthropologie'},
                {'@xml:lang': 'es', '$': 'Sociedad|Etnología, antropología'},
                {'@xml:lang': 'en',
                 '$': 'Society|Ethnology, anthropology'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Social_anthropology'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie213',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Ethnologie, anthropologie'},
            {'@xml:lang': 'en', '$': 'Ethnology, anthropology'},
            {'@xml:lang': 'es', '$': 'Etnología, antropología'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie213',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Sociétés|Ethnologie, anthropologie'},
             {'@xml:lang': 'es', '$': 'Sociedad|Etnología, antropología'},
             {'@xml:lang': 'en', '$': 'Society|Ethnology, anthropology'}]}}}]},
       'dc:language': 'en',
       'dc:rights': ['http://creativecommons.org/licenses/by-nc-nd/',
        'info:eu-repo/semantics/OpenAccess']}},
     {'@uri': '10670/1.l1qpzu',
      'isidore': {'title': 'Système lymphatique. Cours du chyle et de la lymphe',
       'url': 'http://www.biusante.parisdescartes.fr/histmed/medica/cote?90975x1866x04x01',
       'enrichedCreators': {'creator': {'@origin': 'Labéda, A.',
         '@normalizedAuthor': 'Labéda, A.',
         '@idAuthor': 'labeda_a',
         'firstname': 'A.',
         'lastname': 'Labéda',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '1866',
        '@startDate': '1866-01-01',
        '@endDate': '1866-12-31',
        'normalizedDate': '1866-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1800'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1860'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'false',
         '@thumbnailId': '28118846',
         '$': 'http://www.biusante.parisdescartes.fr/histmed/medica/cote?90975x1866x04x01'}},
       'subjects': {'subject': ": Thèses d'agrégation et de concours de la Faculté de médecine de Paris"},
       'relations': {'relation': ['Medic@ (ISSN : 1164-8678) http://www.biusante.parisdescartes.fr/histmed/medica.htm',
         {'@xml:lang': 'fr',
          '$': 'vignette : http://www.biusante.parisdescartes.fr/images/livresth/90975x1866x04x01.jpg'},
         {'@xml:lang': 'en',
          '$': 'thumbnail : http://www.biusante.parisdescartes.fr/images/livresth/90975x1866x04x01.jpg'}],
        'url': 'http://www.biusante.parisdescartes.fr/images/livresth/90975x1866x04x01.jpg'},
       'abstract': "Concours pour l'agrégation (Section d'anatomie)",
       'types': {'type': ['Text',
         {'@xml:lang': 'fr', '$': 'Thèse'},
         {'@xml:lang': 'en', '$': 'Dissertation'}]},
       'source_info': {'collectionLabel': {'@shortLabel': 'BIU santé',
         '@handle': '10670/3.q0bhxd',
         '@collectionUuid': 'ce7fd872-17d1-498c-aa59-37b649554e17',
         '$': 'Bibliothèque interuniversitaire de Santé'},
        'collectionOrganization': {'@organizationUrl': 'http://www.biusante.parisdescartes.fr',
         '$': 'Bibliothèque interuniversitaire santé'},
        'collectionURLMainSite': {'@thumbnaiId': '3370333',
         '$': 'http://www.biusante.parisdescartes.fr'},
        'collectionInformations': {'collectionDescription': "Issue de la fusion en 2011 des bibliothèques interuniversitaires de médecine (BIUM) et de pharmacie (BIUP), la Bibliothèque Interuniversitaire de Santé offre une très grande bibliothèque numérique en ligne : Médic@, une banque d'image, etc.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': [],
         'collectionContactEmailAddress': 'info-med@biusante.parisdescartes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.q0bhxd|10670/2.t8zbuu',
         '$': 'Bibliothèque interuniversitaire de Santé#Médic@'},
        'sourceCode': {'@handle': '10670/2.t8zbuu',
         '$': '9bb6de7f-acb9-48bc-a2bf-e0dabe018dda'},
        'sourceName': {'@shortLabel': 'Médic@',
         '$': 'Medic@ : Bibliothèque numérique de la BIU santé'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '3370333',
         '$': 'http://www.biusante.parisdescartes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://www.biusante.parisdescartes.fr',
         '$': "Lancée à l'automne 2000, la bibliothèque Medic@ est le projet de numérisation patrimoniale et d'édition scientifique mené par le Service d'histoire de la BIU Santé, complémentaire des autres produits élaborés par le Service (banque d'images, base bio-bibliographique des médecins, expositions virtuelles, renseignements à distance...). Elle compte 8 000 documents (2,4M pages) en avril 2011."},
        'sourceOrganization': {'label': 'Bibliothèque interuniversitaire de Santé',
         'URI': 'http://www.biusante.parisdescartes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'info-med@biusante.parisdescartes.fr'},
        'sourceParameters': {'baseUrl': 'http://www2.biusante.parisdescartes.fr/oai/oai2.php',
         'crawlingFrequency': '3600',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]},
           {'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4945',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'lymphatic system'},
             {'@xml:lang': 'es', '$': 'sistema linfático'},
             {'@xml:lang': 'fr', '$': 'système lymphatique'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A system of vessels and nodes conveying lymph in the vertebrate body, beginning with capillaries in tissue spaces and eventually forming the thoracic ducts which empty in the subclavian veins.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/406',
              'prefLabel': [{'@xml:lang': 'en', '$': 'anatomy'},
               {'@xml:lang': 'es', '$': 'anatomía'},
               {'@xml:lang': 'fr', '$': 'anatomie'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The science concerned with the physical structure of animals and plants.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4483'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb122554213',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Système lymphatique'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Systema lymphaticum'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12098530j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Système immunitaire'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525161',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Sistema linfático'},
            'label': {'@xml:lang': 'es', '$': 'Sistema linfático'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ganglios linfáticos'},
             {'@xml:lang': 'es', '$': 'Linfático, Sistema'},
             {'@xml:lang': 'es', '$': 'Vasos linfáticos'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006580',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Lymphatics'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voie urbaine'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Avenue'},
             {'@xml:lang': 'fr', '$': 'Boulevard'},
             {'@xml:lang': 'fr', '$': 'Cours'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Voirie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Réseau des voies urbaines'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '021 Aménagement urbain|Urbanisme|VRD|Voirie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11958081n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chyle'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977168w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Liquides biologiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Fluides corporels'},
               {'@xml:lang': 'fr', '$': 'Liquides organiques'},
               {'@xml:lang': 'fr', '$': 'Liquides physiologiques'},
               {'@xml:lang': 'fr', '$': 'Humeurs (physiologie)'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85025901',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Chyle'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120987156',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lymphe'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Liquide lymphatique'},
             {'@xml:lang': 'fr', '$': 'Lympha'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977168w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Liquides biologiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Fluides corporels'},
               {'@xml:lang': 'fr', '$': 'Liquides organiques'},
               {'@xml:lang': 'fr', '$': 'Liquides physiologiques'},
               {'@xml:lang': 'fr', '$': 'Humeurs (physiologie)'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85079124',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Lymph'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBeRSLpmtm1',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'concours'},
             {'@xml:lang': 'es', '$': 'concurso'},
             {'@xml:lang': 'en', '$': 'contest'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtk9fsq49Ab1|http://ark.frantiq.fr/ark:/26678/pcrtBeRSLpmtm1',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|leisure|entertainment|contest'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Compétition en vue d'octroyer un prix aux meilleurs (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtk9fsq49Ab1',
              'prefLabel': [{'@xml:lang': 'en', '$': 'entertainment'},
               {'@xml:lang': 'es', '$': 'espectáculo'},
               {'@xml:lang': 'fr', '$': 'spectacle'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtk9fsq49Ab1'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Représentation théâtrale, chorégraphique, etc. (Rob.)'}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/10773',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'competitive examination'},
             {'@xml:lang': 'es', '$': 'oposición'},
             {'@xml:lang': 'fr', '$': 'concours'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A test given to a candidate for a certificate or a position and concerned typically with problems to be solved, skills to be demonstrated, or tasks to be performed.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/13307',
              'prefLabel': [{'@xml:lang': 'en', '$': 'level of education'},
               {'@xml:lang': 'es', '$': 'nivel de enseñanza'},
               {'@xml:lang': 'fr', '$': "niveau d'études"}],
              'definition': {'@xml:lang': 'en',
               '$': 'A position along a scale of increasingly advanced training marking the degree or grade of instruction either obtained by an individual, offered by a some entity or necessary for a particular job or task.'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-568',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Concours'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2138|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-568',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '041 Méthodologie|Méthodologie|Méthodologie du projet|Concours'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Méthodologie du projet'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2138|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '041 Méthodologie|Méthodologie|Méthodologie du projet'}}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119762458',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Concours'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Compétitions et concours'},
             {'@xml:lang': 'fr', '$': 'Concours et compétitions'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005287',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Competitions'},
            'altLabel': {'@xml:lang': 'en', '$': 'Contests'}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX526250',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Certámenes'},
            'label': {'@xml:lang': 'es', '$': 'Certámenes'},
            'altLabel': {'@xml:lang': 'es', '$': 'Concursos'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976349x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Agrégation'},
            'altLabel': {'@xml:lang': 'fr', '$': "Concours d'agrégation"}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-91',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Anatomie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-91'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-374',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '080 Sciences exactes et appliquées|Biologie'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/406',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'anatomy'},
             {'@xml:lang': 'es', '$': 'anatomía'},
             {'@xml:lang': 'fr', '$': 'anatomie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The science concerned with the physical structure of animals and plants.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/892',
              'prefLabel': [{'@xml:lang': 'en', '$': 'biosphere'},
               {'@xml:lang': 'es', '$': 'biosfera'},
               {'@xml:lang': 'fr', '$': 'biosphère'}],
              'definition': {'@xml:lang': 'en',
               '$': 'That part of the Earth and atmosphere capable of supporting living organisms.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_49890'},
             {'@uri': 'http://eurovoc.europa.eu/1859'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11953082s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Anatomie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Anatomie vétérinaire'},
             {'@xml:lang': 'fr', '$': 'Anatomia'},
             {'@xml:lang': 'fr', '$': 'Anatomie animale'},
             {'@xml:lang': 'fr', '$': 'Anatomie générale'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119440835',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biologie'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Biologie générale'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002319',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Anatomy'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX529987',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Anatomía veterinaria'},
            'label': {'@xml:lang': 'es', '$': 'Anatomía veterinaria'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Animales domésticos--Anatomía'},
             {'@xml:lang': 'es', '$': 'Ganado--Anatomía'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525078',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Anatomía'},
            'label': {'@xml:lang': 'es', '$': 'Anatomía'},
            'altLabel': {'@xml:lang': 'es',
             '$': 'Anatomía comparada y general'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'anatomía'},
             {'@xml:lang': 'fr', '$': 'anatomie'},
             {'@xml:lang': 'en', '$': 'anatomy'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1',
              'prefLabel': [{'@xml:lang': 'en', '$': 'medecine'},
               {'@xml:lang': 'fr', '$': 'médecine'},
               {'@xml:lang': 'es', '$': 'medicina'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119336105',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Thèses et écrits académiques'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Travaux de recherche'},
             {'@xml:lang': 'fr', '$': 'Mémoires de maîtrise'},
             {'@xml:lang': 'fr', '$': 'Rédaction de travaux de recherche'},
             {'@xml:lang': 'fr', '$': 'Dissertations académiques'},
             {'@xml:lang': 'fr', '$': 'Thèses de doctorat'},
             {'@xml:lang': 'fr', '$': 'Thèses'},
             {'@xml:lang': 'fr', '$': "Thèses d'université"},
             {'@xml:lang': 'fr', '$': 'Master, Mémoires de'},
             {'@xml:lang': 'fr', '$': 'Travaux universitaires'},
             {'@xml:lang': 'fr', '$': 'Doctorat, Thèses de'},
             {'@xml:lang': 'fr', '$': "Travaux de fin d'études"},
             {'@xml:lang': 'fr', '$': 'Maîtrise, Mémoires de'},
             {'@xml:lang': 'fr', '$': "Travaux d'étudiants"},
             {'@xml:lang': 'fr', '$': 'Mémoires professionnels'},
             {'@xml:lang': 'fr', '$': 'Thèses de 3e cycle'},
             {'@xml:lang': 'fr', '$': "Projets de fin d'études"},
             {'@xml:lang': 'fr', '$': 'Mémoires de master'},
             {'@xml:lang': 'fr', '$': 'Écrits académiques'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12203527x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature grise'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Publications non commerciales'},
                {'@xml:lang': 'fr',
                 '$': 'Publications à diffusion restreinte'},
                {'@xml:lang': 'fr', '$': 'Littérature souterraine'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933704h',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Travail intellectuel'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Activité intellectuelle'},
                {'@xml:lang': 'fr', '$': 'Travail mental'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005673',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Dissertations'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment universitaire'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Université'},
             {'@xml:lang': 'fr', '$': 'Faculté'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-348'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Campus'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Cité universitaire'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-410',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '012 Typologie des bâtiments et équipements divers|Campus'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1294',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Médecine'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1294',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '080 Sciences exactes et appliquées|Médecine'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '080 Sciences exactes et appliquées'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/5144',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'medicine (practice)'},
             {'@xml:lang': 'es', '$': 'medicina'},
             {'@xml:lang': 'fr', '$': 'médecine'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The science and art of treating and healing.'},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1852'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'medecine'},
             {'@xml:lang': 'fr', '$': 'médecine'},
             {'@xml:lang': 'es', '$': 'medicina'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ',
              'prefLabel': [{'@xml:lang': 'en', '$': 'health'},
               {'@xml:lang': 'es', '$': 'salud'},
               {'@xml:lang': 'fr', '$': 'santé'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119832928',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Médecine'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119759109',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences de la santé'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences bio-médicales'},
                {'@xml:lang': 'fr', '$': 'Sciences biomédicales'},
                {'@xml:lang': 'fr', '$': 'Sciences médicales'},
                {'@xml:lang': 'fr', '$': 'Santé, Sciences de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11958000t',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Biologie humaine'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576273',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Medicina'},
            'label': {'@xml:lang': 'es', '$': 'Medicina'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006614',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Medicine'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#PARIS',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Paris'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Lutèce'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#ILE-DE-FRANCE|http://GeoEthno#PARIS',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|France|Ile-de-France|Paris'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ILE-DE-FRANCE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Ile-de-France'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Région parisienne'},
               {'@xml:lang': 'en', '$': 'Paris-Isle-of-France'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#ILE-DE-FRANCE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Ile-de-France'}}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '1',
           '@uri': 'http://sws.geonames.org/2968815/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Paris',
            {'@xml:lang': 'fr', '$': 'Paris'},
            {'@xml:lang': 'en', '$': 'Paris'},
            {'@xml:lang': 'es', '$': 'Paris'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Paris'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3012874/|http://sws.geonames.org/2968815/',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Europa|Francia|Isla de Francia|Paris'},
             {'@xml:lang': 'fr', '$': 'Europe|France|Île-de-France|Paris'},
             {'@xml:lang': 'en', '$': 'Europe|France|Île-de-France|Paris'}],
            'expandedCountry': [{'@xml:lang': 'es',
              '$': 'Europa|Francia|Isla de Francia'},
             {'@xml:lang': 'fr', '$': 'Europe|France|Île-de-France'},
             {'@xml:lang': 'en', '$': 'Europe|France|Île-de-France'}]},
           'latitude': '48.8534',
           'longitude': '2.3486',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3012874/',
             'prefLabel': ['Île-de-France',
              {'@xml:lang': 'fr', '$': 'Île-de-France'},
              {'@xml:lang': 'en', '$': 'Île-de-France'},
              {'@xml:lang': 'es', '$': 'Isla de Francia'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'Région parisienne'},
              {'@xml:lang': 'fr', '$': 'Île-de-France'}],
             'latitude': '48.5',
             'longitude': '2.5',
             'exactMatch': []}}}}]},
       'dc:language': 'FR',
       'dc:rights': 'Licence ouverte. - Exemplaire numérisé: BIU Santé (Paris)'}},
     {'@uri': '10670/1.1af3pe',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': 'Dans la rencontre de la photographie et de l’écriture : la résistance du désert - Le Clézio (Gens des nuages), Barbey, Depardon, Plossu, Ristelhueber'},
       'url': 'https://hal-univ-artois.archives-ouvertes.fr/hal-03324948',
       'enrichedCreators': {'creator': {'@origin': 'Roussel-Gillet, Isabelle',
         '@normalizedAuthor': 'Roussel-Gillet, Isabelle',
         '@idAuthor': 'roussel_gillet_isabelle',
         'firstname': 'Isabelle',
         'lastname': 'Roussel-Gillet',
         'title': [],
         'sameAs': {'idref': '066971624'}}},
       'date': {'@origin': '2008-01-23',
        '@startDate': '2008-01-23',
        '@endDate': '2008-01-23',
        '@treeDate': '2000/2000/2008',
        'normalizedDate': '2008-01-23',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2000'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2008'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28103085',
         '$': 'https://hal-univ-artois.archives-ouvertes.fr/hal-03324948'},
        'similar': 'hal-03324948'},
       'subjects': {'subject': [{'@xml:lang': 'fr',
          '$': 'Littérature française -- Thèmes motifs'},
         {'@xml:lang': 'fr', '$': 'Déserts -- Dans la littérature'},
         {'@xml:lang': 'fr',
          '$': 'Jean-Marie Gustave Le Clézio (1940-....) -- Critique et interprétation'},
         '[SHS.LITT]Humanities and Social Sciences/Literature',
         '[SHS.ART]Humanities and Social Sciences/Art and art history']},
       'coverages': {'coverage': 'Arras, France'},
       'abstract': 'International audience',
       'types': {'type': ['info:eu-repo/semantics/conferenceObject',
         'Conference papers']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.q0dtzi',
         '$': 'Archives ouvertes#HAL-SHS'},
        'sourceCode': {'@handle': '10670/2.q0dtzi',
         '$': 'd8793909-9989-4ab0-9a90-df96dfa247ba'},
        'sourceName': {'@shortLabel': 'HAL-SHS',
         '$': "Hyper Article en Ligne - Sciences de l'Homme et de la Société"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://halshs.archives-ouvertes.fr',
         '$': "L'archive ouverte HAL-SHS (Hyper Article en Ligne - Sciences de l'Homme et de la Société) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche dans les disciplines des SHS."},
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/hal/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#conference',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Colloques et conférences'},
            {'@xml:lang': 'en', '$': 'Conferences and symposiums'},
            {'@xml:lang': 'es', '$': 'Seminarios y conferencias'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
             {'@xml:lang': 'fr', '$': 'photographie'},
             {'@xml:lang': 'en', '$': 'photography'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'enregistrement-diffusion'},
               {'@xml:lang': 'es', '$': 'grabación - difusión'},
               {'@xml:lang': 'en', '$': 'record-diffusion'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
             {'@xml:lang': 'fr', '$': 'Art photographique'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
               {'@xml:lang': 'fr', '$': 'Arts plastiques'},
               {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
               {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4683393',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
            'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
            'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
             {'@xml:lang': 'es', '$': 'fotografiar'},
             {'@xml:lang': 'fr', '$': 'photographie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
              'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
               {'@xml:lang': 'es', '$': 'procesos industriales'},
               {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
             {'@uri': 'http://eurovoc.europa.eu/4096'}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques|Photographie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
             {'@xml:lang': 'fr', '$': 'Écriture'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
             {'@xml:lang': 'es', '$': 'escritura'},
             {'@xml:lang': 'en', '$': 'writing'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
             {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
             {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
             {'@xml:lang': 'fr', '$': 'Graphémique'},
             {'@xml:lang': 'fr', '$': 'Graphie'},
             {'@xml:lang': 'fr', '$': 'Langue écrite'},
             {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Signes graphiques'},
             {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
                {'@xml:lang': 'fr', '$': 'Figures symboliques'},
                {'@xml:lang': 'fr', '$': 'Symboles'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
                {'@xml:lang': 'fr', '$': 'Langage et langues'},
                {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524426',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
            'label': {'@xml:lang': 'es', '$': 'Escritura'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
             {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
             {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'resistance'},
             {'@xml:lang': 'fr', '$': 'résistance'},
             {'@xml:lang': 'es', '$': 'resistencia'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
              'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
               {'@xml:lang': 'fr', '$': 'troubles'},
               {'@xml:lang': 'en', '$': 'unrest'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
               {'@xml:lang': 'fr', '$': 'soulèvement'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-682',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Désert'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-682',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '030 Paysage - environnement|Environnement|Environnement naturel|Désert'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Environnement naturel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Espace naturel'},
               {'@xml:lang': 'fr', '$': 'Milieu naturel'},
               {'@xml:lang': 'fr', '$': 'Biosphère'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtshBq5ZfbdH',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'desert'},
             {'@xml:lang': 'fr', '$': 'désert'},
             {'@xml:lang': 'es', '$': 'desierto'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183|http://ark.frantiq.fr/ark:/26678/pcrtshBq5ZfbdH',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|géographie|géographie physique|milieu végétal|désert'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183',
              'prefLabel': [{'@xml:lang': 'es', '$': 'entorno vegetal'},
               {'@xml:lang': 'fr', '$': 'milieu végétal'},
               {'@xml:lang': 'en', '$': 'vegetational environment'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'végétation'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtZ1NStSd183',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie physique|milieu végétal'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2103',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'desert'},
             {'@xml:lang': 'es', '$': 'desiertos'},
             {'@xml:lang': 'fr', '$': 'désert'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A wide, open, comparatively barren tract of land with few forms of life and little rainfall.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/552',
              'prefLabel': [{'@xml:lang': 'en', '$': 'arid land'},
               {'@xml:lang': 'es', '$': 'terreno árido'},
               {'@xml:lang': 'fr', '$': 'terre aride'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Lands characterized by low annual rainfall of less than 250 mm, by evaporation exceeding precipitation and a sparse vegetation.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/415'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4GBikp6RKx',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'gens'},
             {'@xml:lang': 'es', '$': 'gens'},
             {'@xml:lang': 'fr', '$': 'gens'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtO1ovMArmn3|http://ark.frantiq.fr/ark:/26678/pcrt4GBikp6RKx'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Une gens (pluriel latin gentes) est dans le système social romain, un groupe familial patrilinéaire portant le même nom, le gentilice (en latin nomen gentilicium).'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtO1ovMArmn3',
              'prefLabel': [{'@xml:lang': 'es', '$': 'familias'},
               {'@xml:lang': 'en', '$': 'families'},
               {'@xml:lang': 'fr', '$': 'familles'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtO1ovMArmn3'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11952827m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Nuages'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932496x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Météorologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Sciences de l'atmosphère"},
               {'@xml:lang': 'fr', '$': 'Phénomènes atmosphériques'},
               {'@xml:lang': 'fr', '$': 'Aérologie'}]}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX533497',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Nubes'},
            'label': {'@xml:lang': 'es', '$': 'Nubes'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85027191',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Clouds'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13516396s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Publics'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Spectateurs'},
             {'@xml:lang': 'fr', '$': 'Public'},
             {'@xml:lang': 'fr', '$': 'Auditoire'},
             {'@xml:lang': 'fr', '$': 'Assistance (public)'},
             {'@xml:lang': 'fr', '$': 'Visiteurs'},
             {'@xml:lang': 'fr', '$': 'Fréquentation'},
             {'@xml:lang': 'fr', '$': 'Audience'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119322773',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature française'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953151s'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12083177p',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Littérature francophone'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Littérature de langue française'},
                {'@xml:lang': 'fr', '$': "Littérature d'expression française"},
                {'@xml:lang': 'fr', '$': 'Littératures francophones'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX529303',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Literatura francesa'},
            'label': {'@xml:lang': 'es', '$': 'Literatura francesa'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85051865',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'French literature'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11975676d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Thèmes, motifs'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Sujets (thèmes)'},
             {'@xml:lang': 'fr', '$': 'Thèmes'},
             {'@xml:lang': 'fr', '$': 'Motifs (thèmes)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008982',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Themes, motives'},
            'altLabel': {'@xml:lang': 'en', '$': 'Motives, themes'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008983',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literary themes, motives'},
            'altLabel': {'@xml:lang': 'en', '$': 'Themes, motives, Literary'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931318m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Déserts'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12355639w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Espaces naturels'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Zones naturelles'},
                {'@xml:lang': 'fr', '$': 'Espace naturel'},
                {'@xml:lang': 'fr', '$': 'Milieux naturels'},
                {'@xml:lang': 'fr', '$': 'Milieu naturel'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11949412z',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Régions arides'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Régions de climat aride'},
                {'@xml:lang': 'fr', '$': 'Zones semi-arides'},
                {'@xml:lang': 'fr', '$': 'Milieu aride'},
                {'@xml:lang': 'fr', '$': 'Régions semi-arides'},
                {'@xml:lang': 'fr', '$': 'Zones arides'},
                {'@xml:lang': 'fr', '$': 'Sèches, Régions'},
                {'@xml:lang': 'fr', '$': 'Milieux arides'},
                {'@xml:lang': 'fr', '$': 'Arides, Régions'},
                {'@xml:lang': 'fr', '$': 'Régions sèches'},
                {'@xml:lang': 'fr', '$': 'Semi-arides, Régions'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12446473q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Biomes'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Zones biogéographiques'},
                {'@xml:lang': 'fr', '$': 'Régions biogéographiques'},
                {'@xml:lang': 'fr', '$': 'Zones biologiques'}]}}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2205'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526587',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Desiertos'},
            'label': {'@xml:lang': 'es', '$': 'Desiertos'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85037166',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Deserts'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11996647g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dans la littérature'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Dans la poésie'},
             {'@xml:lang': 'fr', '$': 'Thème littéraire'},
             {'@xml:lang': 'fr', '$': 'Dans les romans'},
             {'@xml:lang': 'fr', '$': 'Représentation dans la littérature'},
             {'@xml:lang': 'fr', '$': 'Dans le théâtre'},
             {'@xml:lang': 'fr', '$': 'Représentation littéraire'},
             {'@xml:lang': 'fr', '$': 'Représentation romanesque'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002011414',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'In literature'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'In fiction, drama, poetry, etc'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12042895g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Critique et interprétation'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005576',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Criticism and interpretation'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Interpretation and criticism'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
             {'@xml:lang': 'fr', '$': 'art'},
             {'@xml:lang': 'es', '$': 'arte'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Arts'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc'},
            'definition': {'@xml:lang': 'fr',
             '$': "Ensemble des oeuvres artistiques d'un pays, d'une époque (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/568',
            'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
             {'@xml:lang': 'es', '$': 'arte'},
             {'@xml:lang': 'fr', '$': 'art'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The creation of works of beauty or other special significance.'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
             {'@xml:lang': 'fr', '$': 'Arts plastiques'},
             {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
             {'@xml:lang': 'fr', '$': 'Arts visuels'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85007461',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Art'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Western art (Western countries)'},
             {'@xml:lang': 'en', '$': 'Fine arts'},
             {'@xml:lang': 'en', '$': 'Iconography'},
             {'@xml:lang': 'en', '$': 'Arts, Fine'},
             {'@xml:lang': 'en', '$': 'Art, Occidental'},
             {'@xml:lang': 'en', '$': 'Arts, Visual'},
             {'@xml:lang': 'en', '$': 'Visual arts'},
             {'@xml:lang': 'en', '$': 'Occidental art'},
             {'@xml:lang': 'en', '$': 'Art, Visual'},
             {'@xml:lang': 'en', '$': 'Art, Western (Western countries)'}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "051 Analyse et théorie de l'art|Art"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "051 Analyse et théorie de l'art"}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#ARRAS',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Arras'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#NORD-PAS-DE-CALAIS|http://GeoEthno#DEPARTEMENT_DU_PAS-DE-CALAIS|http://GeoEthno#ARRAS'},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#DEPARTEMENT_DU_PAS-DE-CALAIS',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Département du Pas-de-Calais'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#NORD-PAS-DE-CALAIS|http://GeoEthno#DEPARTEMENT_DU_PAS-DE-CALAIS',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Nord-Pas-de-Calais|Département du Pas-de-Calais'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11933366z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Arras (Pas-de-Calais)'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Arras'},
             {'@xml:lang': 'fr', '$': 'Nemetocena (ville ancienne)'},
             {'@xml:lang': 'fr', '$': 'Atrebatum (ville ancienne)'}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '1',
           '@uri': 'http://sws.geonames.org/3017382/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['France',
            {'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'es', '$': 'Francia'},
            {'@xml:lang': 'en', '$': 'France'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'fr', '$': 'République Française'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|Francia'},
             {'@xml:lang': 'en', '$': 'Europe|France'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|France'},
             {'@xml:lang': 'en', '$': 'Europe|France'}]},
           'latitude': '46',
           'longitude': '2',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
             'prefLabel': ['Europe',
              {'@xml:lang': 'en', '$': 'Europe'},
              {'@xml:lang': 'es', '$': 'Europa'},
              {'@xml:lang': 'fr', '$': 'Europe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
             'latitude': '48.69096',
             'longitude': '9.14062'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr'}},
     {'@uri': '10670/1.og14rz',
      'isidore': {'title': 'Élections législatives de 1962, Aisne - 02, circonscription n°03 : profession de foi de Edouard Alliot au tour 1',
       'url': 'http://archive.org/details/EL027_L_1962_11_002_03_1_PF_01',
       'enrichedCreators': [],
       'date': {'@origin': '1962-11-18T00:00:00Z',
        '@startDate': '1962-11-18',
        '@endDate': '1962-11-18',
        '@treeDate': '1900/1960/1962',
        'normalizedDate': '1962-11-18',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1900'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1960'},
        'years': {'@start': '1950', '@end': '2030', 'year': '1962'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '27980860',
         '$': 'http://archive.org/details/EL027_L_1962_11_002_03_1_PF_01'}},
       'subjects': {'subject': ['Élections législatives',
         'France',
         'Ve République',
         'Assemblée Nationale']},
       'types': {'type': 'profession de foi'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Sciences Po - Bibliotthèque',
         '@handle': '10670/3.nmmf73',
         '@collectionUuid': 'bcb54696-099c-8a17-23aa-4a331e6ff5ac',
         '$': 'Sciences Po - Bibliothèque'},
        'collectionOrganization': 'Sciences Po',
        'collectionURLMainSite': {'@thumbnaiId': '21159248',
         '$': 'https://www.sciencespo.fr'},
        'collectionInformations': {'collectionDescription': 'Collections numériques de la bibliothèque et des archives de Sciences Po.',
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'bibliotheque@sciences-po.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionURIPermanentPattern': [],
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.nmmf73|10670/2.4s1t6i',
         '$': 'Sciences Po - Bibliothèque#CEVIPOF'},
        'sourceCode': {'@handle': '10670/2.4s1t6i',
         '$': 'a61aa966-4ff5-7453-8dab-b1b322f83876'},
        'sourceName': {'@shortLabel': 'CEVIPOF',
         '$': 'Archives électorales du CEVIPOF Sciences Po'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '21159245',
         '$': 'https://archive.org/details/archiveselectoralesducevipof?tab=collection'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'https://archive.org/details/archiveselectoralesducevipof?tab=collection',
         '$': 'Depuis 2014, le CEVIPOF (UMR mixte de Sciences Po et du CNRS) et la Bibliothèque de Sciences Po mettent progressivement à disposition sur Internet Archive les archives électorales de 1958 à 2012. Ce fonds, constitué à partir des années 1950 et toujours enrichi, rassemble le matériel électoral publié à l’occasion d’élections en France et diffusé auprès des électeurs.'},
        'sourceOrganization': {'label': 'Sciences Po',
         'URI': 'https://www.sciencespo.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'archelec.cevipof@sciencespo.fr'},
        'sourceParameters': {'baseUrl': 'https://archive.org/services/oai2.php',
         'crawlingFrequency': '14400',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133188593',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Élections'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Consulations électorales'},
             {'@xml:lang': 'fr', '$': 'Élections politiques'},
             {'@xml:lang': 'fr', '$': 'Scrutins'},
             {'@xml:lang': 'fr', '$': 'Élections générales'},
             {'@xml:lang': 'fr', '$': 'Élections législatives'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13553871x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Pratiques politiques'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique, Pratiques de la'},
                {'@xml:lang': 'fr', '$': 'Comportement politique'},
                {'@xml:lang': 'fr', '$': 'Moeurs politiques'},
                {'@xml:lang': 'fr', '$': 'Politique'},
                {'@xml:lang': 'fr', '$': 'Pratiques de la politique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13734407w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Régimes représentatifs'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Régime représentatif'},
                {'@xml:lang': 'fr', '$': 'Gouvernement représentatif'},
                {'@xml:lang': 'fr', '$': 'Régimes politiques représentatifs'},
                {'@xml:lang': 'fr', '$': 'Démocratie représentative'},
                {'@xml:lang': 'fr', '$': 'Représentatifs, Régimes'},
                {'@xml:lang': 'fr', '$': 'Représentatif, Régime'},
                {'@xml:lang': 'fr', '$': 'Self-government'}]}}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-107'}}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX525990',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Elecciones'},
            'label': {'@xml:lang': 'es', '$': 'Elecciones'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005375',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Elections'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12508689g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': "Aisne (Meuse-Oise. - cours d'eau)"},
            'altLabel': {'@xml:lang': 'fr', '$': 'Aisne'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12042845x'}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#AISNE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Aisne'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#PICARDIE|http://GeoEthno#AISNE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|France|Bassin Parisien|Picardie|Aisne'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#PICARDIE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Picardie'},
              'altLabel': {'@xml:lang': 'en', '$': 'Picardy'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#PICARDIE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|France|Bassin Parisien|Picardie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12465665t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Profession de foi'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Fête de la foi'},
             {'@xml:lang': 'fr', '$': 'Communion solennelle'},
             {'@xml:lang': 'fr',
              '$': 'Renouvellement des promesses du baptême'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85011724',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Baptism--Reaffirmation of covenant'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Reaffirmation of baptismal covenant'},
             {'@xml:lang': 'en', '$': 'Renewal of baptismal vows'},
             {'@xml:lang': 'en', '$': 'Baptismal covenant, Reaffirmation of'},
             {'@xml:lang': 'en', '$': 'Affirmation of baptismal covenant'},
             {'@xml:lang': 'en', '$': 'Baptism--Renewal'}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1983',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Tour'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'IGH'},
             {'@xml:lang': 'fr', '$': 'Immeuble de Grande Hauteur'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1983'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Typologie des bâtiments'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '012 Typologie des bâtiments et équipements divers|Typologie des bâtiments'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtslAx38Lp91',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'torre'},
             {'@xml:lang': 'fr', '$': 'tour'},
             {'@xml:lang': 'en', '$': 'tower'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt0TjDJMhpY1|http://ark.frantiq.fr/ark:/26678/pcrtslAx38Lp91',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|architecture|édifice|bâtiment à fonctions multiples|tour'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Bâtiment élevé de forme circulaire ou carrée (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0TjDJMhpY1',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'bâtiment à fonctions multiples'},
               {'@xml:lang': 'es', '$': 'edificio de funciones múltiples'},
               {'@xml:lang': 'en', '$': 'multiple purpose building'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt0TjDJMhpY1'}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqh0Gw1ujrr',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'republic'},
             {'@xml:lang': 'es', '$': 'república'},
             {'@xml:lang': 'fr', '$': 'république'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrt0Y7m78gYEW|http://ark.frantiq.fr/ark:/26678/pcrtqh0Gw1ujrr',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|régime politique|démocratie|république'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Forme d'un Etat dans lequel le peuple exerce la souveraineté directement ou par l'intermédiaire de délégués élus (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0Y7m78gYEW',
              'prefLabel': [{'@xml:lang': 'es', '$': 'democracia'},
               {'@xml:lang': 'en', '$': 'democracy'},
               {'@xml:lang': 'fr', '$': 'démocratie'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrt0Y7m78gYEW',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|régime politique|démocratie'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Gouvernement où le peuple exerce la souveraineté (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133186466',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'République'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319578s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Régimes politiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Régime politique'},
               {'@xml:lang': 'fr', '$': 'Régime (science politique)'},
               {'@xml:lang': 'fr', '$': 'Régimes constitutionnels'},
               {'@xml:lang': 'fr', '$': 'Système politique'},
               {'@xml:lang': 'fr', '$': 'Systèmes politiques'}]}},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-710'}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526814',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'República'},
            'label': {'@xml:lang': 'es', '$': 'República'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85112978',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Republics'},
            'altLabel': {'@xml:lang': 'en', '$': 'Commonwealth, The'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2QMfvVPT6u',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'asamblea'},
             {'@xml:lang': 'fr', '$': 'assemblée'},
             {'@xml:lang': 'en', '$': 'assembly'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'dèmos'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtR3UkdvnDGA|http://ark.frantiq.fr/ark:/26678/pcrtc6SHZdW1yt|http://ark.frantiq.fr/ark:/26678/pcrt2QMfvVPT6u',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|institution politique|pouvoir législatif|assemblée'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtc6SHZdW1yt',
              'prefLabel': [{'@xml:lang': 'en', '$': 'legislative power'},
               {'@xml:lang': 'es', '$': 'poder legislativo'},
               {'@xml:lang': 'fr', '$': 'pouvoir législatif'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtR3UkdvnDGA|http://ark.frantiq.fr/ark:/26678/pcrtc6SHZdW1yt'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '1',
            '@uri': 'http://sws.geonames.org/3038375/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Aisne',
             {'@xml:lang': 'fr', '$': 'Aisne'},
             {'@xml:lang': 'en', '$': 'Aisne'},
             {'@xml:lang': 'es', '$': 'Aisne'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Aisne'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2987375/|http://sws.geonames.org/3038375/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Picardía|Aisne'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Picardie|Aisne'},
              {'@xml:lang': 'en', '$': 'Europe|France|Picardie|Aisne'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Picardía'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Picardie'},
              {'@xml:lang': 'en', '$': 'Europe|France|Picardie'}]},
            'latitude': '49.5',
            'longitude': '3.5',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2987375/',
              'prefLabel': ['Picardie',
               {'@xml:lang': 'en', '$': 'Picardie'},
               {'@xml:lang': 'fr', '$': 'Picardie'},
               {'@xml:lang': 'es', '$': 'Picardía'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Picardie'},
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2987375/',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Picardía'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Picardie'},
                {'@xml:lang': 'en', '$': 'Europe|France|Picardie'}],
               'expandedCountry': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Picardie'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Picardie'},
                {'@xml:lang': 'en', '$': 'Europe|France|Picardie'}]},
              'latitude': '50',
              'longitude': '3.5',
              'exactMatch': []}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/3017382/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['France',
             {'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'es', '$': 'Francia'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'fr', '$': 'République Française'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
              {'@xml:lang': 'es', '$': 'Europa|Francia'},
              {'@xml:lang': 'en', '$': 'Europe|France'}],
             'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
              {'@xml:lang': 'es', '$': 'Europa|France'},
              {'@xml:lang': 'en', '$': 'Europe|France'}]},
            'latitude': '46',
            'longitude': '2',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
              'prefLabel': ['Europe',
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
              'latitude': '48.69096',
              'longitude': '9.14062'}},
            'exactMatch': []}]}]},
       'dc:language': 'fre',
       'dc:rights': 'RESTRICTED'}},
     {'@uri': '10670/1.vida7u',
      'isidore': {'title': 'Au large de Gruissan – Étang de Mateille',
       'url': 'http://journals.openedition.org/adlfi/105428',
       'enrichedCreators': {'creator': [{'@origin': 'Robert, Fernand',
          '@normalizedAuthor': 'Robert, Fernand',
          '@idAuthor': 'robert_fernand',
          'firstname': 'Fernand',
          'lastname': 'Robert',
          'title': [],
          'sameAs': []},
         {'@origin': 'Falguera, Jean-Marie',
          '@normalizedAuthor': 'Falguera, Jean-Marie',
          '@idAuthor': 'falguera_jean_marie',
          'firstname': 'Jean-Marie',
          'lastname': 'Falguera',
          'title': [],
          'sameAs': {'idref': '165822686'}}]},
       'date': {'@origin': '2021-09-13',
        '@startDate': '2021-09-13',
        '@endDate': '2021-09-13',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-09-13',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28120537',
          '$': 'http://journals.openedition.org/adlfi/105428'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'http://journals.openedition.org/adlfi/tei/105428'}]},
       'abstract': 'L’aménagement ancien du port de plaisance de Gruissan à l’emplacement des étangs de Mateille avait entraîné des dragages successifs qui ont partiellement détruit un certain nombre d’épaves. Une prospection par forages, soutenue par la direction régionale d’EDF-GDF, s’est déroulée le 9\xa0septembre 1992. Les carottages réalisés confirment la présence de matériel archéologique à -4\xa0m.',
       'types': {'type': 'archaeological note'},
       'source_info': {'collectionLabel': {'@shortLabel': 'OpenEdition Journals',
         '@handle': '10670/3.wnt2uz',
         '@collectionUuid': '1696a612-a6e4-473d-8f35-4cf007b39469',
         '$': 'OpenEdition Journals'},
        'collectionOrganization': {'@organizationUrl': 'http://www.openedition.org',
         '$': 'OpenEdition'},
        'collectionURLMainSite': {'@thumbnaiId': '630816',
         '$': 'http://journals.openedition.org'},
        'collectionInformations': {'collectionDescription': "Né en 1999, Revues.org est le plus ancien portail français de revues en ligne en sciences humaines et sociales. Il est développé par le Centre pour l'édition électronique ouverte (Cléo), un laboratoire associant le CNRS, l'EHESS, l'Université de Provence et l'Université d'Avignon. Depuis 2011, Revues.org fait partie du portail de ressources électronique OpenEdition.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'http://www.revues.org/images/revues-org.png',
         'collectionContactEmailAddress': 'contact@openedition.org'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'urn:doi:(10.4000/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.wnt2uz|10670/2.vvqtri',
         '$': 'OpenEdition Journals#adlfi'},
        'sourceCode': {'@handle': '10670/2.vvqtri',
         '$': '550704c7-4e03-45b5-80ee-70812beba045'},
        'sourceName': {'@shortLabel': 'adlfi',
         '$': 'ADLFI. Archéologie de la France - Informations'},
        'sourceISSN': 'https://portal.issn.org/resource/ISSN/2114-0502',
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4606393',
         '$': 'http://journals.openedition.org/adlfi'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://journals.openedition.org/adlfi',
         '$': "Conçue comme une coédition entre le ministère de la Culture et le CNRS, Archéologie de la France - Informations est une revue en ligne destinée à publier l'actualité des opérations archéologiques menées en France. Elle remplace Gallia Informations dont elle reprend les missions et assure le développement. AdlFI constitue une base de données à jour des dernières recherches et découvertes archéologiques en France, à l’usage des chercheurs nationaux et internationaux, des divers acteurs de l’archéologie et de tous ceux qui s’intéressent au patrimoine national."},
        'sourceOrganization': {'label': 'OpenEdition',
         'URI': 'http://www.openedition.org',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@openedition.org'},
        'sourceParameters': {'baseUrl': 'http://oai.openedition.org/',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6507',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'pond'},
            {'@xml:lang': 'es', '$': 'estanque'},
            {'@xml:lang': 'fr', '$': 'étang'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A natural body of standing fresh water occupying a small surface depression, usually smaller than a lake and larger than a pool.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9297',
             'prefLabel': [{'@xml:lang': 'en', '$': 'wetland'},
              {'@xml:lang': 'es', '$': 'humedal'},
              {'@xml:lang': 'fr', '$': 'zone humide'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Areas that are inundated by surface or ground water with frequency sufficient to support a prevalence of vegetative or aquatic life that requires saturated or seasonally saturated soil conditions for growth or reproduction.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSEg0ZTFHts',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'estanque'},
            {'@xml:lang': 'fr', '$': 'étang'},
            {'@xml:lang': 'en', '$': 'pond'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB|http://ark.frantiq.fr/ark:/26678/pcrtSEg0ZTFHts',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Themes|methodology|document analysis|record-diffusion|graphics|cartography|hydrography|pond'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|géographie|géographie physique|hydrographie|étang'}]},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB|http://ark.frantiq.fr/ark:/26678/pcrtSEg0ZTFHts',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie|hydrographie|étang'}}],
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hidrografía'},
              {'@xml:lang': 'fr', '$': 'hydrographie'},
              {'@xml:lang': 'en', '$': 'hydrography'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie|hydrographie'}},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie physique|hydrographie'}}],
             'definition': {'@xml:lang': 'fr',
              '$': "Etude et description des cours d'eau et des étendues d'eau (océans, mers, lacs...) qu'on peut observer à la surface de la terre mais également de la topographie maritime qui a pour objet de lever le plan du fond des mers et des fleuves, et de déterminer les diverses profondeurs de l'eau, la force des courants et des marées, dans le but d'établir des cartes marines. (d'après Wikipédia)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/48564532-017e-4859-b974-beedb5e20b22',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Étang'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2112|http://data.culture.fr/thesaurus/resource/ark:/67717/48564532-017e-4859-b974-beedb5e20b22'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2112',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Zone humide'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2112',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '030 Paysage - environnement|Environnement|Environnement naturel|Zone humide'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12398646q',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Agencement'},
            {'@xml:lang': 'fr', '$': 'Adaptation aux besoins'},
            {'@xml:lang': 'fr', '$': 'Personnalisation'},
            {'@xml:lang': 'fr', '$': "Organisation de l'espace"},
            {'@xml:lang': 'fr', '$': 'Installation'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005475',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Customizing'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5025',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'marina'},
            {'@xml:lang': 'es', '$': 'puerto deportivo'},
            {'@xml:lang': 'fr', '$': 'port de plaisance'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A small port that is used for pleasure rather than trade, often with hotels, restaurants and bars.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/3834',
             'prefLabel': [{'@xml:lang': 'en', '$': 'harbour'},
              {'@xml:lang': 'es', '$': 'puerto'},
              {'@xml:lang': 'fr', '$': 'port'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Area of water next to the coast, often surrounded by thick walls, where ships and boats can be sheltered.'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1628',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Port de plaisance'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Marina'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2135|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2003|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1116|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1627|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1628'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1627',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Port'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Équipement portuaire'},
              {'@xml:lang': 'fr', '$': 'Zone portuaire'},
              {'@xml:lang': 'fr', '$': 'Aménagement portuaire'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2135|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2003|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1116|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1627',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '024 Transports|Transport|Infrastructure de transport|Port'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11961397c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Étangs'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Mares'},
            {'@xml:lang': 'fr', '$': 'Étangs artificiels'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11998107b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Zones humides'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11992663r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Eaux stagnantes'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Eaux dormantes'}}}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6105'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85104792',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Ponds'},
           'altLabel': {'@xml:lang': 'en', '$': 'Pools (Ponds)'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85037414',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Dew-ponds'},
           'altLabel': {'@xml:lang': 'en', '$': 'Dewponds'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkopriOiyE4',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'nombre'},
            {'@xml:lang': 'en', '$': 'number'},
            {'@xml:lang': 'es', '$': 'número'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'chiffre'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80|http://ark.frantiq.fr/ark:/26678/pcrtzT83szfhZM|http://ark.frantiq.fr/ark:/26678/pcrtkopriOiyE4',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|linguistique|écriture|numérotation|nombre'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtzT83szfhZM',
             'prefLabel': [{'@xml:lang': 'es', '$': 'numeración'},
              {'@xml:lang': 'en', '$': 'numeration'},
              {'@xml:lang': 'fr', '$': 'numérotation'}],
             'altLabel': {'@xml:lang': 'en', '$': 'numbering'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80|http://ark.frantiq.fr/ark:/26678/pcrtzT83szfhZM'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Manière de numéroter (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933891j',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Épaves'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bateaux naufragés'},
            {'@xml:lang': 'fr', '$': 'Navires abandonnés'},
            {'@xml:lang': 'fr', '$': 'Bateaux disparus'},
            {'@xml:lang': 'fr', '$': 'Objets flottants'},
            {'@xml:lang': 'fr', '$': 'Navires naufragés'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133186911',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Droit maritime'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Législation maritime'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120495197',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biens vacants'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Biens sans maître'},
               {'@xml:lang': 'fr', '$': 'Res derelictae'},
               {'@xml:lang': 'fr', '$': 'Res nullius'},
               {'@xml:lang': 'fr', '$': 'Choses sans maître'},
               {'@xml:lang': 'fr', '$': 'Choses abandonnées'},
               {'@xml:lang': 'fr', '$': 'Vacance (droit)'},
               {'@xml:lang': 'fr', '$': 'Choses vacantes'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh89005199',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Shipwrecks--Law and legislation'},
           'altLabel': {'@xml:lang': 'en', '$': 'Wreck'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM6WKp5XFlj',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'prospección'},
            {'@xml:lang': 'fr', '$': 'prospection'},
            {'@xml:lang': 'en', '$': 'survey'}],
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'reconnaissance archéologique'},
            {'@xml:lang': 'fr', '$': 'survey'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl|http://ark.frantiq.fr/ark:/26678/pcrtM6WKp5XFlj',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéologie de terrain|prospection'},
             {'@xml:lang': 'es',
              '$': 'Tema|metodología|recolección de datos|arqueología|arqueología de campo|prospección'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'archéologie de terrain'},
              {'@xml:lang': 'es', '$': 'arqueología de campo'},
              {'@xml:lang': 'en', '$': 'field archaeology'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'archéologie terrain'},
              {'@xml:lang': 'en', '$': 'field archeology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu|http://ark.frantiq.fr/ark:/26678/pcrtemrc1fSSWl',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|acquisition des données|archéologie|archéologie de terrain'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119326505',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Prospection'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Prospection minière'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525373',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Prospección'},
           'label': {'@xml:lang': 'es', '$': 'Prospección'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Prospección minera'},
            {'@xml:lang': 'es', '$': 'Yacimientos minerales--Prospección'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85107591',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prospecting'},
           'altLabel': {'@xml:lang': 'en', '$': 'Exploration (Prospecting)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119796422',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Forages'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Forages profonds'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85015858',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Borings'},
           'altLabel': {'@xml:lang': 'en', '$': 'Deep borings'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11950206h',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gestion'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences de la gestion'},
            {'@xml:lang': 'fr', '$': 'Gestion, Sciences de la'},
            {'@xml:lang': 'fr', '$': 'Sciences de gestion'},
            {'@xml:lang': 'fr', '$': 'Techniques de gestion'},
            {'@xml:lang': 'fr', '$': 'Direction'},
            {'@xml:lang': 'fr', '$': 'Management'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007911',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Management'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11943941g',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Antiquités'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Objets archéologiques'},
            {'@xml:lang': 'fr', '$': 'Artefacts archéologiques'},
            {'@xml:lang': 'fr', '$': 'Spécimens archéologiques'},
            {'@xml:lang': 'fr', '$': 'Antiquités archéologiques'},
            {'@xml:lang': 'fr', '$': 'Vestiges archéologiques'},
            {'@xml:lang': 'fr', '$': 'Pièces archéologiques'},
            {'@xml:lang': 'fr', '$': 'Restes archéologiques'},
            {'@xml:lang': 'fr', '$': 'Objets antiques'},
            {'@xml:lang': 'fr', '$': 'Objets anciens (archéologie)'},
            {'@xml:lang': 'fr', '$': 'Trésors archéologiques'},
            {'@xml:lang': 'fr', '$': 'Antiquités (archéologie)'},
            {'@xml:lang': 'fr', '$': 'Pièces antiques'},
            {'@xml:lang': 'fr', '$': 'Restes antiques'},
            {'@xml:lang': 'fr', '$': 'Patrimoine archéologique'},
            {'@xml:lang': 'fr', '$': 'Artefacts (archéologie)'},
            {'@xml:lang': 'fr', '$': 'Documents archéologiques'},
            {'@xml:lang': 'fr', '$': 'Patrimoine antique'},
            {'@xml:lang': 'fr', '$': 'Vestiges antiques'},
            {'@xml:lang': 'fr', '$': 'Matériel archéologique'},
            {'@xml:lang': 'fr', '$': 'Ressources archéologiques'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119366117',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation antique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Civilisation de l'Antiquité"},
               {'@xml:lang': 'fr', '$': 'Civilisation ancienne'},
               {'@xml:lang': 'fr', '$': 'Culture antique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133190710',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Patrimoine culturel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Trésors artistiques'},
               {'@xml:lang': 'fr', '$': 'Patrimonialisation'},
               {'@xml:lang': 'fr', '$': 'Patrimoine immobilier (culture)'},
               {'@xml:lang': 'fr', '$': 'Patrimoine immatériel'},
               {'@xml:lang': 'fr', '$': 'Patrimoine ethnologique'},
               {'@xml:lang': 'fr', '$': 'Patrimoine ethnographique'},
               {'@xml:lang': 'fr', '$': 'Richesses artistiques'},
               {'@xml:lang': 'fr', '$': 'Héritage culturel'},
               {'@xml:lang': 'fr', '$': 'Patrimoine (culture)'},
               {'@xml:lang': 'fr', '$': 'Biens culturels'},
               {'@xml:lang': 'fr', '$': 'Patrimoine mobilier (culture)'},
               {'@xml:lang': 'fr', '$': 'Patrimoine artistique'},
               {'@xml:lang': 'fr', '$': 'Patrimoine historique'},
               {'@xml:lang': 'fr', '$': 'Patrimoine intellectuel'},
               {'@xml:lang': 'fr', '$': 'Patrimoine national (culture)'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525130',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Restos arqueológicos'},
           'label': {'@xml:lang': 'es', '$': 'Restos arqueológicos'},
           'altLabel': {'@xml:lang': 'es', '$': 'Patrimonio arqueológico'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002344',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Antiquities'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': [{'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'en',
              '$': 'Archaeology and Prehistory'},
             {'@xml:lang': 'fr', '$': 'Archéologie et Préhistoire'},
             {'@xml:lang': 'es', '$': 'Arqueología y Prehistoria'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Archéologie et Préhistoire"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Archaeology and Prehistory'},
              {'@xml:lang': 'es',
               '$': 'Ciencias sociales|Arqueología y Prehistoria'}]},
            'definition': [{'@xml:lang': 'fr',
              '$': 'L\'archéologie est une discipline scientifique dont l\'objectif est d\'étudier l\'Homme depuis la Préhistoire jusqu’à l\'époque contemporaine à travers sa technique grâce à l\'ensemble des vestiges matériels ayant subsisté et qu’il est parfois nécessaire de mettre au jour (objets, outils, ossements, poteries, armes, pièces de monnaie, bijoux, vêtements, empreintes, traces, peintures, bâtiments, infrastructures, etc.). L\'ensemble des artefacts et des écofacts relevant d\'une période, d\'une civilisation, d\'une région, ou d\'un peuplement donné, s\'appelle culture matérielle. Cette culture matérielle est avant tout un concept basé sur l\'assemblage de vestiges retrouvés dans des espaces et dans des chronologies contingentes, sur un même site, ou dans une même région, par exemple. On peut alors parler, pour désigner un ensemble cohérent, de culture archéologique (comme la culture de Hallstatt, ou la culture jomon, par exemple).  L’archéologue, dans une approche diachronique, acquiert donc l’essentiel de sa documentation à travers des travaux de terrain (prospections, sondages, fouilles, études de collections, analyses du bâti) par "opposition" à l’historien, dont les principales sources sont des textes. Mais l\'archéologue utilise aussi des documents écrits lorsque ceux-ci sont disponibles (inscriptions lapidaires, écrits sur parchemins ou papier, etc.), tout comme il peut faire appel aux sciences de la vie et de la terre ou aux autres sciences humaines (voir ci-dessous). L\'existence ou non de sources textuelles anciennes a permis d\'établir une division chronologique des spécialités archéologiques en trois grandes périodes: l\'archéologie de la Préhistoire (absence de sources textuelles), l\'Archéologie de la Protohistoire (peuples n\'ayant pas de sources textuelles mais étant cités dans ceux de peuples contemporains) et l\'archéologie des Périodes historiques (existence de sources textuelles). Il existe aussi des spécialisations archéologiques faites suivant le type d’artefacts étudiés (céramiques, bâti, etc.), ou à partir de la matière première des artefacts étudiés (pierre, terre crue, verre, os, cuir, etc.).  Le mot « archéologie » vient du grec ancien ἀρχαιολογία1 et est formé à partir des racines ἀρχαίος = ancien et λόγος = mot/parole/discours. Toutefois, c\'est avant tout à l\'étude de l\'objet fabriqué par l\'homme, donc à la technicité, que l\'archéologue consacre son travail.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Archéologie de Wikipédia en français'},
             {'@xml:lang': 'fr',
              '$': "La préhistoire (sans majuscule), appelée aussi archéologie préhistorique, est une discipline qui a pour ambition de reconstituer l'histoire et la vie des humains depuis leur apparition jusqu'à l'apparition de l'écriture, au cours de la période chronologique du même nom (la « Préhistoire », avec majuscule). Elle se fonde donc essentiellement sur l'examen et l'interprétation des témoignages de la présence humaine tels que les vestiges archéologiques découverts lors de fouilles ou les œuvres de l'art pariétal.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Préhistoire (discipline) de Wikipédia en français"}],
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie293',
               'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
                {'@xml:lang': 'fr', '$': 'Archéologie'},
                {'@xml:lang': 'es', '$': 'Arqueología'}],
               'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
                 'expandedLabel': [{'@xml:lang': 'fr',
                   '$': 'Sociétés|Histoire|Archéologie'},
                  {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
                  {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
                {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
                 'expandedLabel': [{'@xml:lang': 'es',
                   '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
                  {'@xml:lang': 'fr',
                   '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
                  {'@xml:lang': 'en',
                   '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]}},
             {'@uri': 'http://dbpedia.org/resource/Archaeology'}]},
           {'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.hist',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
             {'@xml:lang': 'en', '$': 'History'},
             {'@xml:lang': 'es', '$': 'Historia'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.hist',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Histoire"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|History'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Historia'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie228',
               'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
                {'@xml:lang': 'es', '$': 'Historia'},
                {'@xml:lang': 'en', '$': 'History'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
                'expandedLabel': [{'@xml:lang': 'fr',
                  '$': 'Sociétés|Histoire'},
                 {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
                 {'@xml:lang': 'en', '$': 'Society|History'}]}}},
             {'@uri': 'http://dbpedia.org/resource/History'}]}]},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': [{'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie293',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
             {'@xml:lang': 'fr', '$': 'Archéologie'},
             {'@xml:lang': 'es', '$': 'Arqueología'}],
            'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': 'Sociétés|Histoire|Archéologie'},
               {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
               {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
             {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
              'expandedLabel': [{'@xml:lang': 'es',
                '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
               {'@xml:lang': 'fr',
                '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
               {'@xml:lang': 'en',
                '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]},
           {'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie228',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
             {'@xml:lang': 'es', '$': 'Historia'},
             {'@xml:lang': 'en', '$': 'History'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
              {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
              {'@xml:lang': 'en', '$': 'Society|History'}]}}]}]}}},
     {'@uri': '10670/1.jfezo4',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'Vikings in Aquitaine and their connections, ninth to early eleventh centuries'},
        {'@xml:lang': 'fr',
         '$': 'Les vikings en Aquitaine et leurs connexions, IXe-début XIe siècle'}],
       'url': 'https://tel.archives-ouvertes.fr/tel-03339358',
       'enrichedCreators': {'creator': {'@origin': 'Lewis, Stephen M.',
         '@normalizedAuthor': 'Lewis, Stephen M.',
         '@idAuthor': 'lewis_stephen_m',
         'firstname': 'Stephen M.',
         'lastname': 'Lewis',
         'title': [],
         'sameAs': {'idhal': 'stephen-m-lewis'}}},
       'date': {'@origin': '2021-06-10',
        '@startDate': '2021-06-10',
        '@endDate': '2021-06-10',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-06-10',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://tel.archives-ouvertes.fr/tel-03339358'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '28132081',
          '$': 'https://tel.archives-ouvertes.fr/tel-03339358/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://tel.archives-ouvertes.fr/tel-03339358/file/sygal_fusion_28677-lewis-stephen.pdf'}],
        'similar': ['NNT: 2021NORMC007', 'tel-03339358']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'Northmen'},
         {'@xml:lang': 'en', '$': 'Aquitaine'},
         {'@xml:lang': 'en', '$': 'Gascony'},
         {'@xml:lang': 'en', '$': 'Scandinavia'},
         {'@xml:lang': 'en', '$': 'Connections'},
         {'@xml:lang': 'en', '$': 'Historiography'},
         {'@xml:lang': 'fr', '$': 'Gascogne'},
         {'@xml:lang': 'fr', '$': 'Loire'},
         {'@xml:lang': 'fr', '$': 'Connexions'},
         '[SHS.HIST]Humanities and Social Sciences/History']},
       'abstract': [{'@xml:lang': 'en',
         '$': 'The history of ‘vikings’ in Aquitaine encompasses, on and off, more than two centuries, from their first attested appearance and attacks on some ‘islands off Aquitaine’ in 799 until the early eleventh century. It is a subject that historians have only touched upon sporadically and generally in a very piecemeal fashion, and it has never hitherto been studied in any real depth. The objectives for this study were twofold. The first has been to attempt to fill the yawning historiographical gaps in terms of our understanding of the activities of the various Scandinavian groups operating in Aquitaine, from the Loire valley southwards, over the course of these two hundred years. The aim was not just to research and present some general summary, but was rather to provide to the extent possible an in-depth assessment and interpretation of which chieftains were involved, what they did and precisely when, what relationship they had with each other, and, at various times, with Frankish kings and magnates. In addition, we wanted to see if there is any real evidence for a very long-lasting, almost permanent, settlement of Scandinavians in Aquitaine, as has sometimes been suggested. The second objective of this study is to examine the different connections of the Scandinavians involved and to place them in a wider European context. It appears evident that, as elsewhere, all the groups and fleets of ‘vikings’ active in Aquitaine have been connected by complex links that this research attempts to explore and expose. They constantly moved around from one region of western Europe to another, as some raiding opportunities were exhausted or closed down by local defences whilst more appealing ones opened up elsewhere. These regions do not just include other territories in present-day France, but also those situated ‘overseas’, notably Britain, Ireland and the Irish Sea zone, the Iberian Peninsula and the Mediterranean, as well as Frisia and Scandinavia itself.'},
        {'@xml:lang': 'fr',
         '$': 'L’histoire des vikings en Aquitaine s’étend, par intermittence, sur plus de deux siècles, depuis leur première apparition attestée et les attaques sur certaines « îles au large de l’Aquitaine » en 799 jusqu’au début du XIe siècle. Ce sujet, abordé généralement de manière très fragmentaire par les historiens, n’a jamais été approfondi. Les objectifs de cette étude étaient doubles. Le premier a été de tenter de combler les lacunes historiographiques béantes de notre compréhension des activités des différents groupes scandinaves opérant en Aquitaine, depuis la vallée de la Loire vers le sud, au cours de ces deux cents ans. Le but n’était pas seulement de rechercher et de présenter un résumé général, mais plutôt de fournir, dans la mesure du possible, une analyse et une interprétation approfondies des chefs et flottes impliqués, de leurs activités et des relations qu’ils entretenaient entre eux et, à divers moments, avec les rois et les grands du royaume franc. En outre, nous avons voulu vérifier s’il existait des preuves réelles d’une implantation très durable, presque permanente, des Scandinaves en Aquitaine, comme il a parfois été suggéré. Le deuxième objectif de cette étude est d’examiner les différentes connexions des Scandinaves impliqués et de les placer dans un contexte européen plus large. Il paraît évident que, comme ailleurs, tous les groupes et flottes de « vikings » actifs en Aquitaine ont été connectés par des liens complexes que cette recherche entend à mettre au jour. Ils se sont déplacés en permanence d’une région à une autre en Europe occidentale, lorsque les opportunités de pillage ont été restreintes par la défense locale, tandis que s’offraient ailleurs des horizons plus attrayants. Ces régions n’incluent pas seulement d’autres territoires de la France actuelle, mais aussi ceux situés « outre-mer », à savoir la Grande-Bretagne, l’Irlande et la zone de la mer d’Irlande, la péninsule Ibérique et la Méditerranée, ainsi que la Frise et la Scandinavie elle-même.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/eng',
           'prefLabel': [{'@xml:lang': 'en', '$': 'English'},
            {'@xml:lang': 'fr', '$': 'Anglais'},
            {'@xml:lang': 'es', '$': 'Idioma inglés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '6',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwXbtfj20yc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Vikingos'},
             {'@xml:lang': 'en', '$': 'Vikings'},
             {'@xml:lang': 'fr', '$': 'Vikings'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG|http://ark.frantiq.fr/ark:/26678/pcrtwXbtfj20yc',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Peuples|Peuples|Vikings'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Peoples'},
               {'@xml:lang': 'fr', '$': 'Peuples'},
               {'@xml:lang': 'es', '$': 'Pueblos'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Peuples|Peuples'}}}}},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85143340',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Vikings'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85092585',
              'prefLabel': {'@xml:lang': 'en', '$': 'Northmen'},
              'altLabel': {'@xml:lang': 'en', '$': 'Norsemen'}}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119343170'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85061212',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'History'},
            'altLabel': {'@xml:lang': 'en', '$': 'Annals'},
            'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/2336'},
             {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119344445'},
             {'@uri': 'http://lod.nal.usda.gov/nalt/5339'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire'},
             {'@xml:lang': 'es', '$': 'historia'},
             {'@xml:lang': 'en', '$': 'history'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|histoire'}},
            'definition': {'@xml:lang': 'fr'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
               {'@xml:lang': 'es', '$': 'historia-civilización'},
               {'@xml:lang': 'en', '$': 'history-civilization'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
              'definition': {'@xml:lang': 'fr',
               '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3983',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'history'},
             {'@xml:lang': 'es', '$': 'historia'},
             {'@xml:lang': 'fr', '$': 'histoire'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3635'},
             {'@uri': 'http://eurovoc.europa.eu/1245'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005024',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'History'},
            'altLabel': {'@xml:lang': 'en', '$': 'Frontier troubles'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85068496',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Islands'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Isles'},
             {'@xml:lang': 'en', '$': 'Islets'}],
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074366',
              'prefLabel': {'@xml:lang': 'en', '$': 'Landforms'},
              'altLabel': {'@xml:lang': 'en', '$': 'Land forms'}}},
            'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119499428'},
             {'@uri': 'http://lod.nal.usda.gov/nalt/47822'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85042563',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Eleventh century'},
            'altLabel': {'@xml:lang': 'en', '$': '11th century'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85085001',
              'prefLabel': {'@xml:lang': 'en', '$': 'Middle Ages'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Medieval history'},
               {'@xml:lang': 'en', '$': 'History, Medieval'},
               {'@xml:lang': 'en', '$': 'Middle Ages--History'},
               {'@xml:lang': 'en', '$': 'Medieval period'},
               {'@xml:lang': 'en', '$': 'World history, Medieval'},
               {'@xml:lang': 'en', '$': 'Dark Ages'}]}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11993184k'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
             {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
             {'@xml:lang': 'fr', '$': 'sujet'}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85061091',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Historians'},
            'altLabel': {'@xml:lang': 'en', '$': 'Historiographers'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85118236',
              'prefLabel': {'@xml:lang': 'en', '$': 'Scholars'}}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119342240'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85047377',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fashion'},
            'altLabel': {'@xml:lang': 'en', '$': 'Style in dress'},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119325083'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQ29r25xDSh',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'fashion'},
             {'@xml:lang': 'es', '$': 'moda'},
             {'@xml:lang': 'fr', '$': 'mode'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'mode vestimentaire'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q|http://ark.frantiq.fr/ark:/26678/pcrtQ29r25xDSh',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|society|standards of behaviour|fashion'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Manière de se vêtir, propre à une époque ou à une région en fonction des tendances. (Wikipédia)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q',
              'prefLabel': [{'@xml:lang': 'es', '$': 'costumbres'},
               {'@xml:lang': 'fr', '$': 'moeurs'},
               {'@xml:lang': 'en', '$': 'standards of behaviour'}],
              'altLabel': {'@xml:lang': 'en', '$': 'mores'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Habitudes, naturelles ou acquises, relatives à la pratique du bien ou du mal (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85149047',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Yawning'},
            'altLabel': {'@xml:lang': 'en', '$': 'Oscitation'},
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85113178',
               'prefLabel': {'@xml:lang': 'en', '$': 'Respiration'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Animals--Respiration'},
                {'@xml:lang': 'en', '$': 'Animal respiration'},
                {'@xml:lang': 'en', '$': 'Ventilation (Physiology)'},
                {'@xml:lang': 'en', '$': 'Breathing'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2002006586',
               'prefLabel': {'@xml:lang': 'en', '$': 'Respiration'}}}],
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11942578g'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85029421',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Comprehension'},
            'altLabel': {'@xml:lang': 'en', '$': 'Understanding'},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119492232'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtySs2lWdI4z',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'valle'},
             {'@xml:lang': 'fr', '$': 'vallée'},
             {'@xml:lang': 'en', '$': 'valley'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01|http://ark.frantiq.fr/ark:/26678/pcrtySs2lWdI4z',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|géographie|géographie physique|géomorphologie|vallée'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01',
              'prefLabel': [{'@xml:lang': 'es', '$': 'geomorfología'},
               {'@xml:lang': 'fr', '$': 'géomorphologie'},
               {'@xml:lang': 'en', '$': 'geomorphology'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'relief géographique'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie physique|géomorphologie'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/8887',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'valley'},
             {'@xml:lang': 'es', '$': 'valles'},
             {'@xml:lang': 'fr', '$': 'vallée'}],
            'definition': {'@xml:lang': 'en',
             '$': "Any low-lying land bordered by higher ground; especially an elongate, relatively large, gently sloping depression of the Earth's surface, commonly situated between two mountains or between ranges of hills or mountains, and often containing a stream with an outlet. It is usually developed by stream erosion, but may be formed by faulting."},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4629',
              'prefLabel': [{'@xml:lang': 'en', '$': 'landform'},
               {'@xml:lang': 'es', '$': 'forma de relieve'},
               {'@xml:lang': 'fr', '$': 'relief'}],
              'definition': {'@xml:lang': 'en',
               '$': "Any physical, recognizable form or feature of the Earth's surface, having a characteristic shape and produced by natural causes; it includes major forms such as plane, plateau and mountain, and minor forms such as hill, valley, slope, esker, and dune. Taken together the landforms make up the surface configuration of the Earth's."}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
             {'@xml:lang': 'es', '$': 'años'},
             {'@xml:lang': 'en', '$': 'years'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
               {'@xml:lang': 'en', '$': 'division of time'},
               {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
             {'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'},
             {'@xml:lang': 'en', '$': 'research'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'organisation de la recherche'},
               {'@xml:lang': 'es', '$': 'organización de la investigación'},
               {'@xml:lang': 'en', '$': 'organization of research'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113021',
            'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Scientific research'},
             {'@xml:lang': 'en', '$': 'Science research'},
             {'@xml:lang': 'en', '$': 'Science--Research'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
            'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/403'},
             {'@uri': 'http://lod.nal.usda.gov/nalt/5458'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'general'},
             {'@xml:lang': 'es', '$': 'general'},
             {'@xml:lang': 'fr', '$': 'général'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe|http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'chef militaire'},
               {'@xml:lang': 'es', '$': 'jefe militar'},
               {'@xml:lang': 'en', '$': 'military chief'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85045926',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Evaluation'},
            'altLabel': {'@xml:lang': 'en', '$': 'Assessment'},
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85113021',
               'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Scientific research'},
                {'@xml:lang': 'en', '$': 'Science research'},
                {'@xml:lang': 'en', '$': 'Science--Research'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
               'prefLabel': {'@xml:lang': 'en', '$': 'Research'}}}],
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11975815r'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85008779',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Tax assessment'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Assessment, Tax'},
             {'@xml:lang': 'en', '$': 'Assessment'},
             {'@xml:lang': 'en', '$': 'Property tax--Assessment'},
             {'@xml:lang': 'en', '$': 'Real property tax--Assessment'},
             {'@xml:lang': 'en', '$': 'Assessed valuation'}],
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85132805',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Tax administration and procedure'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Tax practice'},
               {'@xml:lang': 'en', '$': 'Tax procedure'}]}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119717474'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'interpretación'},
             {'@xml:lang': 'en', '$': 'interpretation'},
             {'@xml:lang': 'fr', '$': 'interprétation'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv|http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation|interprétation'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
              'prefLabel': [{'@xml:lang': 'es', '$': 'documentación'},
               {'@xml:lang': 'fr', '$': 'documentation'},
               {'@xml:lang': 'en', '$': 'source material'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation'}}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006354',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Interpretation'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85000817',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Addition'},
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85007163',
               'prefLabel': {'@xml:lang': 'en', '$': 'Arithmetic'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85111702',
               'prefLabel': {'@xml:lang': 'en', '$': 'Ready-reckoners'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Computing tables'},
                {'@xml:lang': 'en', '$': 'Tables, Mathematical'},
                {'@xml:lang': 'en', '$': 'Tables, Computing'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85046010',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Evidence, Real'},
            'altLabel': {'@xml:lang': 'en', '$': 'Real evidence'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85046016',
              'prefLabel': {'@xml:lang': 'en', '$': 'Evidence (Law)'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Extrinsic evidence'},
               {'@xml:lang': 'en', '$': 'Trial evidence'},
               {'@xml:lang': 'en', '$': 'Parol evidence'}]}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
             {'@xml:lang': 'es', '$': 'hábitat'},
             {'@xml:lang': 'en', '$': 'settlement'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
             {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
            'definition': {'@xml:lang': 'fr',
             '$': "Lieu d'habitation construit."},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX',
               'prefLabel': [{'@xml:lang': 'fr',
                 '$': 'architecture domestique'},
                {'@xml:lang': 'es', '$': 'arquitectura doméstica'},
                {'@xml:lang': 'en', '$': 'domestic architecture'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX'},
               'definition': {'@xml:lang': 'fr',
                '$': 'Architecture de bâtiment à usage individuel ou familial'}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo',
               'prefLabel': [{'@xml:lang': 'en', '$': 'edifice'},
                {'@xml:lang': 'fr', '$': 'édifice'},
                {'@xml:lang': 'es', '$': 'edificio'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment'},
                {'@xml:lang': 'en', '$': 'building'},
                {'@xml:lang': 'fr', '$': 'monument'}],
               'definition': {'@xml:lang': 'fr',
                '$': 'Ouvrage architectural aux proportions importantes (TLF)'}}}]},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtNfrO4vTbeW',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Escandinavos'},
             {'@xml:lang': 'fr', '$': 'Scandinaves'},
             {'@xml:lang': 'en', '$': 'Scandinavians'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG|http://ark.frantiq.fr/ark:/26678/pcrtiPdHebm1xz|http://ark.frantiq.fr/ark:/26678/pcrtNfrO4vTbeW',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Peuples|Peuples|Autres Peuples|Scandinaves'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiPdHebm1xz',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres Peuples'},
               {'@xml:lang': 'en', '$': 'Other Peoples'},
               {'@xml:lang': 'es', '$': 'Otros Pueblos'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG|http://ark.frantiq.fr/ark:/26678/pcrtiPdHebm1xz',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Peuples|Peuples|Autres Peuples'}}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85117975',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Scandinavians'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85045371',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Ethnology--Scandinavia'}}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11939030k'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu'},
             {'@xml:lang': 'es', '$': 'lugar'},
             {'@xml:lang': 'en', '$': 'place'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw|http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space|place'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
               {'@xml:lang': 'es', '$': 'espacio'},
               {'@xml:lang': 'en', '$': 'space'}],
              'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005373',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Context'},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb123979798'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtzuzR7iTq5A',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'region'},
             {'@xml:lang': 'fr', '$': 'région'},
             {'@xml:lang': 'es', '$': 'región'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n|http://ark.frantiq.fr/ark:/26678/pcrtzuzR7iTq5A',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|vie administrative|division administrative|région'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'administrative division'},
               {'@xml:lang': 'es', '$': 'división administrativa'},
               {'@xml:lang': 'fr', '$': 'division administrative'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|vie administrative|division administrative'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7059',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'region'},
             {'@xml:lang': 'es', '$': 'regiones'},
             {'@xml:lang': 'fr', '$': 'région'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A designated area or an administrative division of a city, county or larger geographical territory that is formulated according to some biological, political, economic or demographic criteria.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8062',
              'prefLabel': [{'@xml:lang': 'en', '$': 'state'},
               {'@xml:lang': 'es', '$': 'estado'},
               {'@xml:lang': 'fr', '$': 'état'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3031'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/9295',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Western Europe'},
             {'@xml:lang': 'es', '$': 'Europa occidental'},
             {'@xml:lang': 'fr', '$': "Europe de l'Ouest"}],
            'definition': {'@xml:lang': 'en',
             '$': 'A geographic region of the European continent surrounded by the North Sea, Atlantic Ocean and the Mediterranean Sea, including Belgium, France, Germany, Great Britain, Greece, Italy, Luxembourg, Netherlands, Portugal, Spain and other member countries of the Western European Union.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2992',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The second smallest continent, forming the W extension of Eurasia: the border with Asia runs from the Urals to the Caspian and the Black Sea. The coastline is generally extremely indented and there are several peninsulas (notably Scandinavia, Italy and Iberia) and offshore islands (including the British Isles and Iceland). It contains a series of great mountain systems in the south (Pyrenees, Alps, Apennines, Carpathians, Caucasus), a large central plain, and a N region of lakes and mountains in Scandinavia.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_8364'},
             {'@uri': 'http://eurovoc.europa.eu/913'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh95003677',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Europe, Western'},
            'altLabel': [{'@xml:lang': 'en', '$': 'West Europe'},
             {'@xml:lang': 'en', '$': 'Western Europe'}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
             {'@xml:lang': 'en', '$': 'Western Europe'},
             {'@xml:lang': 'es', '$': 'Europa Occidental'}],
            'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
             {'@xml:lang': 'es', '$': 'Europa del oeste'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale'},
              {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe'},
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007660',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Regions'},
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99002121',
               'prefLabel': {'@xml:lang': 'en',
                '$': 'Administrative and political divisions'},
               'altLabel': {'@xml:lang': 'en', '$': 'Political divisions'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85000909',
               'prefLabel': {'@xml:lang': 'en',
                '$': 'Administrative and political divisions'},
               'altLabel': [{'@xml:lang': 'en',
                 '$': 'Precincts (Political science)'},
                {'@xml:lang': 'en', '$': 'Political divisions'},
                {'@xml:lang': 'en', '$': 'Aldermanic districts'},
                {'@xml:lang': 'en', '$': 'Voting precincts'},
                {'@xml:lang': 'en', '$': 'Wards (Political science)'}]}}]},
           {'@count': '2',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067964',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Ireland'},
            'altLabel': {'@xml:lang': 'en', '$': 'Irish Free State'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#IRLANDE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Irlande'},
             {'@xml:lang': 'en', '$': 'Ireland'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#IRLANDE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe septentrionale|Irlande'},
              {'@xml:lang': 'en', '$': 'Europe|Northern Europe|Ireland'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_SEPTENTRIONALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe septentrionale'},
               {'@xml:lang': 'en', '$': 'Northern Europe'},
               {'@xml:lang': 'es', '$': 'Europa del Norte'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe du Nord'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe septentrionale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa del Norte'},
                {'@xml:lang': 'en', '$': 'Europe|Northern Europe'}]}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85068118',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Irish Sea'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2003003080',
              'prefLabel': {'@xml:lang': 'en', '$': 'Seas'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Epeiric seas'},
               {'@xml:lang': 'en', '$': 'Inland seas'},
               {'@xml:lang': 'en', '$': 'Continental seas'},
               {'@xml:lang': 'en', '$': 'Epicontinental seas'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12486086s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': "Irlande, Mer d'"},
            'altLabel': {'@xml:lang': 'en', '$': 'Irish Sea'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#MER_D_IRLANDE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': "Mer d'Irlande"},
             {'@xml:lang': 'en', '$': 'Irish Sea'}],
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#OCEAN_ATLANTIQUE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Océan Atlantique'},
               {'@xml:lang': 'en', '$': 'Atlantic Ocean'},
               {'@xml:lang': 'es', '$': 'Océano Atlántico'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Atlantique'},
               {'@xml:lang': 'en', '$': 'Atlantic'},
               {'@xml:lang': 'es', '$': 'Atlantico'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2005005381',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Iberian Peninsula'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Ibérica, Península'},
             {'@xml:lang': 'en', '$': 'Península Ibérica'},
             {'@xml:lang': 'en', '$': 'Hispania (Iberian Peninsula)'},
             {'@xml:lang': 'en', '$': 'Península Hispánica'},
             {'@xml:lang': 'en', '$': 'Hispánica, Península'},
             {'@xml:lang': 'en', '$': 'Iberia (Iberian Peninsula)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2006000915',
              'prefLabel': {'@xml:lang': 'en', '$': 'Peninsulas--Europe'}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#PENINSULE_IBERIQUE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Péninsule ibérique'},
             {'@xml:lang': 'en', '$': 'Iberian Peninsula'},
             {'@xml:lang': 'es', '$': 'Península Ibérica'}],
            'altLabel': [{'@xml:lang': 'es', '$': 'Iberia'},
             {'@xml:lang': 'fr', '$': 'Ibérie'},
             {'@xml:lang': 'es', '$': 'Península Hispánica'},
             {'@xml:lang': 'fr', '$': 'Hispanie'}],
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GeoEthno'}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'pozo'},
             {'@xml:lang': 'fr', '$': 'puits'},
             {'@xml:lang': 'en', '$': 'well'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B|http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|public works|hydraulics|well'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hidráulica'},
               {'@xml:lang': 'en', '$': 'hydraulics'},
               {'@xml:lang': 'fr', '$': 'hydraulique'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'installation hydraulique'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|hydraulique"}},
              'definition': {'@xml:lang': 'fr',
               '$': "Science et technique qui traitent des problèmes posés par l'utilisation de l'eau (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/9290',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'well'},
             {'@xml:lang': 'es', '$': 'pozos'},
             {'@xml:lang': 'fr', '$': 'puits'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A hole dug into the earth to reach a supply of water, oil, brine or gas.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9165',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'water distribution system'},
               {'@xml:lang': 'es', '$': 'sistema de distribución de agua'},
               {'@xml:lang': 'fr', '$': "réseau de distribution d'eau"}],
              'definition': {'@xml:lang': 'en',
               '$': 'The system of pipes supplying water to communities and industries.'}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85117937',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Scandinavia'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Fennoscandia'},
             {'@xml:lang': 'en', '$': 'Norden'},
             {'@xml:lang': 'en', '$': 'Nordic countries'}],
            'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/698'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85032173',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Cooks'},
            'altLabel': {'@xml:lang': 'en', '$': 'Chefs'},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119318258'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00007590',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Relations'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Relations--Foreign countries'},
             {'@xml:lang': 'en', '$': 'Relations (Canon law)'}],
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11976472q'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt20NFpa2llW',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'relaciones'},
             {'@xml:lang': 'en', '$': 'relations'},
             {'@xml:lang': 'fr', '$': 'relations'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'échanges'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK|http://ark.frantiq.fr/ark:/26678/pcrt20NFpa2llW'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Lien moral et variable entre groupes (Robert)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
              'prefLabel': [{'@xml:lang': 'en', '$': 'civilization processes'},
               {'@xml:lang': 'fr', '$': 'faits de civilisation'},
               {'@xml:lang': 'es', '$': 'hechos de civilización'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|histoire-civilisation|faits de civilisation'}}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85038575',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Divers'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85131205',
              'prefLabel': {'@xml:lang': 'en', '$': 'Swimmers'}}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb131743360'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85076801',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Liens'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Liens--Law and legislation'},
             {'@xml:lang': 'en', '$': 'Hypothecation'},
             {'@xml:lang': 'en', '$': 'Secret liens'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85042995',
               'prefLabel': {'@xml:lang': 'en', '$': 'Encumbrances (Law)'},
               'altLabel': {'@xml:lang': 'en', '$': 'Incumbrances (Law)'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85119473',
               'prefLabel': {'@xml:lang': 'en', '$': 'Security (Law)'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Collateral security'},
                {'@xml:lang': 'en', '$': 'Secured transactions'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85031632',
               'prefLabel': {'@xml:lang': 'en', '$': 'Contracts, Maritime'},
               'altLabel': [{'@xml:lang': 'en',
                 '$': 'Contracts, Maritime--Law and legislation'},
                {'@xml:lang': 'en', '$': 'Maritime contracts'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85028940',
               'prefLabel': {'@xml:lang': 'en', '$': 'Commercial law'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Business law'},
                {'@xml:lang': 'en', '$': 'Law, Commercial'},
                {'@xml:lang': 'en', '$': 'Commerce--Law and legislation'},
                {'@xml:lang': 'en', '$': 'Business--Law and legislation'},
                {'@xml:lang': 'en', '$': 'Mercantile law'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85100104',
               'prefLabel': {'@xml:lang': 'en', '$': 'Personal property'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Personalty'},
                {'@xml:lang': 'en', '$': 'Property, Personal'},
                {'@xml:lang': 'en', '$': 'Choses'},
                {'@xml:lang': 'en', '$': 'Chattels'},
                {'@xml:lang': 'en',
                 '$': 'Personal property--Law and legislation'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85022775',
               'prefLabel': {'@xml:lang': 'en', '$': 'Chattel mortgages'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Hypothecation'},
                {'@xml:lang': 'en', '$': 'Warrants, Agricultural'},
                {'@xml:lang': 'en', '$': 'Agricultural warrants'}]}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85011032',
               'prefLabel': {'@xml:lang': 'en', '$': 'Bailments'},
               'altLabel': {'@xml:lang': 'en',
                '$': 'Bailments--Law and legislation'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85111739',
               'prefLabel': {'@xml:lang': 'en', '$': 'Real property'},
               'altLabel': [{'@xml:lang': 'en',
                 '$': 'Real property--Law and legislation'},
                {'@xml:lang': 'en', '$': 'Catastral surveys'},
                {'@xml:lang': 'en', '$': 'Real estate law'},
                {'@xml:lang': 'en', '$': 'Cadastral surveys'},
                {'@xml:lang': 'en', '$': 'Realty'},
                {'@xml:lang': 'en', '$': 'Property, Real'},
                {'@xml:lang': 'en', '$': 'Freehold'},
                {'@xml:lang': 'en', '$': 'Real estate'},
                {'@xml:lang': 'en', '$': 'Limitations (Law)'}]}}],
            'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb126540265'},
             {'@uri': 'http://content.glin.gov/subjectTerm/1501'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85029372',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Complexes'},
            'altLabel': {'@xml:lang': 'en', '$': 'Linear complexes'},
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85077162',
               'prefLabel': {'@xml:lang': 'en', '$': 'Line geometry'},
               'altLabel': {'@xml:lang': 'en', '$': 'Geometry, Line'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85003441',
               'prefLabel': {'@xml:lang': 'en', '$': 'Algebras, Linear'},
               'altLabel': {'@xml:lang': 'en', '$': 'Linear algebra'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85032235',
               'prefLabel': {'@xml:lang': 'en', '$': 'Coordinates'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85054133',
               'prefLabel': {'@xml:lang': 'en', '$': 'Geometry'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85136920',
               'prefLabel': {'@xml:lang': 'en',
                '$': 'Transformations (Mathematics)'}}}],
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11969422p'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85045631',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Europe'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Council of Europe countries'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85040608',
              'prefLabel': {'@xml:lang': 'en', '$': 'Eastern Hemisphere'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Old World'},
               {'@xml:lang': 'en', '$': 'Hemisphere, Eastern'}]}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_2724'},
             {'@uri': 'http://lod.nal.usda.gov/nalt/5987'}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#EUROPE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe'},
             {'@xml:lang': 'en', '$': 'Europe'},
             {'@xml:lang': 'es', '$': 'Europa'}],
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#GeoEthno'}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2992',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Europe'},
             {'@xml:lang': 'es', '$': 'Europa'},
             {'@xml:lang': 'fr', '$': 'Europe'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The second smallest continent, forming the W extension of Eurasia: the border with Asia runs from the Urals to the Caspian and the Black Sea. The coastline is generally extremely indented and there are several peninsulas (notably Scandinavia, Italy and Iberia) and offshore islands (including the British Isles and Iceland). It contains a series of great mountain systems in the south (Pyrenees, Alps, Apennines, Carpathians, Caucasus), a large central plain, and a N region of lakes and mountains in Scandinavia.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9380',
              'prefLabel': [{'@xml:lang': 'en', '$': 'world'},
               {'@xml:lang': 'es', '$': 'mundo'},
               {'@xml:lang': 'fr', '$': 'monde'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The Earth with all its inhabitants and all things upon it.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_2724'},
             {'@uri': 'http://eurovoc.europa.eu/909'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005530',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Destruction and pillage'},
            'altLabel': {'@xml:lang': 'en', '$': 'Pillage'},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12129001j'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85102139',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Pillage'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Plundering'},
             {'@xml:lang': 'en', '$': 'Looting'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85114596',
               'prefLabel': {'@xml:lang': 'en', '$': 'Robbery'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85145168',
               'prefLabel': {'@xml:lang': 'en', '$': 'War crimes'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85085249',
               'prefLabel': {'@xml:lang': 'en', '$': 'Military offenses'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Offenses, Military'},
                {'@xml:lang': 'en', '$': 'Military crimes'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092585',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Northmen'},
            'altLabel': {'@xml:lang': 'en', '$': 'Norsemen'},
            'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85045371',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Ethnology--Scandinavia'}}},
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11939030k'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85061211',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Historiography'},
            'altLabel': [{'@xml:lang': 'en', '$': 'History--Authorship'},
             {'@xml:lang': 'en', '$': 'History--Historiography'},
             {'@xml:lang': 'en', '$': 'History--Criticism'},
             {'@xml:lang': 'en', '$': 'Historical criticism'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00006049',
               'prefLabel': {'@xml:lang': 'en', '$': 'Authorship'},
               'altLabel': {'@xml:lang': 'en',
                '$': 'Attribution of authorship'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85010030',
               'prefLabel': {'@xml:lang': 'en', '$': 'Authorship'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Authoring (Authorship)'},
                {'@xml:lang': 'en', '$': 'Writing (Authorship)'}]}}],
            'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11934225b'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthwxAP9LOxf',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'historiografía'},
             {'@xml:lang': 'fr', '$': 'historiographie'},
             {'@xml:lang': 'en', '$': 'historiography'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrthwxAP9LOxf',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|historiographie'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Etude des savants qui ont écrit sur l'Antiquité (JC)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
               {'@xml:lang': 'es', '$': 'historia-civilización'},
               {'@xml:lang': 'en', '$': 'history-civilization'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
              'definition': {'@xml:lang': 'fr',
               '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006046',
            'inScheme': 'http://id.loc.gov/authorities/subjects',
            'prefLabel': {'@xml:lang': 'en', '$': 'Historiography'},
            'altLabel': [{'@xml:lang': 'en', '$': 'History--Authorship'},
             {'@xml:lang': 'en', '$': 'History--Historiography'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00006049',
               'prefLabel': {'@xml:lang': 'en', '$': 'Authorship'},
               'altLabel': {'@xml:lang': 'en',
                '$': 'Attribution of authorship'}}},
             {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85010030',
               'prefLabel': {'@xml:lang': 'en', '$': 'Authorship'},
               'altLabel': [{'@xml:lang': 'en', '$': 'Authoring (Authorship)'},
                {'@xml:lang': 'en', '$': 'Writing (Authorship)'}]}}]}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '13',
            '@uri': 'http://sws.geonames.org/3037350/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Aquitaine',
             {'@xml:lang': 'en', '$': 'Aquitaine'},
             {'@xml:lang': 'fr', '$': 'Aquitaine'},
             {'@xml:lang': 'es', '$': 'Aquitania'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Aquitaine'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/3037350/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Aquitania'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Aquitaine'},
              {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Aquitaine'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Aquitaine'},
              {'@xml:lang': 'en', '$': 'Europe|France|Aquitaine'}]},
            'latitude': '44.58333',
            'longitude': '1',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3017382/',
              'prefLabel': ['France',
               {'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'es', '$': 'Francia'},
               {'@xml:lang': 'en', '$': 'France'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
               {'@xml:lang': 'fr', '$': 'République Française'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|Francia'},
                {'@xml:lang': 'en', '$': 'Europe|France'}],
               'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
                {'@xml:lang': 'es', '$': 'Europa|France'},
                {'@xml:lang': 'en', '$': 'Europe|France'}]},
              'latitude': '46',
              'longitude': '2',
              'exactMatch': []}},
            'exactMatch': []},
           {'@count': '3',
            '@uri': 'http://sws.geonames.org/2997870/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Loire',
             {'@xml:lang': 'fr', '$': 'Département de la Loire'},
             {'@xml:lang': 'fr', '$': 'Loire'},
             {'@xml:lang': 'en', '$': 'Loire'},
             {'@xml:lang': 'es', '$': 'Loira'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Département de la Loire'},
             {'@xml:lang': 'fr', '$': 'Loire'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2983751/|http://sws.geonames.org/2997870/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Ródano-Alpes|Loira'},
              {'@xml:lang': 'fr',
               '$': 'Europe|France|Rhône-Alpes|Département de la Loire'},
              {'@xml:lang': 'en', '$': 'Europe|France|Rhône-Alpes|Loire'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Ródano-Alpes'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Rhône-Alpes'},
              {'@xml:lang': 'en', '$': 'Europe|France|Rhône-Alpes'}]},
            'latitude': '45.47169',
            'longitude': '4.43298',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2983751/',
              'prefLabel': ['Rhône-Alpes',
               {'@xml:lang': 'en', '$': 'Rhône-Alpes'},
               {'@xml:lang': 'fr', '$': 'Rhône-Alpes'},
               {'@xml:lang': 'es', '$': 'Ródano-Alpes'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Rhône-Alpes'},
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2983751/',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Ródano-Alpes'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Rhône-Alpes'},
                {'@xml:lang': 'en', '$': 'Europe|France|Rhône-Alpes'}],
               'expandedCountry': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Rhône-Alpes'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Rhône-Alpes'},
                {'@xml:lang': 'en', '$': 'Europe|France|Rhône-Alpes'}]},
              'latitude': '45.5',
              'longitude': '5.33333',
              'exactMatch': []}}},
           {'@count': '2',
            '@uri': 'http://sws.geonames.org/6255148/',
            'prefLabel': ['Europe',
             {'@xml:lang': 'en', '$': 'Europe'},
             {'@xml:lang': 'es', '$': 'Europa'},
             {'@xml:lang': 'fr', '$': 'Europe'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
            'latitude': '48.69096',
            'longitude': '9.14062'},
           {'@count': '2',
            '@uri': 'http://sws.geonames.org/3017382/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['France',
             {'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'es', '$': 'Francia'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'fr', '$': 'République Française'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
              {'@xml:lang': 'es', '$': 'Europa|Francia'},
              {'@xml:lang': 'en', '$': 'Europe|France'}],
             'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
              {'@xml:lang': 'es', '$': 'Europa|France'},
              {'@xml:lang': 'en', '$': 'Europe|France'}]},
            'latitude': '46',
            'longitude': '2',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
              'prefLabel': ['Europe',
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
              'latitude': '48.69096',
              'longitude': '9.14062'}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/2635167/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['United Kingdom',
             {'@xml:lang': 'fr', '$': 'Royaume-Uni'},
             {'@xml:lang': 'en', '$': 'United Kingdom'},
             {'@xml:lang': 'es', '$': 'United Kingdom'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Grande-Bretagne'},
             {'@xml:lang': 'fr', '$': 'Royaume-Uni'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2635167/',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Royaume-Uni'},
              {'@xml:lang': 'es', '$': 'Europa|United Kingdom'},
              {'@xml:lang': 'en', '$': 'Europe|United Kingdom'}],
             'expandedCountry': [{'@xml:lang': 'fr',
               '$': 'Europe|United Kingdom'},
              {'@xml:lang': 'es', '$': 'Europa|United Kingdom'},
              {'@xml:lang': 'en', '$': 'Europe|United Kingdom'}]},
            'latitude': '54.75844',
            'longitude': '-2.69531',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
              'prefLabel': ['Europe',
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
              'latitude': '48.69096',
              'longitude': '9.14062'}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/2963597/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Ireland',
             {'@xml:lang': 'fr', '$': 'Irlande'},
             {'@xml:lang': 'es', '$': 'República de Irlanda'},
             {'@xml:lang': 'en', '$': 'Republic of Ireland'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Irlande'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2963597/',
             'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Irlande'},
              {'@xml:lang': 'es', '$': 'Europa|República de Irlanda'},
              {'@xml:lang': 'en', '$': 'Europe|Republic of Ireland'}],
             'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|Ireland'},
              {'@xml:lang': 'es', '$': 'Europa|Ireland'},
              {'@xml:lang': 'en', '$': 'Europe|Ireland'}]},
            'latitude': '53',
            'longitude': '-8',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
              'prefLabel': ['Europe',
               {'@xml:lang': 'en', '$': 'Europe'},
               {'@xml:lang': 'es', '$': 'Europa'},
               {'@xml:lang': 'fr', '$': 'Europe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
              'latitude': '48.69096',
              'longitude': '9.14062'}},
            'exactMatch': [[], []]}]}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.hist',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'en', '$': 'History'},
            {'@xml:lang': 'es', '$': 'Historia'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.hist',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Histoire"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|History'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Historia'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie228',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
               {'@xml:lang': 'es', '$': 'Historia'},
               {'@xml:lang': 'en', '$': 'History'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
                {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
                {'@xml:lang': 'en', '$': 'Society|History'}]}}},
            {'@uri': 'http://dbpedia.org/resource/History'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie228',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'es', '$': 'Historia'},
            {'@xml:lang': 'en', '$': 'History'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
             {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
             {'@xml:lang': 'en', '$': 'Society|History'}]}}}]},
       'dc:language': 'en',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.w39x4o',
      'isidore': {'title': 'Isle – Balézie, route de l’Étoile',
       'url': 'http://journals.openedition.org/adlfi/104273',
       'enrichedCreators': {'creator': [{'@origin': 'Scuiller, Christian',
          '@normalizedAuthor': 'Scuiller, Christian',
          '@idAuthor': 'scuiller_christian',
          'firstname': 'Christian',
          'lastname': 'Scuiller',
          'title': [],
          'sameAs': {'idref': '188657266'}},
         {'@origin': 'Scuiller, Christian',
          '@normalizedAuthor': 'Scuiller, Christian',
          '@idAuthor': 'scuiller_christian',
          'firstname': 'Christian',
          'lastname': 'Scuiller',
          'title': [],
          'sameAs': {'idref': '188657266'}}]},
       'date': {'@origin': '2021-08-31',
        '@startDate': '2021-08-31',
        '@endDate': '2021-08-31',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-08-31',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28120846',
          '$': 'http://journals.openedition.org/adlfi/104273'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'http://journals.openedition.org/adlfi/tei/104273'}]},
       'abstract': 'Une celle et une chapelle dépendant de l’ordre de Grandmont sont mentionnée dès le xiiie\xa0s. à Balézie. Un diagnostic archéologique sur une parcelle du lieu-dit, emplacement présumé d’après les sources documentaires, s’est révélé négatif.',
       'types': {'type': 'archaeological note'},
       'source_info': {'collectionLabel': {'@shortLabel': 'OpenEdition Journals',
         '@handle': '10670/3.wnt2uz',
         '@collectionUuid': '1696a612-a6e4-473d-8f35-4cf007b39469',
         '$': 'OpenEdition Journals'},
        'collectionOrganization': {'@organizationUrl': 'http://www.openedition.org',
         '$': 'OpenEdition'},
        'collectionURLMainSite': {'@thumbnaiId': '630816',
         '$': 'http://journals.openedition.org'},
        'collectionInformations': {'collectionDescription': "Né en 1999, Revues.org est le plus ancien portail français de revues en ligne en sciences humaines et sociales. Il est développé par le Centre pour l'édition électronique ouverte (Cléo), un laboratoire associant le CNRS, l'EHESS, l'Université de Provence et l'Université d'Avignon. Depuis 2011, Revues.org fait partie du portail de ressources électronique OpenEdition.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'http://www.revues.org/images/revues-org.png',
         'collectionContactEmailAddress': 'contact@openedition.org'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'urn:doi:(10.4000/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.wnt2uz|10670/2.vvqtri',
         '$': 'OpenEdition Journals#adlfi'},
        'sourceCode': {'@handle': '10670/2.vvqtri',
         '$': '550704c7-4e03-45b5-80ee-70812beba045'},
        'sourceName': {'@shortLabel': 'adlfi',
         '$': 'ADLFI. Archéologie de la France - Informations'},
        'sourceISSN': 'https://portal.issn.org/resource/ISSN/2114-0502',
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4606393',
         '$': 'http://journals.openedition.org/adlfi'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://journals.openedition.org/adlfi',
         '$': "Conçue comme une coédition entre le ministère de la Culture et le CNRS, Archéologie de la France - Informations est une revue en ligne destinée à publier l'actualité des opérations archéologiques menées en France. Elle remplace Gallia Informations dont elle reprend les missions et assure le développement. AdlFI constitue une base de données à jour des dernières recherches et découvertes archéologiques en France, à l’usage des chercheurs nationaux et internationaux, des divers acteurs de l’archéologie et de tous ceux qui s’intéressent au patrimoine national."},
        'sourceOrganization': {'label': 'OpenEdition',
         'URI': 'http://www.openedition.org',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@openedition.org'},
        'sourceParameters': {'baseUrl': 'http://oai.openedition.org/',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9tOSfBmNuc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'carretera'},
             {'@xml:lang': 'en', '$': 'road'},
             {'@xml:lang': 'fr', '$': 'route'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtjclbYvph1S|http://ark.frantiq.fr/ark:/26678/pcrt9tOSfBmNuc',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|public works|public road network|road'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Voie de communication terrestre (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtjclbYvph1S',
              'prefLabel': [{'@xml:lang': 'en', '$': 'public road network'},
               {'@xml:lang': 'es', '$': 'red viaria'},
               {'@xml:lang': 'fr', '$': 'voirie'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtjclbYvph1S',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|voirie"}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ensemble des voies de circulation terrestres et partie de l'administration publique ayant pour objet leur établissement et leur entretien. (ES)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3963',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'highway'},
             {'@xml:lang': 'es', '$': 'carretera'},
             {'@xml:lang': 'fr', '$': 'route'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A public road especially an important road that joins cities or towns together.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7272',
              'prefLabel': [{'@xml:lang': 'en', '$': 'road'},
               {'@xml:lang': 'es', '$': 'carreteras'},
               {'@xml:lang': 'fr', '$': 'route'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A long piece of hard ground that people can drive along from one place to another.'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1805',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Route'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1805'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Voirie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Réseau des voies urbaines'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7272',
            'prefLabel': [{'@xml:lang': 'en', '$': 'road'},
             {'@xml:lang': 'es', '$': 'carreteras'},
             {'@xml:lang': 'fr', '$': 'route'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A long piece of hard ground that people can drive along from one place to another.'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-481',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chapelle'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Oratoire'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-792|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-481'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-792',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Église'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-792',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '012 Typologie des bâtiments et équipements divers|Typologie des bâtiments|Bâtiment cultuel|Église'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXbnSYWENsu',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'capilla'},
             {'@xml:lang': 'en', '$': 'chapel'},
             {'@xml:lang': 'fr', '$': 'chapelle'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX|http://ark.frantiq.fr/ark:/26678/pcrtXbnSYWENsu'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX|http://ark.frantiq.fr/ark:/26678/pcrtXbnSYWENsu',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship|church|chapel'}}],
            'definition': {'@xml:lang': 'fr',
             '$': "Petite église, ou toute partie d'une église ayant un autel (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
              'prefLabel': [{'@xml:lang': 'en', '$': 'church'},
               {'@xml:lang': 'fr', '$': 'église'},
               {'@xml:lang': 'es', '$': 'iglesia'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX',
                'expandedLabel': [{'@xml:lang': 'en',
                  '$': 'Themes|architecture|architecture (conception)|religious architecture|religious building|place of worship|church'},
                 {'@xml:lang': 'fr',
                  '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|lieu de culte|église'}]},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtY20DKUZ2AS|http://ark.frantiq.fr/ark:/26678/pcrtoV7zLJpAfX'}],
              'definition': {'@xml:lang': 'fr',
               '$': 'Edifice cultuel des diverses confessions chrétiennes (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/11494',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'order'},
             {'@xml:lang': 'es', '$': 'orden'},
             {'@xml:lang': 'fr', '$': 'ordre'}],
            'definition': {'@xml:lang': 'en',
             '$': '1) A direction or command of a court. In this sense it is often used synonymously with judgment.  2) The document bearing the seal of the court recording its judgment in a case.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
              'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
               {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
               {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976727q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Diagnostic'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Diagnostic (médecine)'},
             {'@xml:lang': 'fr', '$': 'Diagnostics'},
             {'@xml:lang': 'fr', '$': 'Diagnostic médical'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005546',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Diagnosis'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13318786q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sources'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Sources d'inspiration"},
             {'@xml:lang': 'fr', '$': 'Sources historiques'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012007',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sources'},
            'altLabel': {'@xml:lang': 'en', '$': 'Primary sources'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002012010',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sources'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Primary sources'},
             {'@xml:lang': 'en', '$': 'Forerunners'}]}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '1',
           '@uri': 'http://sws.geonames.org/6451733/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Isle',
            {'@xml:lang': 'en', '$': 'Isle'},
            {'@xml:lang': 'fr', '$': 'Isle'},
            {'@xml:lang': 'es', '$': 'Isle'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2998268/|http://sws.geonames.org/3013719/|http://sws.geonames.org/6451733/',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Europe|France|Limousin|Département de la Haute-Vienne|Isle'},
             {'@xml:lang': 'en',
              '$': 'Europe|France|Limousin|Haute-Vienne|Isle'},
             {'@xml:lang': 'es',
              '$': 'Europa|Francia|Lemosín|Alta Viena|Isle'}],
            'expandedCountry': [{'@xml:lang': 'fr',
              '$': 'Europe|France|Limousin'},
             {'@xml:lang': 'en', '$': 'Europe|France|Limousin'},
             {'@xml:lang': 'es', '$': 'Europa|Francia|Lemosín'}]},
           'latitude': '45.8046',
           'longitude': '1.2275',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/3013719/',
             'prefLabel': ['Haute-Vienne',
              {'@xml:lang': 'fr', '$': 'Département de la Haute-Vienne'},
              {'@xml:lang': 'fr', '$': 'Haute-Vienne'},
              {'@xml:lang': 'en', '$': 'Haute-Vienne'},
              {'@xml:lang': 'es', '$': 'Alta Viena'}],
             'altLabel': [{'@xml:lang': 'fr',
               '$': 'Département de la Haute-Vienne'},
              {'@xml:lang': 'fr', '$': 'Haute-Vienne'}],
             'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2998268/|http://sws.geonames.org/3013719/',
              'expandedLabel': [{'@xml:lang': 'es',
                '$': 'Europa|Francia|Lemosín|Alta Viena'},
               {'@xml:lang': 'fr',
                '$': 'Europe|France|Limousin|Département de la Haute-Vienne'},
               {'@xml:lang': 'en',
                '$': 'Europe|France|Limousin|Haute-Vienne'}],
              'expandedCountry': [{'@xml:lang': 'es',
                '$': 'Europa|Francia|Lemosín'},
               {'@xml:lang': 'fr', '$': 'Europe|France|Limousin'},
               {'@xml:lang': 'en', '$': 'Europe|France|Limousin'}]},
             'latitude': '45.83333',
             'longitude': '1.16667'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'en',
             '$': 'Archaeology and Prehistory'},
            {'@xml:lang': 'fr', '$': 'Archéologie et Préhistoire'},
            {'@xml:lang': 'es', '$': 'Arqueología y Prehistoria'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.archeo',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Archéologie et Préhistoire"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Archaeology and Prehistory'},
             {'@xml:lang': 'es',
              '$': 'Ciencias sociales|Arqueología y Prehistoria'}]},
           'definition': [{'@xml:lang': 'fr',
             '$': 'L\'archéologie est une discipline scientifique dont l\'objectif est d\'étudier l\'Homme depuis la Préhistoire jusqu’à l\'époque contemporaine à travers sa technique grâce à l\'ensemble des vestiges matériels ayant subsisté et qu’il est parfois nécessaire de mettre au jour (objets, outils, ossements, poteries, armes, pièces de monnaie, bijoux, vêtements, empreintes, traces, peintures, bâtiments, infrastructures, etc.). L\'ensemble des artefacts et des écofacts relevant d\'une période, d\'une civilisation, d\'une région, ou d\'un peuplement donné, s\'appelle culture matérielle. Cette culture matérielle est avant tout un concept basé sur l\'assemblage de vestiges retrouvés dans des espaces et dans des chronologies contingentes, sur un même site, ou dans une même région, par exemple. On peut alors parler, pour désigner un ensemble cohérent, de culture archéologique (comme la culture de Hallstatt, ou la culture jomon, par exemple).  L’archéologue, dans une approche diachronique, acquiert donc l’essentiel de sa documentation à travers des travaux de terrain (prospections, sondages, fouilles, études de collections, analyses du bâti) par "opposition" à l’historien, dont les principales sources sont des textes. Mais l\'archéologue utilise aussi des documents écrits lorsque ceux-ci sont disponibles (inscriptions lapidaires, écrits sur parchemins ou papier, etc.), tout comme il peut faire appel aux sciences de la vie et de la terre ou aux autres sciences humaines (voir ci-dessous). L\'existence ou non de sources textuelles anciennes a permis d\'établir une division chronologique des spécialités archéologiques en trois grandes périodes: l\'archéologie de la Préhistoire (absence de sources textuelles), l\'Archéologie de la Protohistoire (peuples n\'ayant pas de sources textuelles mais étant cités dans ceux de peuples contemporains) et l\'archéologie des Périodes historiques (existence de sources textuelles). Il existe aussi des spécialisations archéologiques faites suivant le type d’artefacts étudiés (céramiques, bâti, etc.), ou à partir de la matière première des artefacts étudiés (pierre, terre crue, verre, os, cuir, etc.).  Le mot « archéologie » vient du grec ancien ἀρχαιολογία1 et est formé à partir des racines ἀρχαίος = ancien et λόγος = mot/parole/discours. Toutefois, c\'est avant tout à l\'étude de l\'objet fabriqué par l\'homme, donc à la technicité, que l\'archéologue consacre son travail.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Archéologie de Wikipédia en français'},
            {'@xml:lang': 'fr',
             '$': "La préhistoire (sans majuscule), appelée aussi archéologie préhistorique, est une discipline qui a pour ambition de reconstituer l'histoire et la vie des humains depuis leur apparition jusqu'à l'apparition de l'écriture, au cours de la période chronologique du même nom (la « Préhistoire », avec majuscule). Elle se fonde donc essentiellement sur l'examen et l'interprétation des témoignages de la présence humaine tels que les vestiges archéologiques découverts lors de fouilles ou les œuvres de l'art pariétal.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Préhistoire (discipline) de Wikipédia en français"}],
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie293',
              'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
               {'@xml:lang': 'fr', '$': 'Archéologie'},
               {'@xml:lang': 'es', '$': 'Arqueología'}],
              'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
                'expandedLabel': [{'@xml:lang': 'fr',
                  '$': 'Sociétés|Histoire|Archéologie'},
                 {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
                 {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
               {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]}},
            {'@uri': 'http://dbpedia.org/resource/Archaeology'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie293',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Archaeology'},
            {'@xml:lang': 'fr', '$': 'Archéologie'},
            {'@xml:lang': 'es', '$': 'Arqueología'}],
           'expanded': [{'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228|http://calenda.org/categories.rdf#categorie293',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sociétés|Histoire|Archéologie'},
              {'@xml:lang': 'es', '$': 'Sociedad|Historia|Arqueología'},
              {'@xml:lang': 'en', '$': 'Society|History|Archaeology'}]},
            {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie286|http://calenda.org/categories.rdf#categorie293',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Epistemología y metodología|Arqueología'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Épistémologie et méthodes|Archéologie'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Epistemology and methodology|Archaeology'}]}]}}]}}},
     {'@uri': '10670/1.8qkmap',
      'isidore': {'title': {'@xml:lang': 'es-ES',
        '$': 'Plebeyos en desacuerdo. El diálogo gauchesco, una ficción de comunidad política'},
       'url': 'https://revistas.uns.edu.ar/csl/article/view/2276',
       'enrichedCreators': {'creator': {'@origin': 'Pisano, Juan Ignacio',
         '@normalizedAuthor': 'Pisano, Juan Ignacio',
         '@idAuthor': 'pisano_juan_ignacio',
         'firstname': 'Juan Ignacio',
         'lastname': 'Pisano',
         'title': [],
         'sameAs': {'orcid': '0000-0001-8989-2022'}}},
       'date': {'@origin': '2020-11-20',
        '@startDate': '2020-11-20',
        '@endDate': '2020-11-20',
        '@treeDate': '2000/2020/2020',
        'normalizedDate': '2020-11-20',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2020'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28031207',
         '$': 'https://revistas.uns.edu.ar/csl/article/view/2276'}},
       'subjects': {'subject': [{'@xml:lang': 'es-ES',
          '$': 'género gauchesco'},
         {'@xml:lang': 'es-ES', '$': 'Bartolomé Hidalgo'},
         {'@xml:lang': 'es-ES', '$': 'literatura argentina'},
         {'@xml:lang': 'es-ES', '$': 'Gauchesca'}]},
       'relations': {'relation': ['https://revistas.uns.edu.ar/csl/article/view/2276/1231',
         'https://revistas.uns.edu.ar/csl/article/view/2276/1236']},
       'abstract': {'@xml:lang': 'es-ES',
        '$': 'Los diálogos gauchescos de Bartolomé Hidalgo han sido leídos por la crítica como una inflexión dentro de su obra que declina hacia el lamento, como el tono dominante, luego de su serie de cielitos. Es decir, sus gauchos ficcionales expresarían, allí, su decepción por el derrotero seguido por la Revolución de Mayo y sus postulados. Aquí proponemos otra lectura que permite relevar una política de la gauchesca, es decir, un modo en el que esta literatura interviene en su contexto en tanto que literatura. Aquello que esta política permite leer no es la mera queja de los gauchos por su situación, sino una forma del desacuerdo que se sustenta en el hecho de que quienes allí hablan son sujetos plebeyos que reclaman, mediante ese acto de habla, la posibilidad de opinar sobre la conformación de la comunidad política.'},
       'types': {'type': ['info:eu-repo/semantics/article',
         'info:eu-repo/semantics/publishedVersion',
         {'@xml:lang': 'es-ES', '$': 'Artículo revisado por pares'}]},
       'source_info': {'collectionLabel': {'@shortLabel': 'RIDH',
         '@handle': '10670/3.53v6mw',
         '@collectionUuid': '221a0b44-c447-41b4-d72c-5b7e9ff7f129',
         '$': 'Repositorio Institucional Digital del Departamento de Humanidades'},
        'collectionOrganization': {'@organizationUrl': 'https://www.uns.edu.ar',
         '$': 'Universidad Nacional del Sud'},
        'collectionURLMainSite': {'@thumbnaiId': '20549075',
         '$': 'http://repositoriodigital.uns.edu.ar'},
        'collectionInformations': {'collectionDescription': 'Repositorio Institucional Digital del Departamento de Humanidades',
         'collectionCountry': 'AR',
         'collectionContactEmailAddress': 'rapiriz@uns.edu.ar'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.53v6mw|10670/2.dra7bj',
         '$': 'Repositorio Institucional Digital del Departamento de Humanidades#CS Letras'},
        'sourceCode': {'@handle': '10670/2.dra7bj',
         '$': '3c814310-37d3-514e-f949-ab6e5f2dd9ca'},
        'sourceName': {'@shortLabel': 'CS Letras',
         '$': 'Cuadernos del Sur Letras'},
        'sourceISSN': ['https://portal.issn.org/resource/ISSN/1668-7426',
         'https://portal.issn.org/resource/ISSN/2362-2970'],
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '27319365',
         '$': 'http://revistas.uns.edu.ar/csl'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://revistas.uns.edu.ar/csl',
         '$': 'Cuadernos del Sur – Letras es una publicación anual del Departamento de Humanidades de la Universidad Nacional del Sur (UNS). En este marco, desde 1958 se propone difundir artículos, reseñas, notas breves, debates y/o entrevistas, que se distingan por su reflexión crítica, con el propósito de alentar la controversia, abordar nuevas perspectivas teóricas, promover el diálogo interdisciplinario y representar las áreas más innovadoras de cada disciplina.'},
        'sourceOrganization': {'label': 'Universidad Nacional del Sur',
         'URI': 'https://www.uns.edu.ar',
         'isoCountry': 'AR',
         'contactEmailAddress': 'rapiriz@uns.edu.ar'},
        'sourceParameters': {'baseUrl': 'https://revistas.uns.edu.ar/csl/oai',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/spa',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Spanish'},
            {'@xml:lang': 'fr', '$': 'Espagnol'},
            {'@xml:lang': 'es', '$': 'Idioma español'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtxindNEQjtS',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'diálogo'},
            {'@xml:lang': 'en', '$': 'dialogue'},
            {'@xml:lang': 'fr', '$': 'dialogue'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtxindNEQjtS',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|dialogue'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
              {'@xml:lang': 'fr', '$': 'genre littéraire'},
              {'@xml:lang': 'en', '$': 'literary genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX528174',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Diálogo'},
           'label': {'@xml:lang': 'es', '$': 'Diálogo'},
           'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX526344',
             'prefLabel': {'@xml:lang': 'es', '$': 'Literatura'},
             'label': {'@xml:lang': 'es', '$': 'Literatura'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85037531',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Dialogue'},
           'altLabel': {'@xml:lang': 'en', '$': 'Dialog'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX525928',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Comunidad'},
           'label': {'@xml:lang': 'es', '$': 'Comunidad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Colectividad'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85029195',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Communities'},
           'altLabel': {'@xml:lang': 'en', '$': 'Community'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKPKSRRMdbB',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'communauté'},
            {'@xml:lang': 'en', '$': 'community'},
            {'@xml:lang': 'es', '$': 'comunidad'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX|http://ark.frantiq.fr/ark:/26678/pcrtKPKSRRMdbB'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Groupe de gens qui ont des intérêts communs (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'organisation sociale'},
              {'@xml:lang': 'es', '$': 'organización social'},
              {'@xml:lang': 'en', '$': 'social organization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX'}}}},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6371',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'politics'},
            {'@xml:lang': 'es', '$': 'política'},
            {'@xml:lang': 'fr', '$': 'politique'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The theory and practice of acquiring and exercising the power to govern in a society in order to arbitrate values, allocate resources and establish and enforce rules.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49988'}},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX4576319',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Política'},
           'label': {'@xml:lang': 'es', '$': 'Política'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Ciencias políticas'},
            {'@xml:lang': 'es', '$': 'Política--Teorías'}],
           'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX526289',
             'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias sociales'},
             'label': {'@xml:lang': 'es', '$': 'Ciencias sociales'}}}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
            {'@xml:lang': 'en', '$': 'Government'},
            {'@xml:lang': 'en', '$': 'Political theory'},
            {'@xml:lang': 'en', '$': 'Civil government'},
            {'@xml:lang': 'en', '$': 'Commonwealth, The'},
            {'@xml:lang': 'en', '$': 'Science, Political'},
            {'@xml:lang': 'en', '$': 'Administration'},
            {'@xml:lang': 'en', '$': 'Politics'}]},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6370',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'policy'},
            {'@xml:lang': 'es', '$': 'política'},
            {'@xml:lang': 'fr', '$': 'politique'}]},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'política'},
            {'@xml:lang': 'en', '$': 'politics'},
            {'@xml:lang': 'fr', '$': 'politique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX5107254',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Diálogos'},
           'label': {'@xml:lang': 'es', '$': 'Diálogos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85037534',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Dialogues'},
           'altLabel': {'@xml:lang': 'en', '$': 'Dialogs'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX540661',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica'},
           'label': {'@xml:lang': 'es', '$': 'Crítica'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1052',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'building site'},
            {'@xml:lang': 'es', '$': 'obra'},
            {'@xml:lang': 'fr', '$': 'chantier'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A piece of land on which a house or other building is being built.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1041',
             'prefLabel': [{'@xml:lang': 'en', '$': 'building land'},
              {'@xml:lang': 'es', '$': 'terreno edificable'},
              {'@xml:lang': 'fr', '$': 'zone constructible'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Area of land suitable for building on.'}}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX4576496',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Gauchos'},
           'label': {'@xml:lang': 'es', '$': 'Gauchos'},
           'semanticExpansion': [{'concept': {'@uri': 'http://datos.bne.es/resource/XX545429',
              'prefLabel': {'@xml:lang': 'es', '$': 'Jinetes'},
              'label': {'@xml:lang': 'es', '$': 'Jinetes'}}},
            {'concept': {'@uri': 'http://datos.bne.es/resource/XX530357',
              'prefLabel': {'@xml:lang': 'es', '$': 'Pastores'},
              'label': {'@xml:lang': 'es', '$': 'Pastores'}}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85053528',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Gauchos'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'revolución'},
            {'@xml:lang': 'en', '$': 'revolution'},
            {'@xml:lang': 'fr', '$': 'révolution'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK'},
           'definition': {'@xml:lang': 'fr',
            '$': "Changement plus ou moins brusque dans la structure économique, sociale et politique d'un Etat (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
             'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
              {'@xml:lang': 'fr', '$': 'troubles'},
              {'@xml:lang': 'en', '$': 'unrest'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
              {'@xml:lang': 'fr', '$': 'soulèvement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX541279',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Revolución'},
           'label': {'@xml:lang': 'es', '$': 'Revolución'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4431588',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Lengua mayo'},
           'label': {'@xml:lang': 'es', '$': 'Lengua mayo'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Dialecto mayo'},
            {'@xml:lang': 'es', '$': 'Mayo'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://datos.bne.es/resource/XX4820296',
              'prefLabel': {'@xml:lang': 'es', '$': 'Lengua cahita'},
              'label': {'@xml:lang': 'es', '$': 'Lengua cahita'},
              'altLabel': [{'@xml:lang': 'es', '$': 'Cahita'},
               {'@xml:lang': 'es', '$': 'Lengua kaita'}]}},
            {'concept': {'@uri': 'http://datos.bne.es/resource/XX497470'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85082432',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Mayo dialect (Piman)'},
           'altLabel': {'@xml:lang': 'en', '$': 'Mayo language (Piman)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'lectura'},
            {'@xml:lang': 'fr', '$': 'lecture'},
            {'@xml:lang': 'en', '$': 'reading'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
             'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
              {'@xml:lang': 'es', '$': 'práctica cotidiana'},
              {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4576441',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Lectura'},
           'label': {'@xml:lang': 'es', '$': 'Lectura'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85111662',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reading'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Reading--Study and teaching'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX526344',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Literatura'},
           'label': {'@xml:lang': 'es', '$': 'Literatura'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX554127',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Actos de habla'},
           'label': {'@xml:lang': 'es', '$': 'Actos de habla'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Acto de habla'},
            {'@xml:lang': 'es', '$': 'Acto del habla'},
            {'@xml:lang': 'es', '$': 'Acto verbal'},
            {'@xml:lang': 'es', '$': 'Actos del lenguaje'},
            {'@xml:lang': 'es', '$': 'Actos ilocutivos'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://datos.bne.es/resource/XX560962',
              'prefLabel': {'@xml:lang': 'es', '$': 'Lenguaje--Filosofía'},
              'label': {'@xml:lang': 'es', '$': 'Lenguaje--Filosofía'},
              'altLabel': {'@xml:lang': 'es', '$': 'Filosofía del lenguaje'}}},
            {'concept': {'@uri': 'http://datos.bne.es/resource/XX528310',
              'prefLabel': {'@xml:lang': 'es', '$': 'Semántica (Filosofía)'},
              'label': {'@xml:lang': 'es', '$': 'Semántica (Filosofía)'},
              'altLabel': {'@xml:lang': 'es', '$': 'Semántica (Lógica)'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126441',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speech acts (Linguistics)'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Speech events (Linguistics)'},
            {'@xml:lang': 'en', '$': 'Speech act theory (Linguistics)'},
            {'@xml:lang': 'en', '$': 'Illocutionary acts (Linguistics)'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX531645',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'label': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX533464',
             'prefLabel': {'@xml:lang': 'es', '$': 'Modalidad (Lógica)'},
             'label': {'@xml:lang': 'es', '$': 'Modalidad (Lógica)'},
             'altLabel': {'@xml:lang': 'es', '$': 'Lógica modal'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX529833',
           'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
           'prefLabel': {'@xml:lang': 'es', '$': 'Literatura argentina'},
           'label': {'@xml:lang': 'es', '$': 'Literatura argentina'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85007084',
           '@origin': 'bne',
           'prefLabel': {'@xml:lang': 'en', '$': 'Argentine literature'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'spa',
       'dc:rights': {'@xml:lang': 'es-ES',
        '$': 'Derechos de autor 2020 Juan Ignacio Pisano'}}},
     {'@uri': '10.3931/e-rara-91243',
      'isidore': {'title': 'Carte des Grisons et des communautez qui composent leurs Ligues : les Etats de St Gal, Neuchastel, Genève et quelques Etats alliez des Suisses',
       'url': 'https://www.e-rara.ch/gep_r/doi/10.3931/e-rara-91243',
       'enrichedCreators': {'creator': {'@origin': '[s.n.]',
         '@normalizedAuthor': '[s.n.],',
         '@idAuthor': 's_n',
         'firstname': [],
         'lastname': '[s.n.]',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '1708',
        '@startDate': '1708-01-01',
        '@endDate': '1708-12-31',
        'normalizedDate': '1708-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1700'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'false',
         '@thumbnailId': '28018683',
         '$': 'https://www.e-rara.ch/gep_r/doi/10.3931/e-rara-91243'},
        'similar': ['doi:10.3931/e-rara-91243', 'system:991016422269705524']},
       'relations': {'relation': 'vignette : https://www.e-rara.ch/gep_r/titlepage/doi/10.3931/e-rara-91243/128'},
       'abstract': ['Analyse: Avec une "Tables des villes ou bourgs qui composent les Etats de chaque Ligue des Grisons", des "Remarque sur": "l\'Etat de Neuchastel", "l\'Abbé et l\'Abbaye de St Gal", "la ville de St Gal", "les Grisons", "l\'Etat de Genève", "Le Valais", "Bienne" et "Mulhausen".',
        'Formée de 9 cartes de formats différents : au centre "Carte des trois Ligues des Grisons", à gauche "Carte du Comté de Neuchastel et de Bienne", "Genève ancienne", "Carte des Etats de l\'Abbé de St Gal" et "Etat de la ville de St Gal", à droite "Plan de Genève moderne", "Etat de Genève et ses environs", Etats de Mulhausen" et "Comté de Valais"',
        'Tome 2, N⁰ 64. Avec privilège de Nosseigneurs les Etats de Hollande et de Westfrise'],
       'types': {'type': ['Image', 'Map']},
       'source_info': {'collectionLabel': {'@shortLabel': 'e-rara',
         '@handle': '10670/3.a3bbnf',
         '@collectionUuid': '06b6b345-67db-4eb2-96f7-145ad1bb5d80',
         '$': 'e-rara : portail des imprimés anciens des bibliothèques Suisse'},
        'collectionOrganization': {'@organizationUrl': 'http://www.e-rara.ch',
         '$': 'e-lib.ch : Bibliothèque électronique suisse'},
        'collectionURLMainSite': {'@thumbnaiId': '2951545',
         '$': 'http://www.e-rara.ch'},
        'collectionInformations': {'collectionDescription': "Le portail e-rara.ch offre un accès gratuit aux images numériques en couleur d'imprimés anciens conservés dans des bibliothèques suisses. Les impressions suisses du XVIe siècle en forment le principal pôle d'excellence. D'autres collections thématiques d'imprimés du XVIe au XIXe siècle – livres ou cartes – enrichissent cette offre.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'service@e-rara.ch'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'doi:(10.3931/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.a3bbnf|10670/2.8d1hox',
         '$': 'e-rara : portail des imprimés anciens des bibliothèques Suisse#e-rara'},
        'sourceCode': {'@handle': '10670/2.8d1hox',
         '$': '90727806-1d35-48e9-b7a3-1fef2a74ed98'},
        'sourceName': {'@shortLabel': 'e-rara',
         '$': 'e-rara : portail des imprimés anciens des bibliothèques\n                                   Suisse'},
        'sourceDataType': 'Page Web',
        'sourceWebSiteURL': {'@thumbnaiId': '2951545',
         '$': 'http://www.e-rara.ch'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://www.e-rara.ch',
         '$': 'Imprimés anciens du XVIe au XIXe siècle.'},
        'sourceOrganization': {'label': 'e-lib.ch : Bibliothèque électronique suisse',
         'URI': 'http://www.e-lib.ch',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://www.e-rara.ch/oai',
         'crawlingFrequency': '14400',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p',
          'dates': {'date': ["'['yyyy']'",
            "'['yyyy' ?]'",
            "'['yyyy'?]'",
            "'[± 'yyyy']'",
            'ISO8601']}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#image',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Photos et images'},
             {'@xml:lang': 'en', '$': 'Images and photos'},
             {'@xml:lang': 'es', '$': 'Fotografías e imágenes'}]},
           {'@uri': 'http://isidore.science/ontology#maps',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Cartes et plans'},
             {'@xml:lang': 'en', '$': 'Maps'},
             {'@xml:lang': 'es', '$': 'Tarjetas y planes'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '4',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/5011',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'map'},
             {'@xml:lang': 'es', '$': 'mapas'},
             {'@xml:lang': 'fr', '$': 'carte'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A representation, normally on a flat medium, that displays the physical and political features of a surface area of the earth, showing them in their respective forms, sizes and relationships according to some convention of representation.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/14934',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'geographical projection'},
               {'@xml:lang': 'es', '$': 'proyección geográfica'},
               {'@xml:lang': 'fr', '$': 'projection géographique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A representation of the globe constructed on a plane with lines representative of and corresponding to the meridians and parallels of the curved surface of the earth.'}}}},
           {'@count': '4',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrteAptfa91ij',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'carte'},
             {'@xml:lang': 'en', '$': 'map'},
             {'@xml:lang': 'es', '$': 'mapa'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrteAptfa91ij',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|mapa'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '4',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-424',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Carte'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-424'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Technique de représentation'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '040 Techniques de représentation|Technique de représentation'}}}}},
           {'@count': '4',
            '@uri': 'http://GeoEthno#CANTON_DES_GRISONS',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Canton des Grisons'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Grisons'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DES_GRISONS',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|Suisse|Canton des Grisons'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#SUISSE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Suisse'},
               {'@xml:lang': 'en', '$': 'Switzerland'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Confédération suisse'},
               {'@xml:lang': 'en', '$': 'Swiss Confederation'},
               {'@xml:lang': 'fr', '$': 'Helvétie'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale|Suisse'},
                {'@xml:lang': 'en',
                 '$': 'Europe|Western Europe|Switzerland'}]}}}},
           {'@count': '5',
            '@uri': 'http://GeoEthno#GENEVE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Genève'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ginebra'},
             {'@xml:lang': 'en', '$': 'Geneva'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DE_GENEVE|http://GeoEthno#GENEVE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|Suisse|Canton de Genève|Genève'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#CANTON_DE_GENEVE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Canton de Genève'},
              'altLabel': {'@xml:lang': 'en', '$': 'Geneva'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DE_GENEVE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|Suisse|Canton de Genève'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16949301q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Vicia ervilia'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ervilier'},
             {'@xml:lang': 'fr', '$': 'Ers'},
             {'@xml:lang': 'fr', '$': 'Ervum ervilia'},
             {'@xml:lang': 'fr', '$': 'Alliez'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12270717w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vesces'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vicia'},
               {'@xml:lang': 'fr', '$': 'Vesce'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11955047r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Suisses'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12067505g'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85131266',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Swiss'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13077',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'assay'},
             {'@xml:lang': 'es', '$': 'ensayo'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Qualitative or quantitative determination of the components of a material, such as an ore or a drug.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8405',
              'prefLabel': [{'@xml:lang': 'en', '$': 'test'},
               {'@xml:lang': 'es', '$': 'prueba'},
               {'@xml:lang': 'fr', '$': 'test'}],
              'definition': {'@xml:lang': 'en',
               '$': 'To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Analyse'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
             {'@xml:lang': 'es', '$': 'análisis'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Examination or determination.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119756783',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse chimique'},
             {'@xml:lang': 'fr', '$': 'Dosage'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
             {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
             {'@xml:lang': 'en', '$': 'Analytical methods'},
             {'@xml:lang': 'en', '$': 'Chemical analysis'},
             {'@xml:lang': 'en', '$': 'Analysis methods'},
             {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002428',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Assaying'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965203w',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Tables'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Tables (listes systématiques)'},
             {'@xml:lang': 'fr', '$': 'Tables numériques'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001770',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Tables'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Formulae, tables, etc'},
             {'@xml:lang': 'en', '$': 'Tables and ready reckoners'},
             {'@xml:lang': 'en', '$': 'Tables, etc'},
             {'@xml:lang': 'en', '$': 'Charts, tables, etc'},
             {'@xml:lang': 'en', '$': 'Tables, calculations, etc'}]},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11933792m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Villes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Milieu urbain'},
             {'@xml:lang': 'fr', '$': 'Espace urbain'},
             {'@xml:lang': 'fr', '$': 'Régions urbaines'},
             {'@xml:lang': 'fr', '$': 'Communes urbaines'},
             {'@xml:lang': 'fr', '$': 'Environnement urbain'},
             {'@xml:lang': 'fr', '$': 'Monde urbain'},
             {'@xml:lang': 'fr', '$': 'Cités'},
             {'@xml:lang': 'fr', '$': 'Ville'},
             {'@xml:lang': 'fr', '$': 'Zones urbaines'},
             {'@xml:lang': 'fr', '$': 'Grandes villes'},
             {'@xml:lang': 'fr', '$': 'Centres urbains'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133186257',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Établissements humains'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Sol, Occupation du'},
                {'@xml:lang': 'fr', '$': 'Habitat humain'},
                {'@xml:lang': 'fr', '$': 'Implantations humaines'},
                {'@xml:lang': 'fr', '$': 'Occupation du sol'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119499021',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Communes'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Municipalités'}}}]},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026130',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Cities and towns'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Global cities'},
             {'@xml:lang': 'en', '$': 'Towns'},
             {'@xml:lang': 'en', '$': 'Urban systems'},
             {'@xml:lang': 'en', '$': 'Municipalities'},
             {'@xml:lang': 'en', '$': 'Urban areas'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtExwhMubSfx',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'league'},
             {'@xml:lang': 'es', '$': 'liga'},
             {'@xml:lang': 'fr', '$': 'ligue'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg|http://ark.frantiq.fr/ark:/26678/pcrtqaRGD15q3Q|http://ark.frantiq.fr/ark:/26678/pcrtExwhMubSfx'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Confédération entre plusieurs états (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqaRGD15q3Q',
              'prefLabel': [{'@xml:lang': 'es', '$': 'alianza'},
               {'@xml:lang': 'en', '$': 'alliance'},
               {'@xml:lang': 'fr', '$': 'alliance'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg|http://ark.frantiq.fr/ark:/26678/pcrtqaRGD15q3Q'}}}},
           {'@count': '4',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtaRcMOBwKh6',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Estado'},
             {'@xml:lang': 'fr', '$': 'Etat'},
             {'@xml:lang': 'en', '$': 'State (nation)'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Etat-nation'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n|http://ark.frantiq.fr/ark:/26678/pcrtaRcMOBwKh6',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|vie administrative|division administrative|Etat'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'administrative division'},
               {'@xml:lang': 'es', '$': 'división administrativa'},
               {'@xml:lang': 'fr', '$': 'division administrative'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEHUa0j3cze|http://ark.frantiq.fr/ark:/26678/pcrtrL4SWSFZ0n',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|vie administrative|division administrative'}}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQKa9Ri7wun',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'abad'},
             {'@xml:lang': 'fr', '$': 'abbé'},
             {'@xml:lang': 'en', '$': 'abbot'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe|http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc|http://ark.frantiq.fr/ark:/26678/pcrtQKa9Ri7wun',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|religion|religious personages|clergy|abbot'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'clergé'},
               {'@xml:lang': 'en', '$': 'clergy'},
               {'@xml:lang': 'es', '$': 'clero'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtiUqheNXNbe|http://ark.frantiq.fr/ark:/26678/pcrtpAmioxn6lc',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|religion|religious personages|clergy'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ensemble des prêtres d'un culte (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'abadía'},
             {'@xml:lang': 'fr', '$': 'abbaye'},
             {'@xml:lang': 'en', '$': 'abbey (religious establishment)'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe|http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|arquitectura|edificio|edificio religioso|alojamiento para religiosos|monasterio|abadía'}},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe|http://ark.frantiq.fr/ark:/26678/pcrt6lLJJloHHj',
              'expandedLabel': [{'@xml:lang': 'es',
                '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|alojamiento para religiosos|monasterio|abadía'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|logement des religieux|monastère|abbaye'}]}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Bâtiment abritant une communauté de moines ou de moniales gouvernée par un abbé ou une abbesse (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'monastère'},
               {'@xml:lang': 'es', '$': 'monasterio'},
               {'@xml:lang': 'en', '$': 'monastery'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Tema|arquitectura|arquitectura (concepción)|arquitectura religiosa|edificio religioso|alojamiento para religiosos|monasterio'},
                 {'@xml:lang': 'fr',
                  '$': 'Sujets|architecture|architecture (conception)|architecture religieuse|édifice religieux|logement des religieux|monastère'}]},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtwXskswbuF3|http://ark.frantiq.fr/ark:/26678/pcrt30jRVudWjq|http://ark.frantiq.fr/ark:/26678/pcrtu7Kn9LSoe6|http://ark.frantiq.fr/ark:/26678/pcrtwE5STw4SDe'}],
              'definition': {'@xml:lang': 'fr',
               '$': 'Ensemble des bâtiments dans lesquels vivent les moines et les moniales (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1356',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Monastère'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Abbaye'},
             {'@xml:lang': 'fr', '$': 'Couvent'},
             {'@xml:lang': 'fr', '$': 'Bâtiment conventuel'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-448|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1356'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-448',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Centre cultuel'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Centre religieux'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2075',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Ville'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2133|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-89|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-43|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2075',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '022 Villes et groupements habités|Analyse urbaine|Agglomération|Ville'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-43',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Agglomération'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ciudad'},
             {'@xml:lang': 'en', '$': 'town'},
             {'@xml:lang': 'fr', '$': 'ville'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'agglomération'},
             {'@xml:lang': 'fr', '$': 'agglomération urbaine'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2|http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|nucleated settlement|town'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hábitat agrupado'},
               {'@xml:lang': 'fr', '$': 'habitat groupé'},
               {'@xml:lang': 'en', '$': 'nucleated settlement'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|habitat groupé"},
                {'@xml:lang': 'es',
                 '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|hábitat agrupado'}]},
              'definition': {'@xml:lang': 'fr',
               '$': "Sous ce terme sont regroupés tous les types d'agglomération urbaine (BL)"}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1421',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'city'},
             {'@xml:lang': 'es', '$': 'ciudades'},
             {'@xml:lang': 'fr', '$': 'ville'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Term used generically today to denote any urban form but applied particularly to large urban settlements. There are, however, no agreed definitions to separate a city from the large metropolis or the smaller town.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8797',
              'prefLabel': [{'@xml:lang': 'en', '$': 'urban area'},
               {'@xml:lang': 'es', '$': 'areas urbanas'},
               {'@xml:lang': 'fr', '$': 'zone urbaine'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Areas within the legal boundaries of cities and towns; suburban areas developed for residential, industrial or recreational purposes.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4709'}},
           {'@count': '2',
            '@uri': 'http://GeoEthno#CANTON_DU_VALAIS',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Canton du Valais'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Valais'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DU_VALAIS',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|Suisse|Canton du Valais'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#SUISSE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Suisse'},
               {'@xml:lang': 'en', '$': 'Switzerland'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Confédération suisse'},
               {'@xml:lang': 'en', '$': 'Swiss Confederation'},
               {'@xml:lang': 'fr', '$': 'Helvétie'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale|Suisse'},
                {'@xml:lang': 'en',
                 '$': 'Europe|Western Europe|Switzerland'}]}}}},
           {'@count': '2',
            '@uri': 'http://GeoEthno#BIENNE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Bienne'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DE_BERNE|http://GeoEthno#BIENNE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe occidentale|Suisse|Canton de Berne|Bienne'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#CANTON_DE_BERNE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Canton de Berne'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#SUISSE|http://GeoEthno#CANTON_DE_BERNE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe occidentale|Suisse|Canton de Berne'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11952385d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cartes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Cartes géographiques'},
             {'@xml:lang': 'fr', '$': 'Documents cartographiques'},
             {'@xml:lang': 'fr', '$': 'Cartes de géographie'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11955444t',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Géographie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Géographie mondiale'},
                {'@xml:lang': 'fr', '$': 'Géographie universelle'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977261r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Non-livres'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576244',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Mapas'},
            'label': {'@xml:lang': 'es', '$': 'Mapas'},
            'altLabel': {'@xml:lang': 'es', '$': 'Planos'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002035',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Maps'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001269',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Maps'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Geographic atlases'},
             {'@xml:lang': 'en', '$': 'Atlases, Geographic'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13171933w',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Comté'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Comté (fromage)'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12359988w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Fromage à pâte pressée'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Fromage à pâte semi-dure'},
                {'@xml:lang': 'fr', '$': 'Fromage à pâte demi-dure'},
                {'@xml:lang': 'fr', '$': 'Fromage à pâte dure'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934875j'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119610606',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Fromage à pâte pressée cuite'}}}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6279',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
             {'@xml:lang': 'es', '$': 'plan'},
             {'@xml:lang': 'fr', '$': 'plan'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A scheme of action, a method of proceeding thought out in advance.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2889',
              'prefLabel': [{'@xml:lang': 'en', '$': 'environmental planning'},
               {'@xml:lang': 'es', '$': 'planificación ambiental'},
               {'@xml:lang': 'fr', '$': 'planification écologique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The identification of desirable objectives for the physical environment, including social and economic objectives, and the creation of administrative procedures and programmes to meet those objectives.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/7379'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
             {'@xml:lang': 'fr', '$': 'plan'},
             {'@xml:lang': 'es', '$': 'plano'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'}],
            'definition': {'@xml:lang': 'fr',
             '$': "Forme au sol d'un bâtiment ou d'une ville (Rob.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB',
              'prefLabel': [{'@xml:lang': 'en', '$': 'floor'},
               {'@xml:lang': 'fr', '$': 'sol'},
               {'@xml:lang': 'es', '$': 'suelo'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'}],
              'definition': {'@xml:lang': 'fr',
               '$': 'Surface de la terre où l’on se tient, où l’on marche, sur laquelle on construit, etc. (Wiktionnaire)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1546',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Plan'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1546'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Technique de représentation'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '040 Techniques de représentation|Technique de représentation'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12086863n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Modernité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Moderne'},
             {'@xml:lang': 'fr', '$': 'Modernisme (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Antimodernisme'},
             {'@xml:lang': 'fr', '$': 'Antimodernité'},
             {'@xml:lang': 'fr', '$': 'Modernité (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Kulturkritik'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933924p',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "Philosophie de l'histoire"},
              'altLabel': [{'@xml:lang': 'fr', '$': "Histoire, Théorie de l'"},
               {'@xml:lang': 'fr', '$': "Sens de l'histoire"},
               {'@xml:lang': 'fr', '$': "Fin de l'histoire"},
               {'@xml:lang': 'fr', '$': 'Histoire (philosophie)'},
               {'@xml:lang': 'fr', '$': "Accélération de l'histoire"},
               {'@xml:lang': 'fr', '$': "Histoire, Fin de l'"},
               {'@xml:lang': 'fr', '$': "Histoire, Sens de l'"},
               {'@xml:lang': 'fr', '$': "Théorie de l'histoire"},
               {'@xml:lang': 'fr', '$': "Histoire, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': "Histoire, Accélération de l'"}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026469',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Civilization, Modern'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Modernity'},
             {'@xml:lang': 'en', '$': 'Modern civilization'}]}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '4',
            '@uri': 'http://sws.geonames.org/2660522/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Graubünden',
             {'@xml:lang': 'fr', '$': 'Canton des Grisons'},
             {'@xml:lang': 'es', '$': 'Cantón de los Grisones'},
             {'@xml:lang': 'en', '$': 'Canton Grisons'},
             {'@xml:lang': 'en', '$': 'Grisons'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Canton des Grisons'},
             {'@xml:lang': 'fr', '$': 'Grisons'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2660522/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton Grisons'},
              'Europe|Switzerland|Graubünden',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton des Grisons'}],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Graubünden'},
              'Europe|Switzerland|Graubünden',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Graubünden'}]},
            'latitude': '46.6587',
            'longitude': '9.62296',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2658434/',
              'prefLabel': ['Switzerland',
               {'@xml:lang': 'fr', '$': 'Suisse'},
               {'@xml:lang': 'es', '$': 'Suiza'},
               {'@xml:lang': 'en', '$': 'Switzerland'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Confédération Suisse'},
               {'@xml:lang': 'fr', '$': 'Suisse'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Suisse'},
                {'@xml:lang': 'es', '$': 'Europa|Suiza'},
                {'@xml:lang': 'en', '$': 'Europe|Switzerland'}],
               'expandedCountry': [{'@xml:lang': 'fr',
                 '$': 'Europe|Switzerland'},
                {'@xml:lang': 'es', '$': 'Europa|Switzerland'},
                {'@xml:lang': 'en', '$': 'Europe|Switzerland'}]},
              'latitude': '47.00016',
              'longitude': '8.01427'}},
            'exactMatch': []},
           {'@count': '5',
            '@uri': 'http://sws.geonames.org/2660646/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Geneva',
             {'@xml:lang': 'en', '$': 'Geneva'},
             {'@xml:lang': 'fr', '$': 'Genève'},
             {'@xml:lang': 'es', '$': 'Ginebra'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Genève'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2660645/|http://sws.geonames.org/2660646/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton of Geneva|Geneva'},
              {'@xml:lang': 'fr',
               '$': 'Europe|Suisse|Canton de Genève|Genève'},
              {'@xml:lang': 'es',
               '$': 'Europa|Suiza|Cantón de Ginebra|Ginebra'}],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton of Geneva'},
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton de Genève'},
              {'@xml:lang': 'es', '$': 'Europa|Suiza|Cantón de Ginebra'}]},
            'latitude': '46.20222',
            'longitude': '6.14569',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2660645/',
              'prefLabel': ['Geneva',
               {'@xml:lang': 'fr', '$': 'Canton de Genève'},
               {'@xml:lang': 'en', '$': 'Canton of Geneva'},
               {'@xml:lang': 'es', '$': 'Cantón de Ginebra'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Canton de Genève'},
               {'@xml:lang': 'fr', '$': 'Genève'},
               {'@xml:lang': 'fr', '$': 'République et Canton de Genève'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2660645/',
               'expandedLabel': [{'@xml:lang': 'en',
                 '$': 'Europe|Switzerland|Canton of Geneva'},
                'Europe|Switzerland|Geneva',
                {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton de Genève'}],
               'expandedCountry': [{'@xml:lang': 'en',
                 '$': 'Europe|Switzerland|Geneva'},
                'Europe|Switzerland|Geneva',
                {'@xml:lang': 'fr', '$': 'Europe|Suisse|Geneva'}]},
              'latitude': '46.19673',
              'longitude': '6.11044'}}},
           {'@count': '5',
            '@uri': 'http://sws.geonames.org/2660645/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Geneva',
             {'@xml:lang': 'fr', '$': 'Canton de Genève'},
             {'@xml:lang': 'en', '$': 'Canton of Geneva'},
             {'@xml:lang': 'es', '$': 'Cantón de Ginebra'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Canton de Genève'},
             {'@xml:lang': 'fr', '$': 'Genève'},
             {'@xml:lang': 'fr', '$': 'République et Canton de Genève'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2660645/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton of Geneva'},
              'Europe|Switzerland|Geneva',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton de Genève'}],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Geneva'},
              'Europe|Switzerland|Geneva',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Geneva'}]},
            'latitude': '46.19673',
            'longitude': '6.11044',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2658434/',
              'prefLabel': ['Switzerland',
               {'@xml:lang': 'fr', '$': 'Suisse'},
               {'@xml:lang': 'es', '$': 'Suiza'},
               {'@xml:lang': 'en', '$': 'Switzerland'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Confédération Suisse'},
               {'@xml:lang': 'fr', '$': 'Suisse'}],
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|Suisse'},
                {'@xml:lang': 'es', '$': 'Europa|Suiza'},
                {'@xml:lang': 'en', '$': 'Europe|Switzerland'}],
               'expandedCountry': [{'@xml:lang': 'fr',
                 '$': 'Europe|Switzerland'},
                {'@xml:lang': 'es', '$': 'Europa|Switzerland'},
                {'@xml:lang': 'en', '$': 'Europe|Switzerland'}]},
              'latitude': '47.00016',
              'longitude': '8.01427'}}},
           {'@count': '2',
            '@uri': 'http://sws.geonames.org/2658205/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Valais',
             {'@xml:lang': 'fr', '$': 'Canton du Valais'},
             {'@xml:lang': 'en', '$': 'Valais'},
             {'@xml:lang': 'es', '$': 'Valais'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Canton Valais'},
             {'@xml:lang': 'fr', '$': 'Canton du Valais'},
             {'@xml:lang': 'fr', '$': 'Valais'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2658205/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Valais'},
              'Europe|Switzerland|Valais',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton du Valais'}],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Valais'},
              'Europe|Switzerland|Valais',
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Valais'}]},
            'latitude': '46.22925',
            'longitude': '7.45972',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2658434/',
              'prefLabel': ['Switzerland',
               {'@xml:lang': 'fr', '$': 'Suisse'},
               {'@xml:lang': 'es', '$': 'Suiza'},
               {'@xml:lang': 'en', '$': 'Switzerland'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Confédération Suisse'},
               {'@xml:lang': 'fr', '$': 'Suisse'}],
              'latitude': '47.00016',
              'longitude': '8.01427'}},
            'exactMatch': []},
           {'@count': '2',
            '@uri': 'http://sws.geonames.org/2661513/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Biel/Bienne',
             {'@xml:lang': 'fr', '$': 'Bienne'},
             {'@xml:lang': 'en', '$': 'Biel/Bienne'},
             {'@xml:lang': 'es', '$': 'Biel-Bienne'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Biel/Bienne'},
             {'@xml:lang': 'fr', '$': 'Bienne'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/2658434/|http://sws.geonames.org/2661551/|http://sws.geonames.org/2661513/',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton of Bern|Biel/Bienne'},
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton de Berne|Bienne'},
              'Europe|Switzerland|Bern|Biel/Bienne'],
             'expandedCountry': [{'@xml:lang': 'en',
               '$': 'Europe|Switzerland|Canton of Bern'},
              {'@xml:lang': 'fr', '$': 'Europe|Suisse|Canton de Berne'},
              'Europe|Switzerland|Bern']},
            'latitude': '47.13713',
            'longitude': '7.24608',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2661551/',
              'prefLabel': ['Bern',
               {'@xml:lang': 'fr', '$': 'Canton de Berne'},
               {'@xml:lang': 'en', '$': 'Canton of Bern'},
               {'@xml:lang': 'es', '$': 'Bern'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Berne'},
               {'@xml:lang': 'fr', '$': 'Canton de Berne'}],
              'latitude': '46.87251',
              'longitude': '7.59563',
              'exactMatch': []}}}]}]},
       'dc:language': 'fre',
       'dc:rights': 'pdm'}},
     {'@uri': '10670/1.s1i323',
      'isidore': {'title': 'Las dos caras de la media luna. Rivalidad entre Irán y Arabia Saudita a través de la guerra híbrida (2011-2019)',
       'url': 'http://hdl.handle.net/10469/17381',
       'enrichedCreators': {'creator': {'@origin': 'Pinzón Navarro, Cristian Camilo',
         '@normalizedAuthor': 'Pinzón Navarro, Cristian Camilo',
         '@idAuthor': 'pinzon_navarro_cristian_camilo',
         'firstname': 'Cristian Camilo',
         'lastname': 'Pinzón Navarro',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2021-03',
        '@startDate': '2021-03-01',
        '@endDate': '2021-03-31',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-03-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '27997087',
         '$': 'http://hdl.handle.net/10469/17381'},
        'similar': 'Pinzón Navarro, Cristian Camilo. 2021. Las dos caras de la media luna. Rivalidad entre Irán y Arabia Saudita a través de la guerra híbrida (2011-2019). Tesis de maestría, Flacso Ecuador.'},
       'subjects': {'subject': ['GUERRA',
         'CONFLICTO SOCIAL',
         'POLÍTICA',
         'POLÍTICA EXTERIOR',
         'ARABIA SAUDITA',
         'IRÁN']},
       'abstract': 'La presente investigación tiene como objetivo comprender la rivalidad entre Irán y Arabia Saudita a través del modelo de la guerra híbrida, evidenciado en los esfuerzos dirigidos por cada Estado en contra del centro de gravedad (CdG) de su contraparte durante el período 2011-2019. Para ello, se recurrió a una discusión teórica, tomando como eje la categoría de guerra y sus dimensiones irregular, irrestricta e híbrida orientándose a indagar hasta qué punto dichos modelos permiten explicar y comprender mejor el caso de estudio, por lo que se argumenta que la interacción entre ambos Estados configuró una guerra híbrida como modelo de guerra a su rivalidad.',
       'types': {'type': 'Archive ouverte'},
       'source_info': {'collectionLabel': {'@shortLabel': 'FLACSO',
         '@handle': '10670/3.1bohpa',
         '@collectionUuid': '3440f35b-2143-3296-27bb-56ba8b631170',
         '$': 'Facultad Latinoamericana de Ciencias Sociales (FLACSO)'},
        'collectionOrganization': {'@organizationUrl': 'https://www.flacso.org',
         '$': 'Facultad Latinoamericana de Ciencias Sociales (FLACSO)'},
        'collectionURLMainSite': {'@thumbnaiId': '20549070',
         '$': 'https://www.flacso.org'},
        'collectionInformations': {'collectionDescription': 'La Facultad Latinoamericana de Ciencias Sociales (FLACSO) es un organismo internacional constituido por 18 Estados Miembros que actualmente desarrolla actividades académicas en 15 países de América Latina y el Caribe. La FLACSO fue creada en el año 1957. Desde esa fecha, se ha consolidado como organismo internacional latinoamericano y caribeño, de carácter académico, autónomo, dedicado a la promoción, enseñanza, investigación y la cooperación en el ámbito de las Ciencias Sociales.',
         'collectionCountry': 'CR',
         'collectionContactEmailAddress': 'info@flacso.org'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1bohpa|10670/2.vaix5p',
         '$': 'Facultad Latinoamericana de Ciencias Sociales (FLACSO)#FLACSO'},
        'sourceCode': {'@handle': '10670/2.vaix5p',
         '$': '42333335-2f83-39ad-546a-761927cc38bc'},
        'sourceName': {'@shortLabel': 'FLACSO',
         '$': 'Repositorio Digital FLACSO Ecuador'},
        'sourceDataType': 'Archive ouverte',
        'sourceWebSiteURL': {'@thumbnaiId': '20549069',
         '$': 'https://repositorio.flacsoandes.edu.ec'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://repositorio.flacsoandes.edu.ec',
         '$': 'Este repositorio institucional ha sido creado para administrar, difundir, preservar y brindar acceso a recursos académicos producidos por las diferentes sedes, programas y proyectos de la Facultad Latinoamericana de Ciencias Sociales, FLACSO. El repositorio se establece como un servicio en línea, de acceso libre y gratuito. La creación de este repositorio es iniciativa de la FLACSO sede Ecuador.'},
        'sourceOrganization': {'label': 'Facultad Latinoamericana de Ciencias Sociales Sede\n                                          Ecuador',
         'URI': 'https://www.flacso.edu.ec/portal',
         'isoCountry': 'EC',
         'contactEmailAddress': 'dspace@flacso.edu.ec'},
        'sourceParameters': {'baseUrl': 'https://repositorio.flacsoandes.edu.ec/oai/request',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/spa',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Spanish'},
            {'@xml:lang': 'fr', '$': 'Espagnol'},
            {'@xml:lang': 'es', '$': 'Idioma español'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZSukuWlnHA',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'luna'},
             {'@xml:lang': 'fr', '$': 'lune'},
             {'@xml:lang': 'en', '$': 'moon'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrt2F2H19Qt8j|http://ark.frantiq.fr/ark:/26678/pcrt4J7FjGwrcR|http://ark.frantiq.fr/ark:/26678/pcrtffeVX6Zg7Q|http://ark.frantiq.fr/ark:/26678/pcrtZSukuWlnHA'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtffeVX6Zg7Q',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'astre'},
               {'@xml:lang': 'es', '$': 'astro'},
               {'@xml:lang': 'en', '$': 'celestial body'}],
              'altLabel': {'@xml:lang': 'en', '$': 'heavenly body'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrt2F2H19Qt8j|http://ark.frantiq.fr/ark:/26678/pcrt4J7FjGwrcR|http://ark.frantiq.fr/ark:/26678/pcrtffeVX6Zg7Q'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Tout corps céleste naturel (Lar.)'}}}},
           {'@count': '3',
            '@uri': 'http://GeoEthno#ARABIE_SAOUDITE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Arabie saoudite'},
             {'@xml:lang': 'en', '$': 'Saudi Arabia'},
             {'@xml:lang': 'es', '$': 'Arabia Saudita'}],
            'altLabel': [{'@xml:lang': 'fr', '$': "Royaume d'Arabie saoudite"},
             {'@xml:lang': 'en', '$': 'Kingdom of Saudi Arabia'},
             {'@xml:lang': 'fr', '$': 'Arabie séoudite'}],
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_OCCIDENTALE|http://GeoEthno#ARABIE_SAOUDITE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Asie|Asie occidentale|Arabie saoudite'},
              {'@xml:lang': 'en', '$': 'Asia|Western Asia|Saudi Arabia'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ASIE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Asie occidentale'},
               {'@xml:lang': 'en', '$': 'Western Asia'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Asie Antérieure'},
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_OCCIDENTALE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Asie|Asie occidentale'}}}}},
           {'@count': '6',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/9028',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'war'},
             {'@xml:lang': 'es', '$': 'guerra'},
             {'@xml:lang': 'fr', '$': 'guerre'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A conflict or a state of hostility between two or more parties, nations or states, in which armed forces or military operations are used.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5243',
              'prefLabel': [{'@xml:lang': 'en', '$': 'military activities'},
               {'@xml:lang': 'es', '$': 'actividades militares'},
               {'@xml:lang': 'fr', '$': 'activité militaire'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Actions and movements pertaining to or conducted by the armed forces.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_37946'},
             {'@uri': 'http://eurovoc.europa.eu/1210'}]},
           {'@count': '6',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtf1yEbB24G1',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'guerra'},
             {'@xml:lang': 'fr', '$': 'guerre'},
             {'@xml:lang': 'en', '$': 'war'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg|http://ark.frantiq.fr/ark:/26678/pcrtf1yEbB24G1'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6|http://ark.frantiq.fr/ark:/26678/pcrtf1yEbB24G1'}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Terme pris dans sa généralité (BL). Ici se trouvent regroupées les guerres rattachées à une période précise'},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg',
               'prefLabel': [{'@xml:lang': 'es', '$': 'diplomacia'},
                {'@xml:lang': 'en', '$': 'diplomacy'},
                {'@xml:lang': 'fr', '$': 'diplomatie'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'politique extérieure'},
                {'@xml:lang': 'fr', '$': 'relation internationale'},
                {'@xml:lang': 'fr', '$': 'relations extérieures'}],
               'definition': {'@xml:lang': 'fr',
                '$': 'Branche de la science politique qui concerne les relations internationales (Lar.)'}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6',
               'prefLabel': [{'@xml:lang': 'en', '$': 'acts of war'},
                {'@xml:lang': 'fr', '$': 'faits de guerre'},
                {'@xml:lang': 'es', '$': 'hechos de guerra'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6'}}}]},
           {'@count': '6',
            '@uri': 'http://datos.bne.es/resource/XX525638',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Guerra'},
            'label': {'@xml:lang': 'es', '$': 'Guerra'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Conflictos bélicos'},
             {'@xml:lang': 'es', '$': 'Operaciones bélicas'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX551646',
              'prefLabel': {'@xml:lang': 'es', '$': 'Violencia política'},
              'label': {'@xml:lang': 'es', '$': 'Violencia política'},
              'altLabel': [{'@xml:lang': 'es', '$': 'Política y violencia'},
               {'@xml:lang': 'es', '$': 'Violencia--Aspectos políticos'}]}}},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85145114',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'War'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Hostilities'},
             {'@xml:lang': 'en', '$': 'Conflict, Armed (War)'},
             {'@xml:lang': 'en', '$': 'Wars'},
             {'@xml:lang': 'en', '$': 'Armed conflict (War)'},
             {'@xml:lang': 'en', '$': 'Fighting'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525653',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
            'label': {'@xml:lang': 'es', '$': 'Investigación'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
             {'@xml:lang': 'es', '$': 'Investigación científica'},
             {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
             {'@xml:lang': 'es', '$': 'I+D'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113021',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Scientific research'},
             {'@xml:lang': 'en', '$': 'Science research'},
             {'@xml:lang': 'en', '$': 'Science--Research'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
             {'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'},
             {'@xml:lang': 'en', '$': 'research'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'organisation de la recherche'},
               {'@xml:lang': 'es', '$': 'organización de la investigación'},
               {'@xml:lang': 'en', '$': 'organization of research'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'modèle'},
             {'@xml:lang': 'es', '$': 'modelo'},
             {'@xml:lang': 'en', '$': 'model (object of imitation)'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0|http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|art|art (conception of)|status of a work of art|model (object of imitation)'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0',
              'prefLabel': [{'@xml:lang': 'es', '$': 'estatus de la obra'},
               {'@xml:lang': 'en', '$': 'status of a work of art'},
               {'@xml:lang': 'fr', '$': "statut de l'oeuvre"}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX550599',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Centro de masa'},
            'label': {'@xml:lang': 'es', '$': 'Centro de masa'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Centro de gravedad'},
             {'@xml:lang': 'es', '$': 'Centro de inercia'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85021847',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Center of mass'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Gravity, Center of'},
             {'@xml:lang': 'en', '$': 'Center of gravity'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4849421',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Ello'},
            'label': {'@xml:lang': 'es', '$': 'Ello'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85064104',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Id (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
             {'@xml:lang': 'es', '$': 'punto'},
             {'@xml:lang': 'fr', '$': 'point'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A position on a reference system determined by a survey.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
              'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
               {'@xml:lang': 'es', '$': 'parámetro'},
               {'@xml:lang': 'fr', '$': 'paramètre'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/5325',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'model'},
             {'@xml:lang': 'es', '$': 'modelos'},
             {'@xml:lang': 'fr', '$': 'modèle'}],
            'definition': {'@xml:lang': 'en',
             '$': '1) A representation, usually on a smaller scale, of a device, structure, etc.  2) A quantitative or mathematical representation or computer simulation which attempts to describe the characteristics or relationships of physical events.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5327',
              'prefLabel': [{'@xml:lang': 'en', '$': 'modelling'},
               {'@xml:lang': 'es', '$': 'modelos y simulación'},
               {'@xml:lang': 'fr', '$': 'modélisation'}],
              'definition': {'@xml:lang': 'en',
               '$': 'An investigative technique using a mathematical or physical representation of a system or theory that accounts for all or some its known properties. Models are often used to test the effect of changes of system components on the overall performance of the system.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3663'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX529310',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Estudio'},
            'label': {'@xml:lang': 'es', '$': 'Estudio'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkwNS7UahHQ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'conflicto social'},
             {'@xml:lang': 'fr', '$': 'conflit social'},
             {'@xml:lang': 'en', '$': 'labour dispute'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'lutte sociale'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtVE7ES1LMHc|http://ark.frantiq.fr/ark:/26678/pcrtkwNS7UahHQ'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVE7ES1LMHc',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'faits sociaux'},
               {'@xml:lang': 'es', '$': 'hechos sociales'},
               {'@xml:lang': 'en', '$': 'social matters'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtVE7ES1LMHc'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576555',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Conflictos sociales'},
            'label': {'@xml:lang': 'es', '$': 'Conflictos sociales'},
            'altLabel': {'@xml:lang': 'es', '$': 'Conflicto social'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85123927',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Social conflict'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Social tensions'},
             {'@xml:lang': 'en', '$': 'Conflict, Social'},
             {'@xml:lang': 'en', '$': 'Class conflict'},
             {'@xml:lang': 'en', '$': 'Class struggle'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6371',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'politics'},
             {'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'fr', '$': 'politique'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The theory and practice of acquiring and exercising the power to govern in a society in order to arbitrate values, allocate resources and establish and enforce rules.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49988'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576319',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Política'},
            'label': {'@xml:lang': 'es', '$': 'Política'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ciencias políticas'},
             {'@xml:lang': 'es', '$': 'Política--Teorías'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX526289',
              'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias sociales'},
              'label': {'@xml:lang': 'es', '$': 'Ciencias sociales'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
             {'@xml:lang': 'en', '$': 'Government'},
             {'@xml:lang': 'en', '$': 'Political theory'},
             {'@xml:lang': 'en', '$': 'Civil government'},
             {'@xml:lang': 'en', '$': 'Commonwealth, The'},
             {'@xml:lang': 'en', '$': 'Science, Political'},
             {'@xml:lang': 'en', '$': 'Administration'},
             {'@xml:lang': 'en', '$': 'Politics'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6370',
            'prefLabel': [{'@xml:lang': 'en', '$': 'policy'},
             {'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'fr', '$': 'politique'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'política'},
             {'@xml:lang': 'en', '$': 'politics'},
             {'@xml:lang': 'fr', '$': 'politique'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576270',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es',
             '$': 'Relaciones internacionales'},
            'label': {'@xml:lang': 'es', '$': 'Relaciones internacionales'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Orden mundial'},
             {'@xml:lang': 'es', '$': 'Política exterior'},
             {'@xml:lang': 'es', '$': 'Política internacional'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067435',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'International relations'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Coexistence'},
             {'@xml:lang': 'en', '$': 'Foreign relations'},
             {'@xml:lang': 'en', '$': 'Peaceful coexistence'},
             {'@xml:lang': 'en', '$': 'World order'},
             {'@xml:lang': 'en', '$': 'Foreign policy'},
             {'@xml:lang': 'en', '$': 'Interdependence of nations'},
             {'@xml:lang': 'en', '$': 'International affairs'},
             {'@xml:lang': 'en', '$': 'Global governance'},
             {'@xml:lang': 'en', '$': 'Foreign affairs'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3404',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'foreign policy'},
             {'@xml:lang': 'es', '$': 'política exterior'},
             {'@xml:lang': 'fr', '$': 'politique étrangère'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The diplomatic policy of a nation in its interactions with other nations.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6370',
              'prefLabel': [{'@xml:lang': 'en', '$': 'policy'},
               {'@xml:lang': 'es', '$': 'política'},
               {'@xml:lang': 'fr', '$': 'politique'}]}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2500'}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '2',
           '@uri': 'http://sws.geonames.org/102358/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Saudi Arabia',
            {'@xml:lang': 'es', '$': 'Arabia Saudita'},
            {'@xml:lang': 'en', '$': 'Kingdom of Saudi Arabia'},
            {'@xml:lang': 'fr', '$': 'Arabie saoudite'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Arabie saoudite'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255147/|http://sws.geonames.org/102358/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Asie|Arabie saoudite'},
             {'@xml:lang': 'es', '$': 'Asia|Arabia Saudita'},
             {'@xml:lang': 'en', '$': 'Asia|Kingdom of Saudi Arabia'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Asie|Saudi Arabia'},
             {'@xml:lang': 'es', '$': 'Asia|Saudi Arabia'},
             {'@xml:lang': 'en', '$': 'Asia|Saudi Arabia'}]},
           'latitude': '25',
           'longitude': '45',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255147/',
             'prefLabel': ['Asia',
              {'@xml:lang': 'en', '$': 'Asia'},
              {'@xml:lang': 'fr', '$': 'Asie'},
              {'@xml:lang': 'es', '$': 'Asia'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Asie'},
             'latitude': '29.84064',
             'longitude': '89.29688'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '0.999',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.hist',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'en', '$': 'History'},
            {'@xml:lang': 'es', '$': 'Historia'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.hist',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Histoire"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|History'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Historia'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie228',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
               {'@xml:lang': 'es', '$': 'Historia'},
               {'@xml:lang': 'en', '$': 'History'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
               'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
                {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
                {'@xml:lang': 'en', '$': 'Society|History'}]}}},
            {'@uri': 'http://dbpedia.org/resource/History'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '0.999',
           '@uri': 'http://calenda.org/categories.rdf#categorie228',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Histoire'},
            {'@xml:lang': 'es', '$': 'Historia'},
            {'@xml:lang': 'en', '$': 'History'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie200|http://calenda.org/categories.rdf#categorie228',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Sociétés|Histoire'},
             {'@xml:lang': 'es', '$': 'Sociedad|Historia'},
             {'@xml:lang': 'en', '$': 'Society|History'}]}}}]},
       'dc:language': 'spa',
       'dc:rights': ['openAccess',
        'Atribución-NoComercial-SinDerivadas 3.0 Ecuador',
        'http://creativecommons.org/licenses/by-nc-nd/3.0/ec/']}},
     {'@uri': '10670/1.hfxdf1',
      'isidore': {'title': 'Predicting spatial patterns of soil bacteria under current and future environmental conditions.',
       'url': 'https://serval.unil.ch/notice/serval:BIB_595C7D7FADB0',
       'enrichedCreators': {'creator': [{'@origin': 'Mod, H.K.',
          '@normalizedAuthor': 'Mod, H.K.',
          '@idAuthor': 'mod_h_k',
          'firstname': 'H.K.',
          'lastname': 'Mod',
          'title': [],
          'sameAs': []},
         {'@origin': 'Buri, A.',
          '@normalizedAuthor': 'Buri, A.',
          '@idAuthor': 'buri_a',
          'firstname': 'A.',
          'lastname': 'Buri',
          'title': [],
          'sameAs': []},
         {'@origin': 'Yashiro, E.',
          '@normalizedAuthor': 'Yashiro, E.',
          '@idAuthor': 'yashiro_e',
          'firstname': 'E.',
          'lastname': 'Yashiro',
          'title': [],
          'sameAs': []},
         {'@origin': 'Guex, N.',
          '@normalizedAuthor': 'Guex, N.',
          '@idAuthor': 'guex_n',
          'firstname': 'N.',
          'lastname': 'Guex',
          'title': [],
          'sameAs': []},
         {'@origin': 'Malard, L.',
          '@normalizedAuthor': 'Malard, L.',
          '@idAuthor': 'malard_l',
          'firstname': 'L.',
          'lastname': 'Malard',
          'title': [],
          'sameAs': []},
         {'@origin': 'Pinto-Figueroa, E.',
          '@normalizedAuthor': 'Pinto-Figueroa, E.',
          '@idAuthor': 'pinto_figueroa_e',
          'firstname': 'E.',
          'lastname': 'Pinto-Figueroa',
          'title': [],
          'sameAs': []},
         {'@origin': 'Pagni, M.',
          '@normalizedAuthor': 'Pagni, M.',
          '@idAuthor': 'pagni_m',
          'firstname': 'M.',
          'lastname': 'Pagni',
          'title': [],
          'sameAs': []},
         {'@origin': 'Niculita-Hirzel, H.',
          '@normalizedAuthor': 'Niculita-Hirzel, H.',
          '@idAuthor': 'niculita_hirzel_h',
          'firstname': 'H.',
          'lastname': 'Niculita-Hirzel',
          'title': [],
          'sameAs': []},
         {'@origin': 'van der Meer, J.R.',
          '@normalizedAuthor': 'van der Meer, J.R.',
          '@idAuthor': 'van_der_meer_j_r',
          'firstname': 'J.R.',
          'lastname': 'van der Meer',
          'title': [],
          'sameAs': []},
         {'@origin': 'Guisan, A.',
          '@normalizedAuthor': 'Guisan, A.',
          '@idAuthor': 'guisan_a',
          'firstname': 'A.',
          'lastname': 'Guisan',
          'title': [],
          'sameAs': []}]},
       'date': {'@origin': '2021-09',
        '@startDate': '0002-02-01',
        '@endDate': '0002-02-01',
        'normalizedDate': '0002-02-01'},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28124699',
         '$': 'https://serval.unil.ch/notice/serval:BIB_595C7D7FADB0'},
        'similar': ['info:doi:10.1038/s41396-021-00947-5',
         'urn:issn:1751-7362']},
       'subjects': {'subject': 'Bacteria/genetics; Biodiversity; Ecosystem; Soil; Soil Microbiology'},
       'relations': {'relation': ['info:eu-repo/semantics/altIdentifier/doi/10.1038/s41396-021-00947-5',
         'info:eu-repo/semantics/altIdentifier/pmid/33712699',
         'info:eu-repo/semantics/altIdentifier/eissn/1751-7370',
         'info:eu-repo/grantAgreement/SNF/////',
         'info:eu-repo/grantAgreement/SNF//315230-184908///']},
       'abstract': 'Soil bacteria are largely missing from future biodiversity assessments hindering comprehensive forecasts of ecosystem changes. Soil bacterial communities are expected to be more strongly driven by pH and less by other edaphic and climatic factors. Thus, alkalinisation or acidification along with climate change may influence soil bacteria, with subsequent influences for example on nutrient cycling and vegetation. Future forecasts of soil bacteria are therefore needed. We applied species distribution modelling (SDM) to quantify the roles of environmental factors in governing spatial abundance distribution of soil bacterial OTUs and to predict how future changes in these factors may change bacterial communities in a temperate mountain area. Models indicated that factors related to soil (especially pH), climate and/or topography explain and predict part of the abundance distribution of most OTUs. This supports the expectations that microorganisms have specific environmental requirements (i.e., niches/envelopes) and that they should accordingly respond to environmental changes. Our predictions indicate a stronger role of pH over other predictors (e.g. climate) in governing distributions of bacteria, yet the predicted future changes in bacteria communities are smaller than their current variation across space. The extent of bacterial community change predictions varies as a function of elevation, but in general, deviations from neutral soil pH are expected to decrease abundances and diversity of bacteria. Our findings highlight the need to account for edaphic changes, along with climate changes, in future forecasts of soil bacteria.',
       'types': {'type': ['info:eu-repo/semantics/article', 'article']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Archive ouverte SERVAL',
         '@handle': '10670/3.4zhm4m',
         '@collectionUuid': 'a76702f8-bc35-cfd9-2938-0852ef010cbc',
         '$': 'Serveur Académique Lausannois'},
        'collectionOrganization': {'@organizationUrl': 'https://serval.unil.ch',
         '$': 'Université de Lausanne et CHUV'},
        'collectionURLMainSite': {'@thumbnaiId': '21537334',
         '$': 'https://serval.unil.ch'},
        'collectionInformations': {'collectionDescription': 'Le SERveur Académique Lausannois (Serval) est le dépôt institutionnel de l’Université de Lausanne et du CHUV. Les publications des chercheurs de ces deux institutions y sont préservées et disponibles en libre accès',
         'collectionCountry': 'CH',
         'collectionContactEmailAddress': 'serval_tech@unil.ch'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.4zhm4m|10670/2.4p86xg',
         '$': 'Serveur Académique Lausannois#SERVAL'},
        'sourceCode': {'@handle': '10670/2.4p86xg',
         '$': '4ee2f2be-9085-8266-9bce-39ad51bf137d'},
        'sourceName': {'@shortLabel': 'SERVAL',
         '$': 'Serveur académique Lausannois'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '21537334',
         '$': 'https://serval.unil.ch'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://wp.unil.ch/infoserval',
         '$': 'Le SERveur Académique Lausannois (Serval) est le dépôt institutionnel de l’Université de Lausanne et du CHUV. Les publications des chercheurs de ces deux institutions y sont préservées et disponibles en libre accès'},
        'sourceOrganization': {'label': 'Université de Lausanne et CHUV',
         'URI': 'https://serval.unil.ch',
         'isoCountry': 'FR',
         'contactEmailAddress': 'serval_tech@unil.ch'},
        'sourceParameters': {'baseUrl': 'https://serval.unil.ch/oaiprovider/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/eng',
           'prefLabel': [{'@xml:lang': 'en', '$': 'English'},
            {'@xml:lang': 'fr', '$': 'Anglais'},
            {'@xml:lang': 'es', '$': 'Idioma inglés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '10',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85124396',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Soils'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Soil'},
            {'@xml:lang': 'en', '$': 'Mould, Vegetable'},
            {'@xml:lang': 'en', '$': 'Vegetable mold'},
            {'@xml:lang': 'en', '$': 'Earth (Soils)'},
            {'@xml:lang': 'en', '$': 'Mold, Vegetable'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85102746',
              'prefLabel': {'@xml:lang': 'en', '$': 'Plant growing media'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Plant substrates'},
               {'@xml:lang': 'en', '$': 'Substrates, Plant'},
               {'@xml:lang': 'en', '$': 'Plant culture media'},
               {'@xml:lang': 'en', '$': 'Culture media, Plant'},
               {'@xml:lang': 'en', '$': 'Growing media, Plant'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh95004894',
              'prefLabel': {'@xml:lang': 'en', '$': 'Regolith'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Mantle rock'},
               {'@xml:lang': 'en', '$': 'Rock mantle'},
               {'@xml:lang': 'en', '$': 'Rhegolith'},
               {'@xml:lang': 'en', '$': 'Overburden (Geology)'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85002402',
              'prefLabel': {'@xml:lang': 'en', '$': 'Agricultural resources'},
              'altLabel': {'@xml:lang': 'en',
               '$': 'Resources, Agricultural'}}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119332927'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/63334'}]},
          {'@count': '10',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7843',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'soil'},
            {'@xml:lang': 'es', '$': 'suelos'},
            {'@xml:lang': 'fr', '$': 'sol'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The top layer of the land surface of the earth that is composed of disintegrated rock particles, humus, water and air.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6094',
             'prefLabel': [{'@xml:lang': 'en', '$': 'pedosphere'},
              {'@xml:lang': 'es', '$': 'pedosfera'},
              {'@xml:lang': 'fr', '$': 'pédosphère'}],
             'definition': {'@xml:lang': 'en',
              '$': 'That shell or layer of the Earth in which soil-forming processes occur.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_7156'}},
          {'@count': '8',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85010813',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bacteria'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Germs'},
            {'@xml:lang': 'en', '$': 'Microbes'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85107388',
             'prefLabel': {'@xml:lang': 'en', '$': 'Prokaryotes'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Prokaryonta'},
              {'@xml:lang': 'en', '$': 'Procaryotes'},
              {'@xml:lang': 'en', '$': 'Monera'},
              {'@xml:lang': 'en', '$': 'Procaryotae'},
              {'@xml:lang': 'en', '$': 'Prokaryotae'},
              {'@xml:lang': 'en', '$': 'Prokaryotic protists'}]}},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/2350'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119310101'}]},
          {'@count': '6',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrteWTSnMPNcW',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'avenir'},
            {'@xml:lang': 'en', '$': 'future'},
            {'@xml:lang': 'es', '$': 'porvenir'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtVJnFS01H7R|http://ark.frantiq.fr/ark:/26678/pcrteWTSnMPNcW',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|time notion|future'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVJnFS01H7R',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'temps notion'},
              {'@xml:lang': 'es', '$': 'tiempo noción'},
              {'@xml:lang': 'en', '$': 'time notion'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'temps (notion du)'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtVJnFS01H7R',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|time notion'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh93000732',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Environmental conditions'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005384'},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh87005569',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Biodiversity'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Biological diversity'},
            {'@xml:lang': 'en', '$': 'Biotic diversity'},
            {'@xml:lang': 'en', '$': 'Diversity, Biological'},
            {'@xml:lang': 'en', '$': 'Diversification, Biological'},
            {'@xml:lang': 'en', '$': 'Biological diversification'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85014203',
             'prefLabel': {'@xml:lang': 'en', '$': 'Biology'}}},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/5559'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb121441898'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/827',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'biodiversity'},
            {'@xml:lang': 'es', '$': 'biodiversidad'},
            {'@xml:lang': 'fr', '$': 'diversité biologique'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) Genetic diversity: the variation between individuals and between populations within a species; species diversity: the different types of plants, animals and other life forms within a region; community or ecosystem diversity: the variety of habitats found within an area (grassland, marsh, and woodland for instance. 2) An umbrella term to describe collectively the variety and variability of nature. It encompasses three basic levels of organisation in living systems: the genetic, species, and ecosystem levels. Plant and animal species are the most commonly recognized units of biological diversity, thus public concern has been mainly devoted to conserving species diversity.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2457',
             'prefLabel': [{'@xml:lang': 'en', '$': 'ecological parameter'},
              {'@xml:lang': 'es', '$': 'parámetro ecológico'},
              {'@xml:lang': 'fr', '$': 'paramètre écologique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A variable, measurable property whose value is a determinant of the characteristics of an ecosystem.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_33949'},
            {'@uri': 'http://eurovoc.europa.eu/5463'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85050485',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Forecasting'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Prediction'},
            {'@xml:lang': 'en', '$': 'Forecasts'},
            {'@xml:lang': 'en', '$': 'Futurology'}],
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/35747'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119756632'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2519',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'ecosystem'},
            {'@xml:lang': 'es', '$': 'ecosistemas'},
            {'@xml:lang': 'fr', '$': 'écosystème'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A community of organisms and their physical environment interacting as an ecological unit.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8262',
             'prefLabel': [{'@xml:lang': 'en', '$': 'synecology'},
              {'@xml:lang': 'es', '$': 'sinecología'},
              {'@xml:lang': 'fr', '$': 'synécologie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Study of the ecology of organisms, populations, communities or systems.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_2482'},
            {'@uri': 'http://eurovoc.europa.eu/664'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2015001082',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bacterial communities'},
           'altLabel': {'@xml:lang': 'en', '$': 'Communities, Bacterial'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85010814',
              'prefLabel': {'@xml:lang': 'en', '$': 'Bacteria--Ecology'},
              'altLabel': {'@xml:lang': 'en', '$': 'Bacterial ecology'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85014266',
              'prefLabel': {'@xml:lang': 'en', '$': 'Biotic communities'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Natural communities'},
               {'@xml:lang': 'en', '$': 'Biotic community ecology'},
               {'@xml:lang': 'en', '$': 'Biomes'},
               {'@xml:lang': 'en', '$': 'Ecological communities'},
               {'@xml:lang': 'en', '$': 'Ecosystems'},
               {'@xml:lang': 'en', '$': 'Communities, Biotic'},
               {'@xml:lang': 'en', '$': 'Community ecology, Biotic'},
               {'@xml:lang': 'en', '$': 'Biocoenoses'},
               {'@xml:lang': 'en', '$': 'Biological communities'},
               {'@xml:lang': 'en', '$': 'Biocenoses'},
               {'@xml:lang': 'en', '$': 'Biogeoecology'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007749',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Climatic factors'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Effect of climate on'},
            {'@xml:lang': 'en', '$': 'Effect of climatic changes on'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85027040',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Climatic factors'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_29554'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11931378g'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/44',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'acidification'},
            {'@xml:lang': 'es', '$': 'acidificación'},
            {'@xml:lang': 'fr', '$': 'acidification'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Addition of an acid to a solution until the pH falls below 7.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1324',
             'prefLabel': [{'@xml:lang': 'en', '$': 'chemical reaction'},
              {'@xml:lang': 'es', '$': 'reaciones químicas'},
              {'@xml:lang': 'fr', '$': 'réaction chimique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A change in which a substance is transformed into one or more new substances.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_90'},
            {'@uri': 'http://eurovoc.europa.eu/6407'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh86001947',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Acidification'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85022952',
             'prefLabel': {'@xml:lang': 'en', '$': 'Chemical reactions'},
             'altLabel': {'@xml:lang': 'en', '$': 'Reactions, Chemical'}}},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/2742'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12275873v'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85027037',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Climatic changes'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Climatic changes--Environmental aspects'},
            {'@xml:lang': 'en', '$': 'Global climate changes'},
            {'@xml:lang': 'en', '$': 'Climate change'},
            {'@xml:lang': 'en', '$': 'Climatic change'},
            {'@xml:lang': 'en', '$': 'Climate variations'},
            {'@xml:lang': 'en', '$': 'Climate changes'},
            {'@xml:lang': 'en', '$': 'Global climatic changes'},
            {'@xml:lang': 'en', '$': 'Changes, Climatic'},
            {'@xml:lang': 'en', '$': 'Climatic variations'},
            {'@xml:lang': 'en', '$': 'Climatic fluctuations'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85027044',
             'prefLabel': {'@xml:lang': 'en', '$': 'Climatology'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Science of climate'},
              {'@xml:lang': 'en', '$': 'Climate'},
              {'@xml:lang': 'en', '$': 'Climate science'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002005444',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Influence'},
           'altLabel': {'@xml:lang': 'en', '$': 'Influence and results'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119757907'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046090',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Example'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Pattern'},
            {'@xml:lang': 'en', '$': 'Model'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85029623',
              'prefLabel': {'@xml:lang': 'en', '$': 'Concepts'},
              'altLabel': {'@xml:lang': 'en', '$': 'Concept formation'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85009789',
              'prefLabel': {'@xml:lang': 'en', '$': 'Authority'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85064501',
              'prefLabel': {'@xml:lang': 'en', '$': 'Imitation'},
              'altLabel': {'@xml:lang': 'en', '$': 'Mimicry'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00005644',
              'prefLabel': {'@xml:lang': 'en', '$': 'Ethics'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Moral ideas'},
               {'@xml:lang': 'en', '$': 'Religion and ethics'},
               {'@xml:lang': 'en', '$': 'Biography--Character'},
               {'@xml:lang': 'en', '$': 'Knowledge--Ethics'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85045096',
              'prefLabel': {'@xml:lang': 'en', '$': 'Ethics'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Moral philosophy'},
               {'@xml:lang': 'en', '$': 'Science, Moral'},
               {'@xml:lang': 'en', '$': 'Morals'},
               {'@xml:lang': 'en', '$': 'Ethics, Primitive'},
               {'@xml:lang': 'en', '$': 'Philosophy, Moral'},
               {'@xml:lang': 'en', '$': 'Morality'},
               {'@xml:lang': 'en', '$': 'Deontology'},
               {'@xml:lang': 'en', '$': 'Ethology'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11979960t'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh96010039',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Nutrient cycles'},
           'altLabel': {'@xml:lang': 'en', '$': 'Nutrient cycling'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85014144',
             'prefLabel': {'@xml:lang': 'en', '$': 'Biogeochemical cycles'}}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb136227113'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85102839',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Plants'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Vegetable kingdom'},
            {'@xml:lang': 'en', '$': 'Plantae'},
            {'@xml:lang': 'en', '$': 'Plant kingdom'},
            {'@xml:lang': 'en', '$': 'Vegetation'},
            {'@xml:lang': 'en', '$': 'Wildlife'},
            {'@xml:lang': 'en', '$': 'Flora'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2003007697',
             'prefLabel': {'@xml:lang': 'en', '$': 'Organisms'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Living organisms'},
              {'@xml:lang': 'en', '$': 'Biota'},
              {'@xml:lang': 'en', '$': 'Biological organisms'}]}},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/858'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11933145f'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/874'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/17462'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8922',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'vegetation'},
            {'@xml:lang': 'es', '$': 'vegetación'},
            {'@xml:lang': 'fr', '$': 'végétation'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) The plants of an area considered in general or as communities, but not taxonomically; the total plant cover in a particular area or on the Earth as a whole. 2) The total mass of plant life that occupies a given area.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6299',
             'prefLabel': [{'@xml:lang': 'en', '$': 'plant community'},
              {'@xml:lang': 'es', '$': 'comunidad vegetal'},
              {'@xml:lang': 'fr', '$': 'communauté végétale'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Any group of plants belonging to a number of different species that co-occur in the same habitat or area and interact through trophic and spatial relationships; typically characterized by reference to one or more dominant species.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_8176'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85014147',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Biogeography'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Species distribution'},
            {'@xml:lang': 'en', '$': 'Areography (Biology)'},
            {'@xml:lang': 'en', '$': 'Species--Geographical distribution'},
            {'@xml:lang': 'en',
             '$': 'Geographical distribution of animals and plants'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00005919',
              'prefLabel': {'@xml:lang': 'en', '$': 'Geography'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85053986',
              'prefLabel': {'@xml:lang': 'en', '$': 'Geography'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85014203',
              'prefLabel': {'@xml:lang': 'en', '$': 'Biology'}}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13162665q'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/17385'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85086432',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Models and modelmaking'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Modelmaking'},
            {'@xml:lang': 'en', '$': 'Modelling'},
            {'@xml:lang': 'en', '$': 'Model-making'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85058715',
              'prefLabel': {'@xml:lang': 'en', '$': 'Handicraft'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Handcraft'},
               {'@xml:lang': 'en', '$': 'Crafts (Handicrafts)'}]}},
            {'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96005640'},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85080653',
              'prefLabel': {'@xml:lang': 'en', '$': 'Manual training'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Education, Industrial'},
               {'@xml:lang': 'en', '$': 'Industrial schools'},
               {'@xml:lang': 'en', '$': 'Industrial education'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85085667',
              'prefLabel': {'@xml:lang': 'en', '$': 'Miniature objects'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Miniatures'},
               {'@xml:lang': 'en', '$': 'Tiny objects'},
               {'@xml:lang': 'en', '$': 'Objects, Miniature'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11932510n'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5327',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'modelling'},
            {'@xml:lang': 'es', '$': 'modelos y simulación'},
            {'@xml:lang': 'fr', '$': 'modélisation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An investigative technique using a mathematical or physical representation of a system or theory that accounts for all or some its known properties. Models are often used to test the effect of changes of system components on the overall performance of the system.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7702',
             'prefLabel': [{'@xml:lang': 'en', '$': 'simulation'},
              {'@xml:lang': 'es', '$': 'simulación'},
              {'@xml:lang': 'fr', '$': 'simulation'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A representation of a problem, situation in mathematical terms, especially using a computer.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85086422',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Modeling'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Molding (Clay, plaster, etc.)'},
            {'@xml:lang': 'en', '$': 'Clay modeling'},
            {'@xml:lang': 'en', '$': 'Modelling'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85026864',
              'prefLabel': {'@xml:lang': 'en', '$': 'Clay'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85119004',
              'prefLabel': {'@xml:lang': 'en', '$': 'Sculpture'},
              'altLabel': {'@xml:lang': 'en', '$': 'Stonework, Decorative'}}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11949571r'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12162495z'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85028967',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Commission merchants'},
           'altLabel': {'@xml:lang': 'en', '$': 'Factors'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85083783',
             'prefLabel': {'@xml:lang': 'en', '$': 'Merchants'}}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11978359q'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85080657',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': "Manufacturers' agents"},
           'altLabel': [{'@xml:lang': 'en', '$': 'Factors'},
            {'@xml:lang': 'en', '$': "Agents, Manufacturers'"},
            {'@xml:lang': 'en', '$': "Manufacturers' representatives"}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85028967',
              'prefLabel': {'@xml:lang': 'en', '$': 'Commission merchants'},
              'altLabel': {'@xml:lang': 'en', '$': 'Factors'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85116732',
              'prefLabel': {'@xml:lang': 'en', '$': 'Sales personnel'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Salesmen'},
               {'@xml:lang': 'en', '$': 'Salespersons'},
               {'@xml:lang': 'en', '$': 'Salesmen and salesmanship'},
               {'@xml:lang': 'en', '$': 'Sales force'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11976045q'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2264',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'distribution'},
            {'@xml:lang': 'es', '$': 'distribución'},
            {'@xml:lang': 'fr', '$': 'distribution'}],
           'definition': {'@xml:lang': 'en',
            '$': 'In an environmental context, the term refers to the dispersion of air pollutants and depends on the type of pollution source (point source, line source, diffuse source), the wind velocity and the wind direction. Distribution can be active or passive.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6228',
             'prefLabel': [{'@xml:lang': 'en', '$': 'physical process'},
              {'@xml:lang': 'es', '$': 'procesos físicos'},
              {'@xml:lang': 'fr', '$': 'processus physique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A continuous action or series of changes which alters the material form of matter.'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfnNdLDrL4Q',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'distribución'},
            {'@xml:lang': 'en', '$': 'distribution'},
            {'@xml:lang': 'fr', '$': 'distribution'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'répartition'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrtFlZ2UyH7Bb|http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM|http://ark.frantiq.fr/ark:/26678/pcrtfnNdLDrL4Q',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|vie économique|économie (faits)|mode de distribution|distribution'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'mode de distribution'},
              {'@xml:lang': 'en', '$': 'mode of distribution'},
              {'@xml:lang': 'es', '$': 'modo de distribución'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrtFlZ2UyH7Bb|http://ark.frantiq.fr/ark:/26678/pcrtvU1AxrFxiM'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85096104',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Otus'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85118931',
              'prefLabel': {'@xml:lang': 'en', '$': 'Screech owls'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85128727',
              'prefLabel': {'@xml:lang': 'en', '$': 'Strigidae'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Typical owls'},
               {'@xml:lang': 'en', '$': 'Bubonidae'}]}}],
           'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/56383'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85022510',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Change'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85094833',
             'prefLabel': {'@xml:lang': 'en', '$': 'Ontology'},
             'altLabel': {'@xml:lang': 'en', '$': 'Being'}}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13319201c'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'cambio'},
            {'@xml:lang': 'en', '$': 'change'},
            {'@xml:lang': 'fr', '$': 'changement'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt28fUXAVb3Z',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'montagne'},
            {'@xml:lang': 'es', '$': 'montaña'},
            {'@xml:lang': 'en', '$': 'mountain'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01|http://ark.frantiq.fr/ark:/26678/pcrt28fUXAVb3Z',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|géographie|géographie physique|géomorphologie|montagne'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01',
             'prefLabel': [{'@xml:lang': 'es', '$': 'geomorfología'},
              {'@xml:lang': 'fr', '$': 'géomorphologie'},
              {'@xml:lang': 'en', '$': 'geomorphology'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'relief géographique'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtJHTcW3uQ01',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|géographie|géographie physique|géomorphologie'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5401',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'mountain'},
            {'@xml:lang': 'es', '$': 'montañas'},
            {'@xml:lang': 'fr', '$': 'montagne'}],
           'definition': {'@xml:lang': 'en',
            '$': "A feature of the earth's surface that rises high above the base and has generally steep slopes and a relatively small summit area. Mountains are an important source of water, energy, minerals, forest and agricultural products, and recreation. They are storehouses of biological diversity and endangered species and an essential part of the global ecosystem. About 10% of the world's population depend on mountain resources and nearly half of these people are affected by the degradation of mountain watershed areas."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5405',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mountainous area'},
              {'@xml:lang': 'es', '$': 'zonas montañosas'},
              {'@xml:lang': 'fr', '$': 'zone de montagne'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Area characterized by conspicuous peaks, ridges, or mountain ranges.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_12676'},
            {'@uri': 'http://eurovoc.europa.eu/1987'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002454'},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0dhrbSWbZw',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'barrio'},
            {'@xml:lang': 'en', '$': 'quarter'},
            {'@xml:lang': 'fr', '$': 'quartier'}],
           'altLabel': {'@xml:lang': 'en', '$': 'area'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2|http://ark.frantiq.fr/ark:/26678/pcrt0dhrbSWbZw',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|nucleated settlement|quarter'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hábitat agrupado'},
              {'@xml:lang': 'fr', '$': 'habitat groupé'},
              {'@xml:lang': 'en', '$': 'nucleated settlement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|habitat groupé"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|hábitat agrupado'}]},
             'definition': {'@xml:lang': 'fr',
              '$': "Sous ce terme sont regroupés tous les types d'agglomération urbaine (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh88005783',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Area'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13753975x'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/11981'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006390',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Models'},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/9318'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12265710g'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11932510n'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85027044',
           'prefLabel': {'@xml:lang': 'en', '$': 'Climatology'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Science of climate'},
            {'@xml:lang': 'en', '$': 'Climate'},
            {'@xml:lang': 'en', '$': 'Climate science'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1462',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'climate'},
            {'@xml:lang': 'es', '$': 'clima'},
            {'@xml:lang': 'fr', '$': 'climat'}],
           'definition': {'@xml:lang': 'en',
            '$': "The average weather condition in a region of the world. Many aspects of the Earth's geography affect the climate. Equatorial, or low, latitudes are hotter than the polar latitudes because of the angle at which the rays of sunlight arrive at the Earth's surface. The difference in temperature at the equator and at the poles has an influence on the global circulation of huge masses of air. Cool air at the poles sinks and spreads along the surface of the Earth towards the equator. Cool air forces its way under the lower density warmer air in the lower regions, pushing the lighter air up and toward the poles, where it will cool and descend."},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_1665'},
            {'@uri': 'http://eurovoc.europa.eu/6011'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007747',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Climate'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtr2LIg20u6S',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'clima'},
            {'@xml:lang': 'fr', '$': 'climat'},
            {'@xml:lang': 'en', '$': 'climate'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtqj3vNw55Df|http://ark.frantiq.fr/ark:/26678/pcrtr2LIg20u6S',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|géographie|géographie physique|climatologie|climat'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble des phénomènes métérologiques caractéristiques d'un lieu donné (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqj3vNw55Df',
             'prefLabel': [{'@xml:lang': 'es', '$': 'climatología'},
              {'@xml:lang': 'fr', '$': 'climatologie'},
              {'@xml:lang': 'en', '$': 'climatology'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'paléoclimatologie'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrtqj3vNw55Df',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|géographie|géographie physique|climatologie'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science des climats (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85027036'},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSJlHFFua75',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'topografía'},
            {'@xml:lang': 'fr', '$': 'topographie'},
            {'@xml:lang': 'en', '$': 'topography'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'relevé de terrain'},
            {'@xml:lang': 'fr', '$': 'topographie historique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS|http://ark.frantiq.fr/ark:/26678/pcrtSJlHFFua75',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie|topographie'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Description de la configuration d'un lieu ; technique du levé des cartes et des plans (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS',
             'prefLabel': [{'@xml:lang': 'es', '$': 'cartografía'},
              {'@xml:lang': 'fr', '$': 'cartographie'},
              {'@xml:lang': 'en', '$': 'cartography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85084725',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Microorganisms'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Microscopic organisms'},
            {'@xml:lang': 'en', '$': 'Micro-organisms'},
            {'@xml:lang': 'en', '$': 'Germs'},
            {'@xml:lang': 'en', '$': 'Microbes'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2003007697',
             'prefLabel': {'@xml:lang': 'en', '$': 'Organisms'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Living organisms'},
              {'@xml:lang': 'en', '$': 'Biota'},
              {'@xml:lang': 'en', '$': 'Biological organisms'}]}},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11965359s'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/5881'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85107523',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prophecies'},
           'altLabel': {'@xml:lang': 'en', '$': 'Predictions'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85064465',
             'prefLabel': {'@xml:lang': 'en',
              '$': 'Imaginary wars and battles'},
             'altLabel': [{'@xml:lang': 'en',
               '$': 'Wars and battles, Imaginary'},
              {'@xml:lang': 'en', '$': 'Imaginary battles'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11970707n'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85029195',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Communities'},
           'altLabel': {'@xml:lang': 'en', '$': 'Community'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85123946',
             'prefLabel': {'@xml:lang': 'en', '$': 'Social groups'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Group dynamics'},
              {'@xml:lang': 'en', '$': 'Association'},
              {'@xml:lang': 'en', '$': 'Groups, Social'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005083',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Variation'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119422283'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119765124'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003964',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Space'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85084286',
             'prefLabel': {'@xml:lang': 'en', '$': 'Metaphysics'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
            {'@xml:lang': 'es', '$': 'espacio'},
            {'@xml:lang': 'en', '$': 'space'}],
           'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'espace-temps'},
              {'@xml:lang': 'es', '$': 'espacio-tiempo'},
              {'@xml:lang': 'en', '$': 'space-time continuum'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKPKSRRMdbB',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'communauté'},
            {'@xml:lang': 'en', '$': 'community'},
            {'@xml:lang': 'es', '$': 'comunidad'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX|http://ark.frantiq.fr/ark:/26678/pcrtKPKSRRMdbB'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Groupe de gens qui ont des intérêts communs (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'organisation sociale'},
              {'@xml:lang': 'es', '$': 'organización social'},
              {'@xml:lang': 'en', '$': 'social organization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtckTraG5aXX'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'general'},
            {'@xml:lang': 'es', '$': 'general'},
            {'@xml:lang': 'fr', '$': 'général'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe|http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'chef militaire'},
              {'@xml:lang': 'es', '$': 'jefe militar'},
              {'@xml:lang': 'en', '$': 'military chief'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5555',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'need'},
            {'@xml:lang': 'es', '$': 'necesidad'},
            {'@xml:lang': 'fr', '$': 'besoin'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The fact or an instance of feeling the lack of something.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6861',
             'prefLabel': [{'@xml:lang': 'en', '$': 'quality of life'},
              {'@xml:lang': 'es', '$': 'calidad de vida'},
              {'@xml:lang': 'fr', '$': 'qualité de vie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Quality of life is largely a matter of individual preference and perception and overlaps the concept of social well-being. Generally the emphasis is on the amount and distribution of jointly consumed public goods, such as health care and welfare services, protection against crime, regulation of pollution, preservation of fine landscapes and historic townscapes.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85124357',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Soil microbiology'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Soils--Bacteriology'},
            {'@xml:lang': 'en', '$': 'Soil microorganisms'},
            {'@xml:lang': 'en', '$': 'Soil micro-organisms'},
            {'@xml:lang': 'en', '$': 'Soils--Microbiology'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85124322',
              'prefLabel': {'@xml:lang': 'en', '$': 'Soil biology'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85084783',
              'prefLabel': {'@xml:lang': 'en', '$': 'Microbiology'},
              'altLabel': {'@xml:lang': 'en', '$': 'Microbial biology'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00005932',
              'prefLabel': {'@xml:lang': 'en', '$': 'Microbiology'},
              'altLabel': {'@xml:lang': 'en', '$': 'Bacteriology'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11941336r'}}]},
        'categories': {'@type': 'ISIDORE_HAL_CATEGO',
         'category': {'@proba': '1.000',
          '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.envir',
          'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
          'prefLabel': [{'@xml:lang': 'en', '$': 'Environmental studies'},
           {'@xml:lang': 'es', '$': 'Estudios del entorno (medio ambiente)'},
           {'@xml:lang': 'fr', '$': "Etudes de l'environnement"}],
          'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.envir',
           'expandedLabel': [{'@xml:lang': 'fr',
             '$': "Sciences de l'Homme et Société|Etudes de l'environnement"},
            {'@xml:lang': 'en',
             '$': 'Humanities and Social Sciences|Environmental studies'},
            {'@xml:lang': 'es',
             '$': 'Ciencias sociales|Estudios del entorno (medio ambiente)'}]},
          'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
             {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
             {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
            'definition': {'@xml:lang': 'fr',
             '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
          'exactMatch': {'@uri': 'http://dbpedia.org/resource/Environmental_studies'}}}},
       'dc:language': 'eng'}},
     {'@uri': '10670/1.yx87pk',
      'isidore': {'title': 'Educomunicación e interculturalidad a partir de la gestión educativa con la radio',
       'url': 'http://scielo.senescyt.gob.ec/scielo.php?script=sci_arttext&pid=S1390-86342021000200039',
       'enrichedCreators': {'creator': [{'@origin': 'Carias-Pérez,Fernando',
          '@normalizedAuthor': 'Carias-Pérez, Fernando',
          '@idAuthor': 'carias_perez_fernando',
          'firstname': 'Fernando',
          'lastname': 'Carias-Pérez',
          'title': [],
          'sameAs': []},
         {'@origin': 'Marín-Gutiérrez,Isidro',
          '@normalizedAuthor': 'Marín-Gutiérrez, Isidro',
          '@idAuthor': 'marin_gutierrez_isidro',
          'firstname': 'Isidro',
          'lastname': 'Marín-Gutiérrez',
          'title': [],
          'sameAs': []},
         {'@origin': 'Hernando-Gómez,Ángel',
          '@normalizedAuthor': 'Hernando-Gómez, Ángel',
          '@idAuthor': 'hernando_gomez_angel',
          'firstname': 'Ángel',
          'lastname': 'Hernando-Gómez',
          'title': [],
          'sameAs': []}]},
       'date': {'@origin': '2021-12-01',
        '@startDate': '2021-12-01',
        '@endDate': '2021-12-01',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-12-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28041050',
         '$': 'http://scielo.senescyt.gob.ec/scielo.php?script=sci_arttext&pid=S1390-86342021000200039'}},
       'subjects': {'subject': ['Educomunicación',
         'interculturalidad',
         'radio',
         'Chile',
         'cualitativa',
         'entrevistas',
         'estudiantes',
         'cultura']},
       'relations': {'relation': '10.17163/uni.n35.2021.02'},
       'abstract': 'Resumen El presente artículo propone establecer criterios que permitan acoplar dos áreas disciplinares que pudieran parecer antagónicas pero que poseen características para articularse. En primer lugar, se plantean caracterizaciones de la educomunicación y la interculturalidad, razonadas con base en el rol que desde las ciencias sociales ocupan como áreas del conocimiento, para posteriormente ofrecer orientaciones sobre cómo pueden conectarse e interactuar para ponerse al servicio de proyectos e iniciativas de gestión educativa que vinculen a la educación, la comunicación y la cultura, específicamente desde el uso de la radio educativa en escuelas rurales del sur de Chile, las cuales poseen estudiantes de origen mapuche-huilliche. La perspectiva metodológica es de carácter cualitativa, hecha evidente mediante una revisión bibliográfica desde un compendio de material referencial, con la intención de generar el marco teórico de una investigación doctoral con foco en prácticas educomunicativas en contextos interculturales, así como datos obtenidos a partir de un trabajo de campo y entrevistas semiestructuradas a informantes claves. El artículo evidencia cómo pueden generarse propuestas que redunden en hacer más efectivos los procesos formativos de los estudiantes en contextos de interculturalidad, así como el fortalecimiento identitario y revitalización cultural para favorecer la construcción de sociedades democráticas y una cultura de paz, teniendo como dínamo los fenómenos que emanan desde la comunicación.',
       'types': {'type': 'info:eu-repo/semantics/article'},
       'source_info': {'collectionLabel': {'@shortLabel': 'SciELO',
         '@handle': '10670/3.7oraz1',
         '@collectionUuid': 'd4d63191-85d3-4fb9-9db1-a1efdca0eda3',
         '$': 'SciELO : Scientific Electronic Library Online'},
        'collectionOrganization': {'@organizationUrl': 'http://www.scielo.org',
         '$': 'SciELO'},
        'collectionURLMainSite': {'@thumbnaiId': '8144499',
         '$': 'http://www.scielo.org'},
        'collectionInformations': {'collectionDescription': 'The 15 year path taken by the SciELO Program in bringing about the improvement of the academic journals which it indexes and publishes in Open Access - a path which it continues to follow to this day – is examined from various perspectives such as the rationale and objectives of the program, its origin in Brazil and expansion to 15 other countries, the results it has achieved, its quality control and production system, the technological platform and the impact that has been made by the Program.',
         'collectionCountry': 'EN',
         'collectionContactEmailAddress': 'scielo@scielo.org'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.7oraz1|10670/2.ievqno',
         '$': 'SciELO : Scientific Electronic Library Online#Universitas'},
        'sourceCode': {'@handle': '10670/2.ievqno',
         '$': '112ecc52-add9-8e38-6921-a542a7754cef'},
        'sourceName': {'@shortLabel': 'Universitas',
         '$': 'Universitas, Revista de Ciencias Sociales y Humanas'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '18565243',
         '$': 'http://scielo.senescyt.gob.ec/scielo.php?script=sci_serial&pid=1390-8634&nrm=iso&lng=es'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'https://www.scielo.org',
         '$': '«Universitas» es una publicación científica bilingüe de la Universidad Politécnica Salesiana de Ecuador, editada desde enero de 2002 de forma ininterrumpida, con periodicidad fija semestral, especializada en Ciencias Sociales y Humanas y sus líneas interdisciplinares como Sociología, Antropología, Psicología Social, Desarrollo Social, Comunidades, Estudios Latinoamericanos, Estudios Políticos, entre otras.'},
        'sourceOrganization': {'label': 'SciELO',
         'URI': 'https://www.scielo.org',
         'isoCountry': 'ES',
         'contactEmailAddress': 'scielo@scielo.org'},
        'sourceParameters': {'baseUrl': 'http://scielo.senescyt.gob.ec/oai/scielo-oai.php',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n,%p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/spa',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Spanish'},
            {'@xml:lang': 'fr', '$': 'Espagnol'},
            {'@xml:lang': 'es', '$': 'Idioma español'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX536595',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Gestión'},
            'label': {'@xml:lang': 'es', '$': 'Gestión'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4985',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'management'},
             {'@xml:lang': 'es', '$': 'gestión'},
             {'@xml:lang': 'fr', '$': 'gestion'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Government, control, superintendence, physical or manual handling or guidance; act of managing by direction or regulation, or administration, as management of family, or of household, etc.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_16086'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6901',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'radio'},
             {'@xml:lang': 'es', '$': 'radio'},
             {'@xml:lang': 'fr', '$': 'radio'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The process, equipment or programming involved in transmitting and receiving sound signals by electromagnetic waves.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
              'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
               {'@xml:lang': 'es', '$': 'medios de comunicación'},
               {'@xml:lang': 'fr', '$': 'mass media'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6431'}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX526707',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Radio'},
            'label': {'@xml:lang': 'es', '$': 'Radio'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Radiocomunicaciones'},
             {'@xml:lang': 'es', '$': 'Radiotecnia'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX525038',
              'prefLabel': {'@xml:lang': 'es', '$': 'Telecomunicaciones'},
              'label': {'@xml:lang': 'es', '$': 'Telecomunicaciones'}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85110385',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Radio'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Wireless (Radio)'},
             {'@xml:lang': 'en', '$': 'Telephone, Wireless'},
             {'@xml:lang': 'en', '$': 'Wireless telephone (Early radio)'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu'},
             {'@xml:lang': 'es', '$': 'lugar'},
             {'@xml:lang': 'en', '$': 'place'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw|http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space|place'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
               {'@xml:lang': 'es', '$': 'espacio'},
               {'@xml:lang': 'en', '$': 'space'}],
              'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526289',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias sociales'},
            'label': {'@xml:lang': 'es', '$': 'Ciencias sociales'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85124003',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Social sciences'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Social science'},
             {'@xml:lang': 'en', '$': 'Sciences, Social'},
             {'@xml:lang': 'en', '$': 'Human sciences'},
             {'@xml:lang': 'en', '$': 'Social studies'},
             {'@xml:lang': 'en', '$': 'Behavioral sciences'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/10057',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'social science'},
             {'@xml:lang': 'es', '$': 'ciencias sociales'},
             {'@xml:lang': 'fr', '$': 'sciences sociales'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The study of society and of the relationship of individual members within society, including economics, history, political science, psychology, anthropology, and sociology.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_36390'},
             {'@uri': 'http://eurovoc.europa.eu/3956'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4659805',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Conocimiento'},
            'label': {'@xml:lang': 'es', '$': 'Conocimiento'},
            'altLabel': {'@xml:lang': 'es', '$': 'Cognición'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgkti2gYbdf',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'educación'},
             {'@xml:lang': 'en', '$': 'education'},
             {'@xml:lang': 'fr', '$': 'éducation'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'paideia'},
             {'@xml:lang': 'fr', '$': 'pédagogie'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgkti2gYbdf',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|knowledge|education'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
              'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
               {'@xml:lang': 'es', '$': 'saber'},
               {'@xml:lang': 'fr', '$': 'savoir'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527117',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Educación'},
            'label': {'@xml:lang': 'es', '$': 'Educación'},
            'altLabel': {'@xml:lang': 'es', '$': 'Formación'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85040989',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Education'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Students--Education'},
             {'@xml:lang': 'en', '$': 'Children--Education'},
             {'@xml:lang': 'en', '$': 'Education of children'},
             {'@xml:lang': 'en', '$': 'Schooling'},
             {'@xml:lang': 'en', '$': 'Pedagogy'},
             {'@xml:lang': 'en', '$': 'Youth--Education'},
             {'@xml:lang': 'en', '$': 'Instruction'},
             {'@xml:lang': 'en', '$': 'Education, Primitive'},
             {'@xml:lang': 'en', '$': 'Human resource development'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/2547',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'education'},
             {'@xml:lang': 'es', '$': 'educación'},
             {'@xml:lang': 'fr', '$': 'éducation'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The act or process of imparting or acquiring knowledge or skills.'},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_2488'},
             {'@uri': 'http://eurovoc.europa.eu/668'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX525191',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Comunicación'},
            'label': {'@xml:lang': 'es', '$': 'Comunicación'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85029027',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Communication'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Communication, Primitive'},
             {'@xml:lang': 'en', '$': 'Mass communication'}]},
           {'@count': '3',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1921',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'culture (society)'},
             {'@xml:lang': 'es', '$': 'cultura'},
             {'@xml:lang': 'fr', '$': 'culture (aspects sociaux)'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The body of customary beliefs, social forms, and material traits constituting a distinct complex of tradition of a racial or social group.'},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/317'}},
           {'@count': '3',
            '@uri': 'http://datos.bne.es/resource/XX525150',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Cultura'},
            'label': {'@xml:lang': 'es', '$': 'Cultura'}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Cultura'},
             {'@xml:lang': 'fr', '$': 'culture'},
             {'@xml:lang': 'en', '$': 'Culture'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filosofía|filosofía (noción)|naturaleza/cultura|Cultura'}}],
            'definition': {'@xml:lang': 'fr',
             '$': "En philosophie désigne ce qui est différent de la nature, c'est-à-dire ce qui est de l'ordre de l'acquis et non de l'inné. En sociologie,  désigne ce qui est commun à un groupe d'individus et ce qui le soude, c'est-à-dire ce qui est appris, transmis, produit et créé et englobe les arts, les lettres, les sciences, les modes de vie, les droits fondamentaux de l'être humain, les systèmes de valeurs, les traditions et les croyances. (d'après Wikipédia)"},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
               'prefLabel': [{'@xml:lang': 'en',
                 '$': 'civilization processes'},
                {'@xml:lang': 'fr', '$': 'faits de civilisation'},
                {'@xml:lang': 'es', '$': 'hechos de civilización'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|histoire-civilisation|faits de civilisation'}}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D',
               'prefLabel': [{'@xml:lang': 'es', '$': 'naturaleza/cultura'},
                {'@xml:lang': 'en', '$': 'nature/culture'},
                {'@xml:lang': 'fr', '$': 'nature/culture'}],
               'altLabel': {'@xml:lang': 'fr', '$': 'culture/nature'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526712',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Radio en la enseñanza'},
            'label': {'@xml:lang': 'es', '$': 'Radio en la enseñanza'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Enseñanza por radio'},
             {'@xml:lang': 'es', '$': 'Radio educativa'},
             {'@xml:lang': 'es', '$': 'Radio en la educación'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX527993',
              'prefLabel': {'@xml:lang': 'es',
               '$': 'Medios de comunicación social en la enseñanza'},
              'label': {'@xml:lang': 'es',
               '$': 'Medios de comunicación social en la enseñanza'},
              'altLabel': [{'@xml:lang': 'es',
                '$': 'Enseñanza y medios de comunicación social'},
               {'@xml:lang': 'es',
                '$': 'Medios de comunicación social en la educación'},
               {'@xml:lang': 'es',
                '$': 'Medios de comunicación social y enseñanza'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85110486',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Radio in education'},
            'altLabel': {'@xml:lang': 'en', '$': 'Radio education'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528217',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escuelas rurales'},
            'label': {'@xml:lang': 'es', '$': 'Escuelas rurales'},
            'altLabel': {'@xml:lang': 'es', '$': 'Escuelas de pueblo'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85115928',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Rural schools'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Rural high schools'},
             {'@xml:lang': 'en', '$': 'High schools, Rural'},
             {'@xml:lang': 'en', '$': 'Schools, Rural'},
             {'@xml:lang': 'en', '$': 'One-teacher schools'},
             {'@xml:lang': 'en', '$': 'One-room schools'},
             {'@xml:lang': 'en', '$': 'Country schools'}]},
           {'@count': '3',
            '@uri': 'http://datos.bne.es/resource/XX527280',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Estudiantes'},
            'label': {'@xml:lang': 'es', '$': 'Estudiantes'},
            'altLabel': {'@xml:lang': 'es', '$': 'Alumnos'}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85129296',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Students'},
            'altLabel': [{'@xml:lang': 'en', '$': 'School life'},
             {'@xml:lang': 'en', '$': 'Students--Education'},
             {'@xml:lang': 'en', '$': 'Pupils'},
             {'@xml:lang': 'en', '$': 'Student life and customs'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX551089',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Origen'},
            'label': {'@xml:lang': 'es', '$': 'Origen'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh87003201',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Origin'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526251',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Perspectiva'},
            'label': {'@xml:lang': 'es', '$': 'Perspectiva'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Perspectiva arquitectónica'},
             {'@xml:lang': 'es', '$': 'Perspectiva lineal'},
             {'@xml:lang': 'es', '$': 'Perspectiva mecánica'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85100171',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Perspective'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Mechanical perspective'},
             {'@xml:lang': 'en', '$': 'Linear perspective'},
             {'@xml:lang': 'en', '$': 'Architectural perspective'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'perspectiva'},
             {'@xml:lang': 'en', '$': 'perspective'},
             {'@xml:lang': 'fr', '$': 'perspective'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF|http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'architectural representation'},
               {'@xml:lang': 'es', '$': 'representación arquitectural'},
               {'@xml:lang': 'fr', '$': 'représentation architecturale'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526047',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Carácter'},
            'label': {'@xml:lang': 'es', '$': 'Carácter'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Caracteres (Psicología)'},
             {'@xml:lang': 'es', '$': 'Caracteriología'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX524400',
              'prefLabel': {'@xml:lang': 'es', '$': 'Personalidad'},
              'label': {'@xml:lang': 'es', '$': 'Personalidad'},
              'altLabel': [{'@xml:lang': 'es',
                '$': 'Psicología de la personalidad'},
               {'@xml:lang': 'es', '$': 'Rasgos de personalidad'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85022615',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Character'},
            'altLabel': {'@xml:lang': 'en', '$': 'Ethology'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX555328',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Intención'},
            'label': {'@xml:lang': 'es', '$': 'Intención'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067189',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Intention'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'frame'},
             {'@xml:lang': 'fr', '$': 'huisserie'},
             {'@xml:lang': 'es', '$': 'marco'}],
            'altLabel': [{'@xml:lang': 'en', '$': 'doorframe'},
             {'@xml:lang': 'es', '$': 'marco de puerta'},
             {'@xml:lang': 'es', '$': 'marco de ventana'},
             {'@xml:lang': 'en', '$': 'windowframe'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde'},
            'definition': [{'@xml:lang': 'ar', '$': 'إطار باب أو نافذة'},
             {'@xml:lang': 'fr',
              '$': 'Encadrement fixe, en bois ou en métal, délimitant une baie dans une cloison et recevant ou non, une porte ou par extension une fenêtre. (TLF)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
               {'@xml:lang': 'fr', '$': 'objet'},
               {'@xml:lang': 'es', '$': 'objeto'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
               {'@xml:lang': 'fr', '$': 'petit objet'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|object'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525653',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
            'label': {'@xml:lang': 'es', '$': 'Investigación'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
             {'@xml:lang': 'es', '$': 'Investigación científica'},
             {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
             {'@xml:lang': 'es', '$': 'I+D'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113021',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Research'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Scientific research'},
             {'@xml:lang': 'en', '$': 'Science research'},
             {'@xml:lang': 'en', '$': 'Science--Research'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
             {'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
             {'@xml:lang': 'fr', '$': 'recherche'},
             {'@xml:lang': 'en', '$': 'research'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'prefLabel': [{'@xml:lang': 'fr',
                '$': 'organisation de la recherche'},
               {'@xml:lang': 'es', '$': 'organización de la investigación'},
               {'@xml:lang': 'en', '$': 'organization of research'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526806',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Datos'},
            'label': {'@xml:lang': 'es', '$': 'Datos'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'},
             {'@xml:lang': 'en', '$': 'work'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
               {'@xml:lang': 'fr', '$': 'société'},
               {'@xml:lang': 'en', '$': 'society'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
              'definition': {'@xml:lang': 'fr',
               '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
             {'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'}],
            'definition': {'@xml:lang': 'en',
             '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
             {'@uri': 'http://eurovoc.europa.eu/4543'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524430',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
            'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh90004091',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Labor'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Labor and laboring classes'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3176',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'field'},
             {'@xml:lang': 'es', '$': 'campo'},
             {'@xml:lang': 'fr', '$': 'champ'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A limited area of land with grass or crops growing on it, which is usually surrounded by fences or closely planted bushes when it is part of a farm.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7345',
              'prefLabel': [{'@xml:lang': 'en', '$': 'rural area'},
               {'@xml:lang': 'es', '$': 'zonas rurales'},
               {'@xml:lang': 'fr', '$': 'espace rural'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Area outside the limits of any incorporated or unincorporated city, town, village, or any other designated residential or commercial area such as a subdivision, a business or shopping center, or community development.'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLf3Bt5nKRt',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'campo'},
             {'@xml:lang': 'en', '$': 'countryside'},
             {'@xml:lang': 'fr', '$': 'milieu rural'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'campagne'},
             {'@xml:lang': 'fr', '$': 'espace rural'},
             {'@xml:lang': 'es', '$': 'medio rural'},
             {'@xml:lang': 'fr', '$': 'milieu campagnal'},
             {'@xml:lang': 'fr', '$': 'monde rural'},
             {'@xml:lang': 'en', '$': 'rural area'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrtLf3Bt5nKRt',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Sujets|géographie|géographie humaine|occupation du sol|milieu rural'},
              {'@xml:lang': 'es',
               '$': 'Tema|geografía|geografía humana|ocupación del suelo|campo'}]},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ensemble des espaces cultivés habités. Il est caractérisé par une faible densité par rapport aux pôles urbains environnants, par un paysage à dominante végétale (champs, prairies, forêts et autres espaces naturels ou semi-naturels), par une activité agricole dominante. (Wikipédia)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x',
              'prefLabel': [{'@xml:lang': 'en', '$': 'land use'},
               {'@xml:lang': 'fr', '$': 'occupation du sol'},
               {'@xml:lang': 'es', '$': 'ocupación del suelo'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'aménagement du sol'},
               {'@xml:lang': 'fr', '$': 'occupation des sols'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie humaine|occupation du sol'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Manière dont les sociétés humaines occupent et exploitent un territoire.  (déf. : Histoire et Mesure)   Une présence humaine est attestée sur le territoire, mais il n’y pas eu nécessairement de volonté de structurer/organiser le territoire.'}}}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX527258',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Entrevistas'},
            'label': {'@xml:lang': 'es', '$': 'Entrevistas'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067568',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Interviews'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526383',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Códigos y claves'},
            'label': {'@xml:lang': 'es', '$': 'Códigos y claves'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Cifras (Criptografía)'},
             {'@xml:lang': 'es', '$': 'Cifras y claves'},
             {'@xml:lang': 'es', '$': 'Claves'},
             {'@xml:lang': 'es', '$': 'Códigos cifrados'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026047',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Ciphers'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Codes'},
             {'@xml:lang': 'en', '$': 'Contractions'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX555763',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Claves'},
            'label': {'@xml:lang': 'es', '$': 'Claves'},
            'altLabel': {'@xml:lang': 'es',
             '$': 'Claves (Instrumento musical)'},
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX527362',
              'prefLabel': {'@xml:lang': 'es',
               '$': 'Instrumentos de percusión'},
              'label': {'@xml:lang': 'es',
               '$': 'Instrumentos de percusión'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026839',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Claves'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX543297',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Evidencia'},
            'label': {'@xml:lang': 'es', '$': 'Evidencia'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526521',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Procesos'},
            'label': {'@xml:lang': 'es', '$': 'Procesos'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Causas célebres'},
             {'@xml:lang': 'es', '$': 'Juicios'},
             {'@xml:lang': 'es', '$': 'Litigios'},
             {'@xml:lang': 'es', '$': 'Procesos célebres'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137328',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Trials'},
            'altLabel': {'@xml:lang': 'en', '$': 'State trials'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'block of flats'},
             {'@xml:lang': 'es', '$': 'construcción'},
             {'@xml:lang': 'fr', '$': 'immeuble'}],
            'altLabel': [{'@xml:lang': 'en', '$': 'apartment building'},
             {'@xml:lang': 'fr', '$': 'habitation-HLM'},
             {'@xml:lang': 'en', '$': 'insula'},
             {'@xml:lang': 'fr', '$': 'insula'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
              'expandedLabel': [{'@xml:lang': 'en',
                '$': 'Themes|architecture|architecture (conception)|domestic architecture|settlement|block of flats'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat|immeuble'}]},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtfdjrKksfEZ|http://ark.frantiq.fr/ark:/26678/pcrt2f8QaSD6TS',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|specialized quarter|block of flats'}}],
            'definition': {'@xml:lang': 'fr',
             '$': 'Demeure divisée, à la construction, en appartements pour plusieurs particuliers. (Dico archi)'},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
               'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
                {'@xml:lang': 'es', '$': 'hábitat'},
                {'@xml:lang': 'en', '$': 'settlement'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
                {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
               'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
                 'expandedLabel': {'@xml:lang': 'fr',
                  '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
                {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
               'definition': {'@xml:lang': 'fr',
                '$': "Lieu d'habitation construit."}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfdjrKksfEZ',
               'prefLabel': [{'@xml:lang': 'es', '$': 'barrio especial'},
                {'@xml:lang': 'fr', '$': 'quartier spécial'},
                {'@xml:lang': 'en', '$': 'specialized quarter'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524879',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Construcción'},
            'label': {'@xml:lang': 'es', '$': 'Construcción'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Edificación'},
             {'@xml:lang': 'es', '$': 'Edificios--Construcción'},
             {'@xml:lang': 'es', '$': 'Industria de la construcción'},
             {'@xml:lang': 'es', '$': 'Sector de la construcción'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85017693',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Building'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Architectural engineering'},
             {'@xml:lang': 'en', '$': 'Construction'},
             {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
             {'@xml:lang': 'en', '$': 'Engineering, Architectural'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'building (process of)'},
             {'@xml:lang': 'es', '$': 'construcción'},
             {'@xml:lang': 'fr', '$': 'construction'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|technology|building (process of)'}}],
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
               'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
                {'@xml:lang': 'fr', '$': 'architecture'},
                {'@xml:lang': 'es', '$': 'arquitectura'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
               'definition': {'@xml:lang': 'fr',
                '$': 'Art de construire les bâtiments (Lar.)'}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
               'prefLabel': [{'@xml:lang': 'fr', '$': 'technologie'},
                {'@xml:lang': 'en', '$': 'technology'},
                {'@xml:lang': 'es', '$': 'tecnología'}],
               'altLabel': [{'@xml:lang': 'fr', '$': 'technique'},
                {'@xml:lang': 'fr', '$': 'technique de fabrication'},
                {'@xml:lang': 'fr', '$': 'techniques'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526638',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Sociedades'},
            'label': {'@xml:lang': 'es', '$': 'Sociedades'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Compañías mercantiles'},
             {'@xml:lang': 'es', '$': 'Sociedades comerciales'},
             {'@xml:lang': 'es', '$': 'Sociedades industriales'},
             {'@xml:lang': 'es', '$': 'Sociedades mercantiles'}],
            'semanticExpansion': {'concept': {'@uri': 'http://datos.bne.es/resource/XX526249',
              'prefLabel': {'@xml:lang': 'es', '$': 'Personas jurídicas'},
              'label': {'@xml:lang': 'es', '$': 'Personas jurídicas'},
              'altLabel': [{'@xml:lang': 'es',
                '$': 'Personalidad jurídica de personas morales'},
               {'@xml:lang': 'es', '$': 'Personalidad moral'},
               {'@xml:lang': 'es', '$': 'Personas morales convencionales'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85032928',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Corporations'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Business corporations'},
             {'@xml:lang': 'en', '$': 'Publicly traded corporations'},
             {'@xml:lang': 'en', '$': 'C corporations'},
             {'@xml:lang': 'en', '$': 'Limited companies'},
             {'@xml:lang': 'en', '$': 'Subchapter C corporations'},
             {'@xml:lang': 'en', '$': 'Corporations, Public'},
             {'@xml:lang': 'en', '$': 'Stock corporations'},
             {'@xml:lang': 'en', '$': 'Public limited companies'},
             {'@xml:lang': 'en', '$': 'Corporations, Business'},
             {'@xml:lang': 'en', '$': 'Publicly held corporations'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525221',
            'inScheme': 'http://datos.bne.es/scheme/conceptScheme',
            'prefLabel': {'@xml:lang': 'es', '$': 'Paz'},
            'label': {'@xml:lang': 'es', '$': 'Paz'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Paz internacional'},
             {'@xml:lang': 'es', '$': 'Paz mundial'},
             {'@xml:lang': 'es', '$': 'Paz universal'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85098940',
            '@origin': 'bne',
            'prefLabel': {'@xml:lang': 'en', '$': 'Peace'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Coexistence, Peaceful'},
             {'@xml:lang': 'en', '$': 'Peaceful coexistence'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPRbtzKcyJh',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'paix'},
             {'@xml:lang': 'es', '$': 'paz'},
             {'@xml:lang': 'en', '$': 'peace'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg|http://ark.frantiq.fr/ark:/26678/pcrtPRbtzKcyJh'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg',
              'prefLabel': [{'@xml:lang': 'es', '$': 'diplomacia'},
               {'@xml:lang': 'en', '$': 'diplomacy'},
               {'@xml:lang': 'fr', '$': 'diplomatie'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'politique extérieure'},
               {'@xml:lang': 'fr', '$': 'relation internationale'},
               {'@xml:lang': 'fr', '$': 'relations extérieures'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtqeK4ywympg'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Branche de la science politique qui concerne les relations internationales (Lar.)'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '2',
           '@uri': 'http://sws.geonames.org/3895114/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Chile',
            {'@xml:lang': 'es', '$': 'Chile'},
            {'@xml:lang': 'en', '$': 'Republic of Chile'},
            {'@xml:lang': 'fr', '$': 'Chili'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Chili'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255150/|http://sws.geonames.org/3895114/',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Amérique du Sud|Chili'},
             {'@xml:lang': 'es', '$': 'América del Sur|Chile'},
             {'@xml:lang': 'en', '$': 'South America|Republic of Chile'}],
            'expandedCountry': [{'@xml:lang': 'fr',
              '$': 'Amérique du Sud|Chile'},
             {'@xml:lang': 'es', '$': 'América del Sur|Chile'},
             {'@xml:lang': 'en', '$': 'South America|Chile'}]},
           'latitude': '-30',
           'longitude': '-71',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255150/',
             'prefLabel': ['South America',
              {'@xml:lang': 'en', '$': 'South America'},
              {'@xml:lang': 'es', '$': 'América del Sur'},
              {'@xml:lang': 'fr', '$': 'Amérique du Sud'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Sud'},
             'latitude': '-14.60485',
             'longitude': '-57.65625'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.edu',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Educación'},
            {'@xml:lang': 'en', '$': 'Education'},
            {'@xml:lang': 'fr', '$': 'Education'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.edu',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Education"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Education'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Educación'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie283',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Educación'},
               {'@xml:lang': 'en', '$': 'Education'},
               {'@xml:lang': 'fr', '$': 'Éducation'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie283',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Educación'},
                {'@xml:lang': 'fr', '$': 'Esprit et Langage|Éducation'},
                {'@xml:lang': 'en', '$': 'Mind and language|Education'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Education'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie283',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Educación'},
            {'@xml:lang': 'en', '$': 'Education'},
            {'@xml:lang': 'fr', '$': 'Éducation'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie283',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Educación'},
             {'@xml:lang': 'fr', '$': 'Esprit et Langage|Éducation'},
             {'@xml:lang': 'en', '$': 'Mind and language|Education'}]}}}]},
       'dc:language': 'es',
       'dc:rights': 'info:eu-repo/semantics/openAccess'}},
     {'@uri': '10.4000/etudescaribeennes.22159',
      'isidore': {'title': 'Le tourisme de croisière dans l’océan Indien\xa0: enjeux et perspectives',
       'url': 'http://journals.openedition.org/etudescaribeennes/22159',
       'enrichedCreators': {'creator': [{'@origin': 'Buzenot, Laurence',
          '@normalizedAuthor': 'Buzenot, Laurence',
          '@idAuthor': 'buzenot_laurence',
          'firstname': 'Laurence',
          'lastname': 'Buzenot',
          'title': [],
          'sameAs': {'idref': '16846098X'}},
         {'@origin': 'Dehoorne, Olivier',
          '@normalizedAuthor': 'Dehoorne, Olivier',
          '@idAuthor': 'dehoorne_olivier',
          'firstname': 'Olivier',
          'lastname': 'Dehoorne',
          'title': [],
          'sameAs': {'orcid': '0000-0002-1098-2197',
           'idref': '035675659',
           'idhal': 'olivier-dehoorne'}}]},
       'date': {'@origin': '2021-09-13',
        '@startDate': '2021-09-13',
        '@endDate': '2021-09-13',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-09-13',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '28137332',
          '$': 'http://journals.openedition.org/etudescaribeennes/22159'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'http://journals.openedition.org/etudescaribeennes/tei/22159'}],
        'similar': 'urn:doi:10.4000/etudescaribeennes.22159'},
       'types': {'type': 'article'},
       'source_info': {'collectionLabel': {'@shortLabel': 'OpenEdition Journals',
         '@handle': '10670/3.wnt2uz',
         '@collectionUuid': '1696a612-a6e4-473d-8f35-4cf007b39469',
         '$': 'OpenEdition Journals'},
        'collectionOrganization': {'@organizationUrl': 'http://www.openedition.org',
         '$': 'OpenEdition'},
        'collectionURLMainSite': {'@thumbnaiId': '630816',
         '$': 'http://journals.openedition.org'},
        'collectionInformations': {'collectionDescription': "Né en 1999, Revues.org est le plus ancien portail français de revues en ligne en sciences humaines et sociales. Il est développé par le Centre pour l'édition électronique ouverte (Cléo), un laboratoire associant le CNRS, l'EHESS, l'Université de Provence et l'Université d'Avignon. Depuis 2011, Revues.org fait partie du portail de ressources électronique OpenEdition.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'http://www.revues.org/images/revues-org.png',
         'collectionContactEmailAddress': 'contact@openedition.org'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'urn:doi:(10.4000/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.wnt2uz|10670/2.i0s7z1',
         '$': 'OpenEdition Journals#etudescaribeennes'},
        'sourceCode': {'@handle': '10670/2.i0s7z1',
         '$': '31d659d3-8b9d-47b0-9505-4a29c88d9337'},
        'sourceName': {'@shortLabel': 'etudescaribeennes',
         '$': 'Études caribéennes'},
        'sourceISSN': ['https://portal.issn.org/resource/ISSN/1779-0980',
         'https://portal.issn.org/resource/ISSN/1961-859X'],
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '631104',
         '$': 'http://journals.openedition.org/etudescaribeennes'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://journals.openedition.org/etudescaribeennes',
         '$': 'Regards croisés d’universitaires de la Caraïbe et du monde, travaux originaux de jeunes chercheurs et de chercheurs confirmés, Études caribéennes est un espace d’expression scientifique qui a pour support principal le bassin caribéen. Géographie, aménagement, économie et sciences sociales (histoire, sociologie, anthropologie) : à travers une approche pluridisciplinaire, cette revue contribue à la réflexion sur le développement de l’espace caribéen. La revue propose trois numéros annuels organisés autour d’un dossier thématique central. Les textes publiés, en français, en anglais, en espagnol, sont évalués par un comité scientifique international.'},
        'sourceOrganization': {'label': 'OpenEdition',
         'URI': 'http://www.openedition.org',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@openedition.org'},
        'sourceParameters': {'baseUrl': 'http://oai.openedition.org/',
         'followOnRedirect': 'true',
         'indexableFile': 'false',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#article',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Articles'},
            {'@xml:lang': 'en', '$': 'Articles'},
            {'@xml:lang': 'es', '$': 'Artículos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1985',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Tourisme'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2149|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1829|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1831|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1985'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1831',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Secteur tertiaire'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Tertiaire'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8522',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'tourism'},
            {'@xml:lang': 'es', '$': 'turismo'},
            {'@xml:lang': 'fr', '$': 'tourisme'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The temporary movement of people to destinations outside their normal places or work and residence, the activities undertaken during their stay in those destinations and the facilities created to cater for their needs.'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_7822'},
            {'@uri': 'http://eurovoc.europa.eu/4470'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlDXPYfuMMf',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'tourism'},
            {'@xml:lang': 'fr', '$': 'tourisme'},
            {'@xml:lang': 'es', '$': 'turismo'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtlDXPYfuMMf',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|tourisme'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13318422n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Tourisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Équipement touristique'},
            {'@xml:lang': 'fr', '$': 'Industrie touristique'},
            {'@xml:lang': 'fr', '$': 'Offre touristique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11951149r',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Services'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Services aux entreprises'},
              {'@xml:lang': 'fr', '$': 'Prestataires de services'},
              {'@xml:lang': 'fr', '$': 'Services (activités tertiaires)'},
              {'@xml:lang': 'fr', '$': 'Activités tertiaires'},
              {'@xml:lang': 'fr', '$': 'Services (industrie)'},
              {'@xml:lang': 'fr', '$': 'Industries de services'},
              {'@xml:lang': 'fr', '$': 'Services marchands'},
              {'@xml:lang': 'fr', '$': 'Secteur tertiaire'},
              {'@xml:lang': 'fr', '$': 'Tertiaire (économie politique)'},
              {'@xml:lang': 'fr', '$': 'Industrie des services'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-632'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85136255',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Tourism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Tourist traffic'},
            {'@xml:lang': 'en', '$': 'Tourism--Economic aspects'},
            {'@xml:lang': 'en', '$': 'Tourist trade'},
            {'@xml:lang': 'en', '$': 'Tourist industry'},
            {'@xml:lang': 'en', '$': 'Holiday industry'},
            {'@xml:lang': 'en', '$': 'Tourism industry'},
            {'@xml:lang': 'en', '$': 'Operators, Tour (Industry)'},
            {'@xml:lang': 'en', '$': 'Tourism operators (Industry)'},
            {'@xml:lang': 'en', '$': 'Tour operators (Industry)'},
            {'@xml:lang': 'en', '$': 'Visitor industry'},
            {'@xml:lang': 'en', '$': 'Travel industry'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1888',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'cruising'},
            {'@xml:lang': 'es', '$': 'crucero'},
            {'@xml:lang': 'fr', '$': 'croisière'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Travelling by sea in a liner for pleasure, usually calling at a number of ports.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8598',
             'prefLabel': [{'@xml:lang': 'en', '$': 'traffic on water'},
              {'@xml:lang': 'es', '$': 'tráfico en agua'},
              {'@xml:lang': 'fr', '$': 'trafic fluvial'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The movement of boats and other vessels over any water route or area.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtV7JugxY82K',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'ocean'},
            {'@xml:lang': 'fr', '$': 'océan'},
            {'@xml:lang': 'es', '$': 'océano'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB|http://ark.frantiq.fr/ark:/26678/pcrtV7JugxY82K',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Themes|methodology|document analysis|record-diffusion|graphics|cartography|hydrography|ocean'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|géographie|géographie physique|hydrographie|océan'}]},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB|http://ark.frantiq.fr/ark:/26678/pcrtV7JugxY82K',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie|hydrographie|océan'}}],
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hidrografía'},
              {'@xml:lang': 'fr', '$': 'hydrographie'},
              {'@xml:lang': 'en', '$': 'hydrography'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtEbZ8WTILNS|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|cartographie|hydrographie'}},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrt6g3bwHKS6p|http://ark.frantiq.fr/ark:/26678/pcrt1QYjcunSnB',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|géographie|géographie physique|hydrographie'}}],
             'definition': {'@xml:lang': 'fr',
              '$': "Etude et description des cours d'eau et des étendues d'eau (océans, mers, lacs...) qu'on peut observer à la surface de la terre mais également de la topographie maritime qui a pour objet de lever le plan du fond des mers et des fleuves, et de déterminer les diverses profondeurs de l'eau, la force des courants et des marées, dans le but d'établir des cartes marines. (d'après Wikipédia)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1305',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mer'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Océan'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1305',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '030 Paysage - environnement|Environnement|Environnement naturel|Mer'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Environnement naturel'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Espace naturel'},
              {'@xml:lang': 'fr', '$': 'Milieu naturel'},
              {'@xml:lang': 'fr', '$': 'Biosphère'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-841|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-843'}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#OCEAN',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Océan'},
           'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#CAMEROUN|http://GeoEthno#SUD_--_CMR|http://GeoEthno#OCEAN',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Afrique|Afrique centrale|Cameroun|Sud -- CMR|Océan'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#SUD_--_CMR',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sud -- CMR'},
             'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#CAMEROUN|http://GeoEthno#SUD_--_CMR',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Afrique|Afrique centrale|Cameroun|Sud -- CMR'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5789',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'ocean'},
            {'@xml:lang': 'es', '$': 'océanos'},
            {'@xml:lang': 'fr', '$': 'océan'}],
           'definition': {'@xml:lang': 'en',
            '$': "The mass of water occupying all of the Earth's surface not occupied by land, but excluding all lakes and inland seas."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7495',
             'prefLabel': [{'@xml:lang': 'en', '$': 'sea'},
              {'@xml:lang': 'es', '$': 'mares'},
              {'@xml:lang': 'fr', '$': 'mer'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) In general, the marine section of the globe as opposed to that of the land.  2) The name given to a body of salt water smaller than an ocean and generally in proximity to a continent.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2107'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119328810',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mer'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Océan'},
            {'@xml:lang': 'fr', '$': 'Habitat sous-marin'},
            {'@xml:lang': 'fr', '$': 'Océans'},
            {'@xml:lang': 'fr', '$': 'Mers'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975911n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Terre'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Globe terrestre'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12355639w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Espaces naturels'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Zones naturelles'},
               {'@xml:lang': 'fr', '$': 'Espace naturel'},
               {'@xml:lang': 'fr', '$': 'Milieux naturels'},
               {'@xml:lang': 'fr', '$': 'Milieu naturel'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1318'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85093871',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Ocean'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Sea, The'},
            {'@xml:lang': 'en', '$': 'Oceans'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524709',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Mares y océanos'},
           'label': {'@xml:lang': 'es', '$': 'Mares y océanos'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Mar'},
            {'@xml:lang': 'es', '$': 'Océanos'}]}]}}}},
     {'@uri': '10670/1.xgxfxb',
      'isidore': {'title': 'Gestion des émotions des enfants avec une maladie chronique',
       'url': 'https://serval.unil.ch/notice/serval:BIB_S_32335',
       'enrichedCreators': {'creator': {'@origin': 'Diez Menendez, Taryn',
         '@normalizedAuthor': 'Diez Menendez, Taryn',
         '@idAuthor': 'diez_menendez_taryn',
         'firstname': 'Taryn',
         'lastname': 'Diez Menendez',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2021-06-21',
        '@startDate': '2021-06-21',
        '@endDate': '2021-06-21',
        '@treeDate': '2000/2020/2021',
        'normalizedDate': '2021-06-21',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2021'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '28124865',
         '$': 'https://serval.unil.ch/notice/serval:BIB_S_32335'}},
       'types': {'type': ['info:eu-repo/semantics/masterThesis',
         'masterthesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Archive ouverte SERVAL',
         '@handle': '10670/3.4zhm4m',
         '@collectionUuid': 'a76702f8-bc35-cfd9-2938-0852ef010cbc',
         '$': 'Serveur Académique Lausannois'},
        'collectionOrganization': {'@organizationUrl': 'https://serval.unil.ch',
         '$': 'Université de Lausanne et CHUV'},
        'collectionURLMainSite': {'@thumbnaiId': '21537334',
         '$': 'https://serval.unil.ch'},
        'collectionInformations': {'collectionDescription': 'Le SERveur Académique Lausannois (Serval) est le dépôt institutionnel de l’Université de Lausanne et du CHUV. Les publications des chercheurs de ces deux institutions y sont préservées et disponibles en libre accès',
         'collectionCountry': 'CH',
         'collectionContactEmailAddress': 'serval_tech@unil.ch'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.4zhm4m|10670/2.4p86xg',
         '$': 'Serveur Académique Lausannois#SERVAL'},
        'sourceCode': {'@handle': '10670/2.4p86xg',
         '$': '4ee2f2be-9085-8266-9bce-39ad51bf137d'},
        'sourceName': {'@shortLabel': 'SERVAL',
         '$': 'Serveur académique Lausannois'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '21537334',
         '$': 'https://serval.unil.ch'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://wp.unil.ch/infoserval',
         '$': 'Le SERveur Académique Lausannois (Serval) est le dépôt institutionnel de l’Université de Lausanne et du CHUV. Les publications des chercheurs de ces deux institutions y sont préservées et disponibles en libre accès'},
        'sourceOrganization': {'label': 'Université de Lausanne et CHUV',
         'URI': 'https://serval.unil.ch',
         'isoCountry': 'FR',
         'contactEmailAddress': 'serval_tech@unil.ch'},
        'sourceParameters': {'baseUrl': 'https://serval.unil.ch/oaiprovider/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4985',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'management'},
            {'@xml:lang': 'es', '$': 'gestión'},
            {'@xml:lang': 'fr', '$': 'gestion'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Government, control, superintendence, physical or manual handling or guidance; act of managing by direction or regulation, or administration, as management of family, or of household, etc.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_16086'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1005',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gestion'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1005',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Gestion'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11950206h',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gestion'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences de la gestion'},
            {'@xml:lang': 'fr', '$': 'Gestion, Sciences de la'},
            {'@xml:lang': 'fr', '$': 'Sciences de gestion'},
            {'@xml:lang': 'fr', '$': 'Techniques de gestion'},
            {'@xml:lang': 'fr', '$': 'Direction'},
            {'@xml:lang': 'fr', '$': 'Management'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007911',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Management'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
            {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
            {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
            {'@xml:lang': 'fr', '$': 'Expression des émotions'},
            {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
            {'@xml:lang': 'fr', '$': 'Émotivité'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932675h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Psychophysiologie'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Physiologie psychique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119408497',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Psychologie individuelle'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85042818',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Emotions'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Human emotions'},
            {'@xml:lang': 'en', '$': 'Passions'},
            {'@xml:lang': 'en', '$': 'Feelings'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119319811',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Enfants'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Enfant'},
            {'@xml:lang': 'fr', '$': 'Enfance'},
            {'@xml:lang': 'fr', '$': 'Progéniture'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339867',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Parents (membres d'une famille)"},
               {'@xml:lang': 'fr', '$': 'Vie familiale'},
               {'@xml:lang': 'fr', '$': 'Milieu familial'},
               {'@xml:lang': 'fr', '$': 'Relations familiales'},
               {'@xml:lang': 'fr', '$': 'Liens familiaux'},
               {'@xml:lang': 'fr', '$': 'Cellule familiale'},
               {'@xml:lang': 'fr', '$': 'Famille nucléaire'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12223381k',
              'prefLabel': {'@xml:lang': 'fr', '$': "Groupes d'âge"},
              'altLabel': [{'@xml:lang': 'fr', '$': "Classes d'âge"},
               {'@xml:lang': 'fr', '$': "Âge, Groupes d'"}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121235840',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Âges de la vie'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Âges de l'homme"},
               {'@xml:lang': 'fr', '$': 'Étapes de la vie'},
               {'@xml:lang': 'fr', '$': 'Cycle de la vie'},
               {'@xml:lang': 'fr', '$': 'Cycle vital'}]}}],
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_1547'},
            {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-946'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004941',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Children'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2232',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'disease'},
            {'@xml:lang': 'es', '$': 'enfermedades'},
            {'@xml:lang': 'fr', '$': 'maladie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A definite pathological process having a characteristic set of signs and symptoms which are detrimental to the well-being of the individual.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49879'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11958830z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Maladies'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Maladie'},
            {'@xml:lang': 'fr', '$': 'Maux'},
            {'@xml:lang': 'fr', '$': 'Mal'},
            {'@xml:lang': 'fr', '$': 'Pathologies'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527798',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Morbilidad'},
           'label': {'@xml:lang': 'es', '$': 'Morbilidad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Morbididad'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524957',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Enfermedades'},
           'label': {'@xml:lang': 'es', '$': 'Enfermedades'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002330',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Diseases'},
           'altLabel': {'@xml:lang': 'en', '$': 'Diseases and hygiene'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtMY50Z2K4Fh',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'disease'},
            {'@xml:lang': 'es', '$': 'enfermedad'},
            {'@xml:lang': 'fr', '$': 'maladie'}],
           'altLabel': {'@xml:lang': 'en', '$': 'illness'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3|http://ark.frantiq.fr/ark:/26678/pcrtMY50Z2K4Fh'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'pathologie'},
              {'@xml:lang': 'en', '$': 'pathology'},
              {'@xml:lang': 'es', '$': 'patología'}],
             'altLabel': [{'@xml:lang': 'en', '$': 'palaeopathology'},
              {'@xml:lang': 'fr', '$': 'paléopathologie'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science des causes et des symptômes des maladies (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfnilzKMZFt',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'anales'},
            {'@xml:lang': 'fr', '$': 'annales'},
            {'@xml:lang': 'en', '$': 'annals'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'chronique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrtfnilzKMZFt'},
           'definition': {'@xml:lang': 'fr',
            '$': "Ouvrage qui rapporte les événements en suivant l'ordre chronologique (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
              {'@xml:lang': 'fr', '$': 'genre narratif'},
              {'@xml:lang': 'en', '$': 'narrative genre'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}}}}}]}},
       'dc:language': 'fre'}},
     {'@uri': '10.7202/1077304ar',
      'isidore': {'title': 'Le père japonais dans une société ultramobile de célibataires',
       'url': 'http://id.erudit.org/iderudit/1077304ar',
       'enrichedCreators': {'creator': [{'@origin': 'Harvey, Valérie',
          '@normalizedAuthor': 'Harvey, Valérie',
          '@idAuthor': 'harvey_valerie',
          'firstname': 'Valérie',
          'lastname': 'Harvey',
          'title': [],
          'sameAs': {'orcid': '0000-0002-9623-4009', 'idref': '149255691'}},
         {'@origin': 'Tremblay, Diane-Gabrielle',
          '@normalizedAuthor': 'Tremblay, Diane-Gabrielle',
          '@idAuthor': 'tremblay_diane_gabrielle',
          'firstname': 'Diane-Gabrielle',
          'lastname': 'Tremblay',
          'title': [],
          'sameAs': {'idref': '032371616'}}]},
       'date': {'@origin': '2015',
        '@startDate': '2015-01-01',
        '@endDate': '2015-12-31',
        '@treeDate': '2000/2010/2015',
        'normalizedDate': '2015-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2015'}},
       'ore': {'aggregates': [{'@thumbnail': 'true',
          '@crawl': 'false',
          '@thumbnailId': '27997555',
          '$': 'http://id.erudit.org/iderudit/1077304ar'},
         {'@crawl': 'true',
          '@rdfVisible': 'false',
          '@thumbnail': 'false',
          '$': 'http://oai.erudit.org/oai-interop/?verb=GetRecord&identifier=oai:erudit.org:1077304ar&metadataPrefix=ea'}],
        'similar': 'doi:10.7202/1077304ar'},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Japon'},
         {'@xml:lang': 'fr', '$': 'congé parental'},
         {'@xml:lang': 'fr', '$': 'congé paternel'},
         {'@xml:lang': 'fr', '$': 'pères'},
         {'@xml:lang': 'fr', '$': 'mères'},
         {'@xml:lang': 'fr', '$': 'égalité'},
         {'@xml:lang': 'fr', '$': 'enfant'},
         {'@xml:lang': 'fr', '$': 'politiques familiales'}]},
       'relations': {'relation': 'Alterstice : Revue internationale de la recherche interculturelle ; vol. 5 no. 1 (2015)'},
       'abstract': {'@xml:lang': 'fr',
        '$': 'Selon Esping-Andersen, les politiques publiques adoptées par les pays se classent selon trois grands modèles de relation travail-famille et le Japon s’inscrit dans le contexte non interventionniste. La théorie de la modernité avancée développée par Beck divise les possibilités d’organisation du travail en trois types pour les familles. En observant attentivement le peu de mesures mises en place par l’État japonais pour encourager la parentalité, l’absence de soutien envers les pères japonais contribue à faire du Japon une société ultramobile de célibataires, ou du moins à se rapprocher fortement de cette vision. Notre texte soutient cette hypothèse en traitant des congés parentaux et de la division du travail dans un ménage japonais et des effets de l’ensemble sur la famille au Japon.'},
       'types': {'type': 'text'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Erudit',
         '@handle': '10670/3.asd832',
         '@collectionUuid': '63f0dbf0-92ca-4435-b4a5-cd648f23bfbf',
         '$': 'Erudit'},
        'collectionOrganization': {'@organizationUrl': 'http://www.erudit.org',
         '$': 'Consortium Erudit'},
        'collectionURLMainSite': {'@thumbnaiId': '1743131',
         '$': 'http://www.erudit.org'},
        'collectionInformations': {'collectionDescription': "Erudit est une société sans but lucratif et un consortium interuniversitaire composé de l'Université de Montréal, de l'Université Laval et de l'Université du Québec à Montréal qui œuvre dans le domaine de l’édition numérique depuis 1998. Erudit propose un modèle innovateur de promotion et de diffusion de la recherche et de la création. Erudit constitue le « pôle Québec » du projet Synergies.",
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'doi:(10.7202/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.asd832|10670/2.cn2syz',
         '$': 'Erudit#Alterstice: Revue internationale de la recherche interculturelle / Alterstice: International Journal of Intercultural Research / Alterstice: Revista International de la Investigacion Intercultural'},
        'sourceCode': {'@handle': '10670/2.cn2syz',
         '$': '43466331-40e3-473a-9fe0-b1b9c9a38cec'},
        'sourceName': {'@shortLabel': 'Alterstice: Revue internationale de la recherche interculturelle / Alterstice: International Journal of Intercultural Research / Alterstice: Revista International de la Investigacion Intercultural',
         '$': 'Alterstice: Revue internationale de la recherche interculturelle / Alterstice: International Journal of Intercultural Research / Alterstice: Revista International de la Investigacion Intercultural'},
        'sourceISSN': 'https://portal.issn.org/resource/ISSN/1923-919X',
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '8197184',
         '$': 'http://www.erudit.org/revue/alterstice'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Revue',
        'sourceDescription': {'@seeAlsoURL': 'http://www.erudit.org',
         '$': 'Alterstice: Revue internationale de la recherche interculturelle / Alterstice: International Journal of Intercultural Research / Alterstice: Revista International de la Investigacion Intercultural'},
        'sourceOrganization': {'label': 'Consortium Érudit',
         'URI': 'http://www.erudit.org',
         'isoCountry': 'CA',
         'contactEmailAddress': 'tanja.niemann@umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://oai.erudit.org/oai/',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'metadataPrefixForResource': 'ea'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#text',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
            {'@xml:lang': 'en', '$': 'Textual materials'},
            {'@xml:lang': 'es', '$': 'Textos'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6kjHDJigun',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'father'},
             {'@xml:lang': 'es', '$': 'padre'},
             {'@xml:lang': 'fr', '$': 'père'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM|http://ark.frantiq.fr/ark:/26678/pcrt6kjHDJigun'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM',
              'prefLabel': [{'@xml:lang': 'es', '$': 'familia formación'},
               {'@xml:lang': 'fr', '$': 'famille formation'},
               {'@xml:lang': 'en', '$': 'family formation'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM'}}}},
           {'@count': '4',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11974155t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Japonais'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Nippons'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119819038'}}},
           {'@count': '4',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85069593',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Japanese'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16175138s'},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
             {'@xml:lang': 'fr', '$': 'société'},
             {'@xml:lang': 'en', '$': 'society'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
            'definition': {'@xml:lang': 'fr',
             '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12009547n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Société'},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-307'}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119596283',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Célibataires'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935394p',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Personnes seules'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Vivre seul'},
                {'@xml:lang': 'fr', '$': 'Personnes isolées'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119823077',
               'prefLabel': {'@xml:lang': 'fr', '$': 'État matrimonial'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Situation de famille'},
                {'@xml:lang': 'fr', '$': 'État de mariage'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85010774',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Bachelors'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13319365w',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Politique publique'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Action gouvernementale'},
             {'@xml:lang': 'fr', '$': 'Actions publiques'},
             {'@xml:lang': 'fr', '$': 'Action des pouvoirs publics'},
             {'@xml:lang': 'fr', '$': 'Programmes gouvernementaux'},
             {'@xml:lang': 'fr', '$': 'Politique gouvernementale'},
             {'@xml:lang': 'fr',
              '$': 'Action publique (administration publique)'},
             {'@xml:lang': 'fr', '$': 'Politiques publiques'},
             {'@xml:lang': 'fr', '$': 'Programmes publics'},
             {'@xml:lang': 'fr', '$': 'Affaires publiques'},
             {'@xml:lang': 'fr', '$': 'Planification politique'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930827q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Administration publique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Organismes administratifs'},
               {'@xml:lang': 'fr', '$': "Administration de l'État"},
               {'@xml:lang': 'fr', '$': 'Administration publique (science)'},
               {'@xml:lang': 'fr', '$': 'Régime administratif'},
               {'@xml:lang': 'fr', '$': 'Organisation administrative'},
               {'@xml:lang': 'fr', '$': 'Action administrative'},
               {'@xml:lang': 'fr', '$': 'Science administrative'},
               {'@xml:lang': 'fr', '$': 'Agences administratives'},
               {'@xml:lang': 'fr', '$': 'Services administratifs'},
               {'@xml:lang': 'fr', '$': 'Service public'},
               {'@xml:lang': 'fr', '$': 'Institutions administratives'},
               {'@xml:lang': 'fr', '$': 'Structures administratives'},
               {'@xml:lang': 'fr', '$': 'Gestion publique'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005269',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Government policy'},
            'altLabel': {'@xml:lang': 'en', '$': 'Policy, Government'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
             {'@xml:lang': 'es', '$': 'tierra'},
             {'@xml:lang': 'fr', '$': 'pays'}],
            'definition': {'@xml:lang': 'en',
             '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16570175g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'États'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'États souverains'},
             {'@xml:lang': 'fr', '$': 'Pays'},
             {'@xml:lang': 'fr', '$': 'Puissances'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11955453s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Géographie politique'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120832998',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Et le Japon'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1355',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Modernité'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1355',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Modernité'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Philosophie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12086863n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Modernité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Moderne'},
             {'@xml:lang': 'fr', '$': 'Modernisme (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Antimodernisme'},
             {'@xml:lang': 'fr', '$': 'Antimodernité'},
             {'@xml:lang': 'fr', '$': 'Modernité (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Kulturkritik'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933924p',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "Philosophie de l'histoire"},
              'altLabel': [{'@xml:lang': 'fr', '$': "Histoire, Théorie de l'"},
               {'@xml:lang': 'fr', '$': "Sens de l'histoire"},
               {'@xml:lang': 'fr', '$': "Fin de l'histoire"},
               {'@xml:lang': 'fr', '$': 'Histoire (philosophie)'},
               {'@xml:lang': 'fr', '$': "Accélération de l'histoire"},
               {'@xml:lang': 'fr', '$': "Histoire, Fin de l'"},
               {'@xml:lang': 'fr', '$': "Histoire, Sens de l'"},
               {'@xml:lang': 'fr', '$': "Théorie de l'histoire"},
               {'@xml:lang': 'fr', '$': "Histoire, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': "Histoire, Accélération de l'"}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85026469',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Civilization, Modern'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Modernity'},
             {'@xml:lang': 'en', '$': 'Modern civilization'}]},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1430',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Organisation du travail'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Division du travail'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1430',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '042 Professions - travail|Travail|Organisation du travail'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '042 Professions - travail|Travail'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11951202c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Organisation du travail'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Méthodes de travail'},
             {'@xml:lang': 'fr', '$': 'Étude de méthodes (travail)'},
             {'@xml:lang': 'fr', '$': 'Organisation scientifique du travail'},
             {'@xml:lang': 'fr', '$': 'OST'},
             {'@xml:lang': 'fr', '$': 'Simplification du travail'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944445q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Génie industriel'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Techniques industrielles'},
                {'@xml:lang': 'fr', '$': 'Ingénierie industrielle'},
                {'@xml:lang': 'fr', '$': 'Génie technique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11950089g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Conditions de travail'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Travail, Conditions de'},
                {'@xml:lang': 'fr', '$': 'Condition de travail'},
                {'@xml:lang': 'fr', '$': 'Qualité de la vie au travail'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931574n',
               'prefLabel': {'@xml:lang': 'fr', '$': "Gestion d'entreprise"},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Business Process Management'},
                {'@xml:lang': 'fr', '$': "Entreprise, Gestion d'"},
                {'@xml:lang': 'fr', '$': 'BPM'},
                {'@xml:lang': 'fr', '$': "Rationalisation de l'entreprise"},
                {'@xml:lang': 'fr', '$': 'Gestion des entreprises'},
                {'@xml:lang': 'fr', '$': 'Planification industrielle'},
                {'@xml:lang': 'fr', '$': 'Gestion industrielle'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85084415',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Methods engineering'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Work, Method of'},
             {'@xml:lang': 'en', '$': 'Simplification in industry'},
             {'@xml:lang': 'en', '$': 'Methods (Industrial engineering)'},
             {'@xml:lang': 'en', '$': 'Work simplification'},
             {'@xml:lang': 'en', '$': 'Simplification of work'},
             {'@xml:lang': 'en', '$': 'Work methods'},
             {'@xml:lang': 'en', '$': 'Method of work'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX541128',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Organización del trabajo'},
            'label': {'@xml:lang': 'es', '$': 'Organización del trabajo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Métodos de trabajo'},
             {'@xml:lang': 'es', '$': 'Simplificación del trabajo'},
             {'@xml:lang': 'es', '$': 'Trabajo--Métodos'},
             {'@xml:lang': 'es', '$': 'Trabajo--Organización científica'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/10837',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'organisation of work'},
             {'@xml:lang': 'es', '$': 'organización del trabajo'},
             {'@xml:lang': 'fr', '$': 'organisation du travail'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The coordination or structuring of work practices and production processes in order to influence the way jobs are designed and performed in the workplace.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
              'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
               {'@xml:lang': 'es', '$': 'trabajo'},
               {'@xml:lang': 'fr', '$': 'travail'}],
              'definition': {'@xml:lang': 'en',
               '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2184'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtO1ovMArmn3',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'familias'},
             {'@xml:lang': 'en', '$': 'families'},
             {'@xml:lang': 'fr', '$': 'familles'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtO1ovMArmn3'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU',
              'prefLabel': [{'@xml:lang': 'es', '$': 'familia'},
               {'@xml:lang': 'fr', '$': 'famille'},
               {'@xml:lang': 'en', '$': 'family'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU'},
              'definition': {'@xml:lang': 'fr',
               '$': "Communauté d'individus réunis par des liens de parenté."}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120333358',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Familles'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11977348t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mesures'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
             {'@xml:lang': 'es', '$': 'plaza'},
             {'@xml:lang': 'en', '$': 'public place'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Espace plus ou moins étendue (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
               {'@xml:lang': 'fr', '$': 'structure urbaine'},
               {'@xml:lang': 'en', '$': 'urban structure'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
                {'@xml:lang': 'es',
                 '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-886',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'État'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-886'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Pouvoirs publics'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2148|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1641',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '071 Politique et pouvoirs publics|Pouvoirs publics'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/8062',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'state'},
             {'@xml:lang': 'es', '$': 'estado'},
             {'@xml:lang': 'fr', '$': 'état'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A people permanently occupying a fixed territory bound together by common law, habits and custom into one body politic exercising, through the medium of an organized government, independent sovereignty and control over all persons and things within its boundaries, unless or until authority is ceded to a federation or union of other states.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/13292',
              'prefLabel': [{'@xml:lang': 'en',
                '$': 'institutional structure'},
               {'@xml:lang': 'es', '$': 'estructura institucional'},
               {'@xml:lang': 'fr', '$': 'structure institutionnelle'}],
              'definition': {'@xml:lang': 'en',
               '$': "An organization's complex system of mutually connected and dependent elements or parts, which make up a definite manner of arrangement."}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/883'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11937050q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'État'},
            'altLabel': [{'@xml:lang': 'fr', '$': "État, Théorie de l'"},
             {'@xml:lang': 'fr', '$': "Théorie de l'État"},
             {'@xml:lang': 'fr', '$': 'Autorités publiques'},
             {'@xml:lang': 'fr', '$': 'Autorité publique'},
             {'@xml:lang': 'fr', '$': 'Puissance publique'},
             {'@xml:lang': 'fr', '$': 'Pouvoirs publics'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12241726g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Personnes publiques'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Collectivités publiques'},
                {'@xml:lang': 'fr', '$': 'Personnes morales (droit public)'},
                {'@xml:lang': 'fr', '$': 'Personnes administratives'},
                {'@xml:lang': 'fr', '$': 'Personnes morales de droit public'},
                {'@xml:lang': 'fr', '$': 'Organismes publics'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12653284n',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Souveraineté'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Suprématie territoriale'},
                {'@xml:lang': 'fr', '$': 'Intégrité territoriale'},
                {'@xml:lang': 'fr', '$': 'Souveraineté nationale'},
                {'@xml:lang': 'fr', '$': 'Souveraineté territoriale'},
                {'@xml:lang': 'fr', '$': 'Indépendance'}]}}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-476'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85127474',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'State, The'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Commonwealth, The'},
             {'@xml:lang': 'en', '$': 'Administration'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb122834755',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Rôle parental'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Rôle des parents'},
             {'@xml:lang': 'fr', '$': 'Compétence parentale'},
             {'@xml:lang': 'fr', '$': 'Comportement parental'},
             {'@xml:lang': 'fr', '$': 'Condition de parents'},
             {'@xml:lang': 'fr', '$': 'Parentalité'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946662b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Parents et enfants'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Famille et enfants'},
               {'@xml:lang': 'fr', '$': 'Enfants et parents'},
               {'@xml:lang': 'fr', '$': 'Relations enfants-parents'},
               {'@xml:lang': 'fr', '$': 'Relations parents-enfants'},
               {'@xml:lang': 'fr', '$': 'Enfants et famille'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85098009',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Parenting'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Parent behavior'},
             {'@xml:lang': 'en', '$': 'Parental behavior in humans'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85098008',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Parenthood'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119767418',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Pères'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15770193m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Parents'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Parents (père et mère)'}}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85047451',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fathers'},
            'altLabel': {'@xml:lang': 'en', '$': 'Dads'}},
           {'@count': '3',
            '@uri': 'http://GeoEthno#JAPON',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Japon'},
             {'@xml:lang': 'es', '$': 'Japón'},
             {'@xml:lang': 'en', '$': 'Japan'}],
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#JAPON',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Asie|Asie orientale|Japon'},
              {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|Japón'},
              {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|Japan'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ASIE_ORIENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Asie orientale'},
               {'@xml:lang': 'es', '$': 'Asia Oriental'},
               {'@xml:lang': 'en', '$': 'Eastern Asia'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Extrême-Orient'},
               {'@xml:lang': 'fr', '$': "Asie de l'Est"},
               {'@xml:lang': 'es', '$': 'Este de Asia'},
               {'@xml:lang': 'es', '$': 'Asia del Este'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIebqI21aZk',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'vision'},
             {'@xml:lang': 'fr', '$': 'vision'},
             {'@xml:lang': 'es', '$': 'visión'}],
            'altLabel': {'@xml:lang': 'en', '$': 'sight'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm|http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7|http://ark.frantiq.fr/ark:/26678/pcrtkbxqz3KWIe|http://ark.frantiq.fr/ark:/26678/pcrt1V06JIt7tn|http://ark.frantiq.fr/ark:/26678/pcrtIebqI21aZk'},
            'definition': {'@xml:lang': 'fr',
             '$': "Perception humaine des rayonnements lumineux, c'est-à-dire, l'interprétation cognitive du sens de la vue. (Wikipédia)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1V06JIt7tn',
              'prefLabel': [{'@xml:lang': 'en', '$': 'sight'},
               {'@xml:lang': 'fr', '$': 'vue'}],
              'altLabel': {'@xml:lang': 'en', '$': 'visual perception'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm|http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7|http://ark.frantiq.fr/ark:/26678/pcrtkbxqz3KWIe|http://ark.frantiq.fr/ark:/26678/pcrt1V06JIt7tn',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|santé|médecine|anatomie|corps|système sensoriel|vue'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Sens qui permet d'observer et d'analyser l'environnement à distance au moyen des rayonnements lumineux. (Wikipédia)"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11947019s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Vision'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Vue'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119414481',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sens et sensations'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sens (psychologie)'},
               {'@xml:lang': 'fr', '$': 'Sensation'},
               {'@xml:lang': 'fr', '$': 'Sensibilité'},
               {'@xml:lang': 'fr', '$': 'Sens (philosophie)'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85143872',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Vision'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Eyesight'},
             {'@xml:lang': 'en', '$': 'Seeing'},
             {'@xml:lang': 'en', '$': 'Sight'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525877',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Vista'},
            'label': {'@xml:lang': 'es', '$': 'Vista'},
            'altLabel': {'@xml:lang': 'es', '$': 'Visión'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11959156z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Hypothèse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Conjecture'},
             {'@xml:lang': 'fr', '$': 'Supposition'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Démonstration (logique)'},
                {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85063827',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Hypothesis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Supposition'},
             {'@xml:lang': 'en', '$': 'Assumption'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11982219z',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Congés'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Permis d'absence"},
             {'@xml:lang': 'fr', '$': 'Absences autorisées'},
             {'@xml:lang': 'fr', '$': "Autorisations d'absence"},
             {'@xml:lang': 'fr', '$': 'Absence autorisée'},
             {'@xml:lang': 'fr', '$': 'Congé autorisé'},
             {'@xml:lang': 'fr', '$': 'Congé de circonstance'},
             {'@xml:lang': 'fr', '$': 'Congé pour convenance personelle'},
             {'@xml:lang': 'fr', '$': "Permissions d'absence"},
             {'@xml:lang': 'fr', '$': "Autorisation d'absence"},
             {'@xml:lang': 'fr', '$': 'Congés autorisés'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX544817',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Permisos laborales'},
            'label': {'@xml:lang': 'es', '$': 'Permisos laborales'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Permisos autorizados en el trabajo'},
             {'@xml:lang': 'es', '$': 'Permisos de ausencia del trabajo'},
             {'@xml:lang': 'es', '$': 'Permisos remunerados de ausencia'},
             {'@xml:lang': 'es', '$': 'Trabajadores--Permisos laborales'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX530176',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Excedencia laboral'},
            'label': {'@xml:lang': 'es', '$': 'Excedencia laboral'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Excedencia (Derecho laboral)'},
             {'@xml:lang': 'es', '$': 'Permisos laborales no remunerados'},
             {'@xml:lang': 'es', '$': 'Permisos sin sueldo'},
             {'@xml:lang': 'es', '$': 'Trabajadores--Excedencia'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11934154n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Division du travail'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Parcellisation des tâches'},
             {'@xml:lang': 'fr', '$': 'Travail, Division du'},
             {'@xml:lang': 'fr', '$': 'Spécialisation du travail'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119715347',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Tâches'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85038613',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Division of labor'},
            'altLabel': {'@xml:lang': 'en', '$': 'Labor, Division of'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1300',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Ménage'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Comportement des ménages'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2149|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1300',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '072 Économie|Économie|Ménage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Économie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2149|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '072 Économie|Économie'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4015',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'household'},
             {'@xml:lang': 'es', '$': 'quehaceres domésticos'},
             {'@xml:lang': 'fr', '$': 'ménage'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A group of persons sharing a home or living space, who aggregate and share their incomes, as evidenced by the fact that they regularly take meals together.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9369',
              'prefLabel': [{'@xml:lang': 'en', '$': 'working condition'},
               {'@xml:lang': 'es', '$': 'condiciones de trabajo'},
               {'@xml:lang': 'fr', '$': 'condition de travail'}],
              'definition': {'@xml:lang': 'en',
               '$': 'All existing circumstances affecting labor in the workplace, including job hours, physical aspects, legal rights and responsibilities.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3676'},
             {'@uri': 'http://eurovoc.europa.eu/1864'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/3117',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'family'},
             {'@xml:lang': 'es', '$': 'familia'},
             {'@xml:lang': 'fr', '$': 'famille'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A group comprising parents, offsprings and others closely related or associated with them.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7796',
              'prefLabel': [{'@xml:lang': 'en', '$': 'social group'},
               {'@xml:lang': 'es', '$': 'grupos sociales'},
               {'@xml:lang': 'fr', '$': 'groupe social'}],
              'definition': {'@xml:lang': 'en',
               '$': 'A collection of people who interact with one another and share a certain feeling of unity.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/965'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119339867',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': "Parents (membres d'une famille)"},
             {'@xml:lang': 'fr', '$': 'Vie familiale'},
             {'@xml:lang': 'fr', '$': 'Milieu familial'},
             {'@xml:lang': 'fr', '$': 'Relations familiales'},
             {'@xml:lang': 'fr', '$': 'Liens familiaux'},
             {'@xml:lang': 'fr', '$': 'Cellule familiale'},
             {'@xml:lang': 'fr', '$': 'Famille nucléaire'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00005743',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Family'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Biography--Ancestry'},
             {'@xml:lang': 'en', '$': 'Relations with family'},
             {'@xml:lang': 'en', '$': 'Biography--Descendants'},
             {'@xml:lang': 'en', '$': 'Biography--Family'},
             {'@xml:lang': 'en', '$': 'Ancestry'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005369',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Family relationships'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU',
            'prefLabel': [{'@xml:lang': 'es', '$': 'familia'},
             {'@xml:lang': 'fr', '$': 'famille'},
             {'@xml:lang': 'en', '$': 'family'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU'},
            'definition': {'@xml:lang': 'fr',
             '$': "Communauté d'individus réunis par des liens de parenté."}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-917',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119783618',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Congé parental'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Congé de soins aux enfants'},
             {'@xml:lang': 'fr', '$': 'Congé de paternité'},
             {'@xml:lang': 'fr', '$': "Congé parental d'éducation"},
             {'@xml:lang': 'fr', '$': "Congé d'adoption"},
             {'@xml:lang': 'fr', '$': 'Congé de naissance'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11982219z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Congés'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Permis d'absence"},
               {'@xml:lang': 'fr', '$': 'Absences autorisées'},
               {'@xml:lang': 'fr', '$': "Autorisations d'absence"},
               {'@xml:lang': 'fr', '$': 'Absence autorisée'},
               {'@xml:lang': 'fr', '$': 'Congé autorisé'},
               {'@xml:lang': 'fr', '$': 'Congé de circonstance'},
               {'@xml:lang': 'fr', '$': 'Congé pour convenance personelle'},
               {'@xml:lang': 'fr', '$': "Permissions d'absence"},
               {'@xml:lang': 'fr', '$': "Autorisation d'absence"},
               {'@xml:lang': 'fr', '$': 'Congés autorisés'}]}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX546392',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Permiso parental'},
            'label': {'@xml:lang': 'es', '$': 'Permiso parental'},
            'altLabel': [{'@xml:lang': 'es',
              '$': 'Baja por maternidad o paternidad'},
             {'@xml:lang': 'es', '$': 'Baja por paternidad o maternidad'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh87002518',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Parental leave'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Family leave'},
             {'@xml:lang': 'en', '$': 'Infant care leave'},
             {'@xml:lang': 'en', '$': 'Leave for parenting'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940910g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mères'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119556551',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Femmes'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Femme'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15770193m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Parents'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Parents (père et mère)'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85087526',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Mothers'},
            'altLabel': {'@xml:lang': 'en', '$': 'Moms'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527314',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Madres'},
            'label': {'@xml:lang': 'es', '$': 'Madres'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtqOZhMFSLPh',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'égalité'},
             {'@xml:lang': 'en', '$': 'equality'},
             {'@xml:lang': 'es', '$': 'igualdad'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtcijV6GdYtw|http://ark.frantiq.fr/ark:/26678/pcrtqOZhMFSLPh'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtcijV6GdYtw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'derecho público'},
               {'@xml:lang': 'fr', '$': 'droit public'},
               {'@xml:lang': 'en', '$': 'public law'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtcijV6GdYtw'},
              'definition': {'@xml:lang': 'fr',
               '$': "Ensemble des règles relatives à l'organisation de l'Etat (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11952236x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Égalité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Égalitarisme'},
             {'@xml:lang': 'fr', '$': 'Égalité sociale'},
             {'@xml:lang': 'fr', '$': 'Égalité (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Parité'},
             {'@xml:lang': 'fr', '$': 'Égalité politique'},
             {'@xml:lang': 'fr', '$': 'Égalité civique'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
                {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119569197',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie sociale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Philosophie des sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Sciences sociales et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la société'},
                {'@xml:lang': 'fr', '$': 'Philosophie et sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Théorie sociale'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85044503',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Equality'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Social inequality'},
             {'@xml:lang': 'en', '$': 'Social equality'},
             {'@xml:lang': 'en', '$': 'Inequality'},
             {'@xml:lang': 'en', '$': 'Egalitarianism'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1350',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'child'},
             {'@xml:lang': 'es', '$': 'niño'},
             {'@xml:lang': 'fr', '$': 'enfant'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A person below the age of puberty.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6527',
              'prefLabel': [{'@xml:lang': 'en', '$': 'population structure'},
               {'@xml:lang': 'es', '$': 'estructura de la población'},
               {'@xml:lang': 'fr', '$': 'structure de la population'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The organization of, and inter-relationships among, inhabitants of a given region, country or city.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/758'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3OJx1alrMD',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'child'},
             {'@xml:lang': 'fr', '$': 'enfant'},
             {'@xml:lang': 'es', '$': 'infante'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs|http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf|http://ark.frantiq.fr/ark:/26678/pcrt3OJx1alrMD'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'childhood'},
               {'@xml:lang': 'fr', '$': 'enfance'},
               {'@xml:lang': 'es', '$': 'infancia'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs|http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119319811',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enfants'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Enfant'},
             {'@xml:lang': 'fr', '$': 'Enfance'},
             {'@xml:lang': 'fr', '$': 'Progéniture'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339867',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Parents (membres d'une famille)"},
                {'@xml:lang': 'fr', '$': 'Vie familiale'},
                {'@xml:lang': 'fr', '$': 'Milieu familial'},
                {'@xml:lang': 'fr', '$': 'Relations familiales'},
                {'@xml:lang': 'fr', '$': 'Liens familiaux'},
                {'@xml:lang': 'fr', '$': 'Cellule familiale'},
                {'@xml:lang': 'fr', '$': 'Famille nucléaire'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12223381k',
               'prefLabel': {'@xml:lang': 'fr', '$': "Groupes d'âge"},
               'altLabel': [{'@xml:lang': 'fr', '$': "Classes d'âge"},
                {'@xml:lang': 'fr', '$': "Âge, Groupes d'"}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121235840',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Âges de la vie'},
               'altLabel': [{'@xml:lang': 'fr', '$': "Âges de l'homme"},
                {'@xml:lang': 'fr', '$': 'Étapes de la vie'},
                {'@xml:lang': 'fr', '$': 'Cycle de la vie'},
                {'@xml:lang': 'fr', '$': 'Cycle vital'}]}}],
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_1547'},
             {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-946'}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99004941',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Children'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-817',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enfant'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1026|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-917|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-817'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-917',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '4',
           '@uri': 'http://sws.geonames.org/1861060/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Japan',
            {'@xml:lang': 'es', '$': 'Japón'},
            {'@xml:lang': 'en', '$': 'Japan'},
            {'@xml:lang': 'fr', '$': 'Japon'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Japon'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255147/|http://sws.geonames.org/1861060/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Asie|Japon'},
             {'@xml:lang': 'es', '$': 'Asia|Japón'},
             {'@xml:lang': 'en', '$': 'Asia|Japan'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Asie|Japan'},
             {'@xml:lang': 'es', '$': 'Asia|Japan'},
             {'@xml:lang': 'en', '$': 'Asia|Japan'}]},
           'latitude': '35.68536',
           'longitude': '139.75309',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255147/',
             'prefLabel': ['Asia',
              {'@xml:lang': 'en', '$': 'Asia'},
              {'@xml:lang': 'fr', '$': 'Asie'},
              {'@xml:lang': 'es', '$': 'Asia'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Asie'},
             'latitude': '29.84064',
             'longitude': '89.29688'}},
           'exactMatch': []}}]},
       'dc:language': 'fr',
       'dc:rights': '© ValérieHarvey et Diane-GabrielleTremblay, 2015'}}]},
   'page': {'@current': '1', '@next': '2'}}}}

Et impromons cette liste avec les identifiants de chaque discipline:

for dis in mes_disciplines['response']['replies']['facets']['facet']['node']:
    print(dis['@key'])
    print(dis['label']['$'])
http://aurehal.archives-ouvertes.fr/subject/shs.hist
Histoire
http://aurehal.archives-ouvertes.fr/subject/shs.litt
Littératures
http://aurehal.archives-ouvertes.fr/subject/shs.droit
Droit
http://aurehal.archives-ouvertes.fr/subject/shs.art
Art et histoire de l'art
http://aurehal.archives-ouvertes.fr/subject/shs.socio
Sociologie
http://aurehal.archives-ouvertes.fr/subject/shs.archeo
Archéologie et Préhistoire
http://aurehal.archives-ouvertes.fr/subject/shs.eco
Economies et finances
http://aurehal.archives-ouvertes.fr/subject/shs.geo
Géographie
http://aurehal.archives-ouvertes.fr/subject/shs.scipo
Science politique
http://aurehal.archives-ouvertes.fr/subject/shs.edu
Education
http://aurehal.archives-ouvertes.fr/subject/shs.langue
Linguistique
http://aurehal.archives-ouvertes.fr/subject/shs.musiq
Musique, musicologie et arts de la scène
http://aurehal.archives-ouvertes.fr/subject/shs.info
Sciences de l'information et de la communication
http://aurehal.archives-ouvertes.fr/subject/shs.anthro-se
Anthropologie sociale et ethnologie
http://aurehal.archives-ouvertes.fr/subject/shs.psy
Psychologie
http://aurehal.archives-ouvertes.fr/subject/shs.hisphilso
Histoire, Philosophie et Sociologie des sciences
http://aurehal.archives-ouvertes.fr/subject/shs.phil
Philosophie
http://aurehal.archives-ouvertes.fr/subject/shs.gestion
Gestion et management
http://aurehal.archives-ouvertes.fr/subject/shs.archi
Architecture, aménagement de l'espace
http://aurehal.archives-ouvertes.fr/subject/shs.relig
Religions
http://aurehal.archives-ouvertes.fr/subject/shs.envir
Etudes de l'environnement
http://aurehal.archives-ouvertes.fr/subject/shs.class
Etudes classiques
http://aurehal.archives-ouvertes.fr/subject/shs.anthro-bio
Anthropologie biologique
http://aurehal.archives-ouvertes.fr/subject/shs.museo
Héritage culturel et muséologie
http://aurehal.archives-ouvertes.fr/subject/shs.genre
Etudes sur le genre
http://aurehal.archives-ouvertes.fr/subject/shs.demo
Démographie
http://aurehal.archives-ouvertes.fr/subject/shs.stat
Méthodes et statistiques

Maintenant nous voulons sélectionner des thèses en littérature qui contiennent un mot-clé particulier: https://api.isidore.science/resource/search?type=http://isidore.science/ontology#thesis&discipline=http://aurehal.archives-ouvertes.fr/subject/shs.litt&q=Roland+Barthes&output=json

parametres = {
    'q': 'Roland+Barthes',
    'type': 'http://isidore.science/ontology#thesis',
    'discipline':'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
    'output':'json',
    
    
    
}

theses_barthes = chercheisidore(parametres)
theses_barthes
{'response': {'header': {'query': {'@text': 'Roland+Barthes',
    '@userId': '496c4352-bd0a-9d07-e334-109269201af4',
    '@sessionId': '9svqc3s90qnfriblhr6es0rqpc',
    '@date': '2021-11-08T20:24:35+0100',
    'param': [{'@name': 'replies', '@value': '25'},
     {'@name': 'lang', '@value': 'fr'},
     {'@name': 'type', '@value': 'http://isidore.science/ontology#thesis'},
     {'@name': 'discipline',
      '@value': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt'},
     {'@name': 'q', '@value': 'Roland+Barthes'}]},
   'performance': {'@durationMs': '867'}},
  'replies': {'meta': {'@items': '1370', '@pageItems': '25'},
   'content': {'reply': [{'@uri': '10670/1.8doqv9',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique'},
        {'@xml:lang': 'en',
         '$': 'The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique'}],
       'url': 'http://www.theses.fr/2020GRALL023',
       'enrichedCreators': {'creator': {'@origin': 'Han, Seokhyeon',
         '@normalizedAuthor': 'Han, Seokhyeon',
         '@idAuthor': 'han_seokhyeon',
         'firstname': 'Seokhyeon',
         'lastname': 'Han',
         'title': [],
         'sameAs': {'orcid': '0000-0001-8871-5403', 'idref': '254159222'}}},
       'date': {'@origin': '2020-11-09',
        '@startDate': '2020-11-09',
        '@endDate': '2020-11-09',
        '@treeDate': '2000/2020/2020',
        'normalizedDate': '2020-11-09',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2020'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '26561039',
         '$': 'http://www.theses.fr/2020GRALL023'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Roland Barthes'},
         {'@xml:lang': 'fr', '$': 'Le cours au Collège de France'},
         {'@xml:lang': 'fr', '$': 'Discours'},
         {'@xml:lang': 'fr', '$': 'Roman'},
         {'@xml:lang': 'fr', '$': 'Fiction'},
         {'@xml:lang': 'fr', '$': 'Fantasme'},
         {'@xml:lang': 'en', '$': 'Roland Barthes'},
         {'@xml:lang': 'en', '$': 'The course at the Collège de France'},
         {'@xml:lang': 'en', '$': 'Discourse'},
         {'@xml:lang': 'en', '$': 'Novel'},
         {'@xml:lang': 'en', '$': 'Fiction'},
         {'@xml:lang': 'en', '$': 'Fantasm'},
         '840']},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'Ce qu’on lit et écoute dans les notes préparatoires et les paroles enregistrées des cours de Roland Barthes au Collège de France, c’est le discours qui dit les fantasmes singuliers d’un sujet. Ce discours oscille entre science et littérature, langage critique et langage expressif, réalité et fiction, méta-discours et discours-objet. Cette particularité permet de concevoir son cours comme à la fois un acte créateur et une expérimentation littéraire. L’hypothèse est la suivante : les trois cours, indépendants les uns des autres, constituent une unité autour du fantasme final, la Vita Nova qui est un Roman du degré zéro. En nommant l’ensemble des fragments du discours, dispersés dans les cours, « pré-roman », on tente de reconstruire une œuvre en tant qu’architecture de fantasme, à savoir le roman comme discours qui dramatise le dernier parcours de Barthes. Et ce travail analyse quatre dimensions de son discours : l’espace, le temps, le langage et la méthode.'},
        {'@xml:lang': 'en',
         '$': 'What we read and listen to in the preparatory notes and the recorded words of Roland Barthes’s courses at the Collège de France is the discourse that tells the singular fantasms of a subject. This discourse oscillates between science and literature, critical language and expressive language, reality and fiction, meta-discourse and discourse-object. This particularity makes it possible to conceive of the course as a creative act and a literary experiment. The hypothesis is as follows: the three courses, independent of each other, constitute a unit around the final fantasm, the Vita Nova which is a Novel of degree zero. By naming all the fragments of the discourse, scattered throughout the course, “pre-novel”, we try to reconstruct a literary work as an architecture of fantasm, namely the novel as a discourse that dramatizes Barthes’s last journey. And we analyze four dimensions of his discourse: space, time, language and method.'}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '7',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
             {'@xml:lang': 'es', '$': 'habla'},
             {'@xml:lang': 'fr', '$': 'discours'}],
            'definition': {'@xml:lang': 'en',
             '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
              'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
               {'@xml:lang': 'es', '$': 'medios de comunicación'},
               {'@xml:lang': 'fr', '$': 'mass media'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
           {'@count': '7',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Parties du discours (rhétorique)'},
             {'@xml:lang': 'fr', '$': 'Péroraisons'},
             {'@xml:lang': 'fr', '$': 'Speeches'},
             {'@xml:lang': 'fr', '$': 'Allocutions'},
             {'@xml:lang': 'fr', '$': 'Oraisons'},
             {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
             {'@xml:lang': 'fr', '$': 'Philippiques'},
             {'@xml:lang': 'fr', '$': 'Proclamations'},
             {'@xml:lang': 'fr', '$': 'Exortations'},
             {'@xml:lang': 'fr', '$': 'Exordes'},
             {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
             {'@xml:lang': 'fr', '$': 'Harangues'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
                {'@xml:lang': 'fr', '$': 'Transmission orale'},
                {'@xml:lang': 'fr', '$': 'Communication verbale'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
                {'@xml:lang': 'fr', '$': 'Littérature universelle'},
                {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}]},
           {'@count': '7',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
             {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
             {'@xml:lang': 'en', '$': 'Orations'},
             {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
             {'@xml:lang': 'en', '$': 'Discourses'}]},
           {'@count': '7',
            '@uri': 'http://datos.bne.es/resource/XX528471',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Discursos'},
            'label': {'@xml:lang': 'es', '$': 'Discursos'},
            'altLabel': {'@xml:lang': 'es', '$': 'Alocuciones'}},
           {'@count': '7',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
             {'@xml:lang': 'es', '$': 'discurso'},
             {'@xml:lang': 'en', '$': 'speech'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
               {'@xml:lang': 'fr', '$': 'genre oratoire'},
               {'@xml:lang': 'en', '$': 'oratory genre'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
           {'@count': '6',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collège'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment scolaire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Groupe scolaire'},
               {'@xml:lang': 'fr', '$': 'Architecture scolaire'},
               {'@xml:lang': 'fr', '$': 'Construction scolaire'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342'}}}},
           {'@count': '6',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6pK15gEmbx',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'bed'},
             {'@xml:lang': 'es', '$': 'cama'},
             {'@xml:lang': 'fr', '$': 'lit'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si|http://ark.frantiq.fr/ark:/26678/pcrt6pK15gEmbx',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|piece of furniture|bed'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'meuble'},
               {'@xml:lang': 'es', '$': 'mueble'},
               {'@xml:lang': 'en', '$': 'piece of furniture'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'ameublement'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|piece of furniture'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12571786g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lire italienne'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'ITL'},
             {'@xml:lang': 'fr', '$': 'Lire italienne (monnaie)'},
             {'@xml:lang': 'fr', '$': 'Lira (monnaie)'},
             {'@xml:lang': 'fr', '$': 'LIT'},
             {'@xml:lang': 'fr', '$': 'Lire (monnaie italienne)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119835505'}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb144972893',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gloses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Gloses marginales'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Gloses (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Gloses interlinéaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318362m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Manuscrits'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ouvrages manuscrits'},
                {'@xml:lang': 'fr', '$': 'Livres manuscrits'},
                {'@xml:lang': 'fr', '$': 'Documents manuscrits'}]}}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12047425d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes marginales'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Marginalia'},
             {'@xml:lang': 'fr', '$': 'Apostilles'},
             {'@xml:lang': 'fr', '$': 'Manchettes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
               {'@xml:lang': 'fr', '$': 'Épitexte'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85081056',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Marginalia'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Marginal notes'},
             {'@xml:lang': 'en', '$': 'Notes, Marginal'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11977203k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Prise de notes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes, Prise de'},
             {'@xml:lang': 'fr', '$': 'Notes'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953339g'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119346301',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Reportage'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Enquêtes radiodiffusées'},
                {'@xml:lang': 'fr', '$': 'Téléreportage'},
                {'@xml:lang': 'fr', '$': 'Radioreportage'},
                {'@xml:lang': 'fr', '$': 'Grand reportage'},
                {'@xml:lang': 'fr', '$': 'Reportage et reporters'},
                {'@xml:lang': 'fr', '$': 'Enquêtes télévisées'},
                {'@xml:lang': 'fr', '$': 'Reportages'},
                {'@xml:lang': 'fr',
                 '$': 'Enquête sur le terrain (journalisme)'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092791',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Note-taking'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Taking notes'},
             {'@xml:lang': 'en', '$': 'Notetaking'},
             {'@xml:lang': 'en', '$': 'Keeping notes'},
             {'@xml:lang': 'en', '$': 'Notekeeping'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX549927',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'label': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Apuntes, Toma de'},
             {'@xml:lang': 'es', '$': 'Notas, Toma de'},
             {'@xml:lang': 'es', '$': 'Toma de notas'},
             {'@xml:lang': 'es', '$': 'Tomar apuntes'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13187149q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes en bas de page'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de chapitre'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de volume'},
             {'@xml:lang': 'fr', '$': 'Notes critiques'},
             {'@xml:lang': 'fr', '$': 'Éclaircissements et notes'},
             {'@xml:lang': 'fr', '$': 'Notes et éclaircissements'},
             {'@xml:lang': 'fr', '$': 'Notes de bas de page'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119474908',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Édition savante'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Édition académique'},
                {'@xml:lang': 'fr', '$': 'Édition universitaire'}]}}]},
           {'@count': '5',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voie urbaine'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Avenue'},
             {'@xml:lang': 'fr', '$': 'Boulevard'},
             {'@xml:lang': 'fr', '$': 'Cours'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Voirie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Réseau des voies urbaines'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '021 Aménagement urbain|Urbanisme|VRD|Voirie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11950126v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Division internationale du travail'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Spécialisation internationale de la production'},
             {'@xml:lang': 'fr', '$': 'DIT'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939029c',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Relations économiques internationales'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Échanges économiques internationaux'},
                {'@xml:lang': 'fr', '$': 'Interdépendance économique'},
                {'@xml:lang': 'fr', '$': 'Politique économique extérieure'},
                {'@xml:lang': 'fr', '$': 'Économie internationale'},
                {'@xml:lang': 'fr', '$': 'Économie politique internationale'},
                {'@xml:lang': 'fr', '$': 'Économie mondiale'},
                {'@xml:lang': 'fr',
                 '$': 'Politique économique internationale'},
                {'@xml:lang': 'fr', '$': 'Liens économiques'},
                {'@xml:lang': 'fr', '$': 'Échanges internationaux'},
                {'@xml:lang': 'fr',
                 '$': 'Relations économiques internationales, Théorie des'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934154n',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Division du travail'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Parcellisation des tâches'},
                {'@xml:lang': 'fr', '$': 'Travail, Division du'},
                {'@xml:lang': 'fr', '$': 'Spécialisation du travail'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067391',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'International division of labor'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'International specialization'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931384d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Fantasmes'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Phantasmes'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11948958d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Imagination'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932099v',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Inconscient'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Subconscient'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119570504',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mécanismes de défense'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Défense, Mécanismes de'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85047157',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fantasy'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Phantasy'},
             {'@xml:lang': 'en', '$': 'Day dreams'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX533069',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fantasía'},
            'label': {'@xml:lang': 'es', '$': 'Fantasía'},
            'altLabel': {'@xml:lang': 'es', '$': 'Fantasías'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
             {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
             {'@xml:lang': 'fr', '$': 'sujet'}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
             {'@xml:lang': 'en', '$': 'science'},
             {'@xml:lang': 'fr', '$': 'science'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|knowledge|science'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
              'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
               {'@xml:lang': 'es', '$': 'saber'},
               {'@xml:lang': 'fr', '$': 'savoir'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
             {'@xml:lang': 'es', '$': 'ciencia'},
             {'@xml:lang': 'fr', '$': 'science'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
             {'@xml:lang': 'en', '$': 'Sciences'},
             {'@xml:lang': 'en', '$': 'Science of science'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
             {'@xml:lang': 'fr', '$': 'Littérature universelle'},
             {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
            'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
             {'@xml:lang': 'en',
              '$': 'Western literature (Western countries)'},
             {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
              'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
               {'@xml:lang': 'es', '$': 'patrimonio cultural'},
               {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
             {'@uri': 'http://eurovoc.europa.eu/1680'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ens. des productions littéraires (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
              'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
               {'@xml:lang': 'fr', '$': 'philologie'},
               {'@xml:lang': 'en', '$': 'philology'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
              'definition': {'@xml:lang': 'fr',
               '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques|Littérature'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques'}}}},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Langage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
             {'@xml:lang': 'en', '$': 'language'},
             {'@xml:lang': 'es', '$': 'lenguaje'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
             {'@xml:lang': 'fr', '$': 'Langage et langues'},
             {'@xml:lang': 'fr', '$': 'Langues et langage'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Language (New words, slang, etc.)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933785b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie intellectuelle'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Intellectuelle, Vie'},
               {'@xml:lang': 'fr', '$': 'Vie culturelle'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
             {'@xml:lang': 'en', '$': 'Evaluation of literature'},
             {'@xml:lang': 'en', '$': 'Literary criticism'},
             {'@xml:lang': 'en', '$': 'Books--Appraisal'},
             {'@xml:lang': 'en', '$': 'Criticism--Technique'},
             {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
             {'@xml:lang': 'en', '$': 'critique'},
             {'@xml:lang': 'fr', '$': 'critique'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
               {'@xml:lang': 'fr', '$': 'analyse du discours'},
               {'@xml:lang': 'en', '$': 'discourse analysis'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
               'expandedLabel': {'@xml:lang': 'es',
                '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528102',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
            'label': {'@xml:lang': 'es', '$': 'Realidad'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11947467r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature expérimentale'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Littérature d'avant-garde"},
             {'@xml:lang': 'fr', '$': 'Avant-garde (littérature)'},
             {'@xml:lang': 'fr', '$': 'Avants-gardes littéraires'},
             {'@xml:lang': 'fr', '$': 'Avant-gardisme littéraire'},
             {'@xml:lang': 'fr', '$': 'Expérimentation littéraire'},
             {'@xml:lang': 'fr', '$': 'Avant-garde littéraire'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939457q'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119357238',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Avant-garde (esthétique)'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX557618',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Literatura experimental'},
            'label': {'@xml:lang': 'es', '$': 'Literatura experimental'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Literatura de vanguardia'},
             {'@xml:lang': 'es', '$': 'Literatura vanguardista'},
             {'@xml:lang': 'es', '$': 'Vanguardias (Literatura)'},
             {'@xml:lang': 'es', '$': 'Vanguardismo (Literatura)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85077546',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literature, Experimental'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Avant-garde literature'},
             {'@xml:lang': 'en', '$': 'Experimental literature'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11959156z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Hypothèse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Conjecture'},
             {'@xml:lang': 'fr', '$': 'Supposition'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Démonstration (logique)'},
                {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85063827',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Hypothesis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Supposition'},
             {'@xml:lang': 'en', '$': 'Assumption'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb14479542b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Concorde'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Harmonie (relations humaines)'},
             {'@xml:lang': 'fr', '$': 'Omonoia (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Unité'},
             {'@xml:lang': 'fr', '$': 'Union'},
             {'@xml:lang': 'fr', '$': 'Homonoia (philosophie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
                {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119458243',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Relations humaines'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Lien social'},
                {'@xml:lang': 'fr', '$': 'Relations sociales'},
                {'@xml:lang': 'fr', '$': 'Rapports humains'},
                {'@xml:lang': 'fr', '$': 'Sociabilité'},
                {'@xml:lang': 'fr', '$': 'Rapports sociaux'},
                {'@xml:lang': 'fr', '$': 'Rencontres interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Relations interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Liens sociaux'},
                {'@xml:lang': 'fr', '$': 'Rapports interpersonnels'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85030635',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Concord'},
            'altLabel': {'@xml:lang': 'en', '$': 'Unity'}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
             {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
             {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
             {'@xml:lang': 'fr', '$': 'Récits'},
             {'@xml:lang': 'fr', '$': 'Romans'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
             {'@xml:lang': 'en', '$': 'Novels'},
             {'@xml:lang': 'en', '$': 'Stories'}]},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Art roman'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "050 Histoire de l'art|Histoire de l'art|Art roman"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
              'prefLabel': {'@xml:lang': 'fr', '$': "Histoire de l'art"},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "050 Histoire de l'art|Histoire de l'art"}}}}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'novel'},
             {'@xml:lang': 'es', '$': 'novela'},
             {'@xml:lang': 'fr', '$': 'roman'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Récit où dominent les aventures (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
               {'@xml:lang': 'fr', '$': 'genre narratif'},
               {'@xml:lang': 'en', '$': 'narrative genre'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'tent'},
             {'@xml:lang': 'fr', '$': 'tente'},
             {'@xml:lang': 'es', '$': 'tienda'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL',
              'expandedLabel': [{'@xml:lang': 'en',
                '$': 'Themes|architecture|architecture (conception)|domestic architecture|settlement|tent'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat|tente'}]},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL'}],
            'definition': {'@xml:lang': 'fr',
             '$': "abri portatif, fait généralement d'une toile tendue sur des supports (CNRTL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
               {'@xml:lang': 'es', '$': 'hábitat'},
               {'@xml:lang': 'en', '$': 'settlement'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
               {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
              'definition': {'@xml:lang': 'fr',
               '$': "Lieu d'habitation construit."}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-581',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Construction démontable'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Tente'},
             {'@xml:lang': 'fr', '$': 'Chapiteau démontable'},
             {'@xml:lang': 'fr', '$': 'Architecture démontable'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-581',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '010 Construction|Construction|Procédé de construction|Construction démontable'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Procédé de construction'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Technique de construction'},
               {'@xml:lang': 'fr', '$': 'Mode de construction'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '010 Construction|Construction|Procédé de construction'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
             {'@xml:lang': 'es', '$': 'saber'},
             {'@xml:lang': 'fr', '$': 'savoir'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cheminement'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Traversée'},
             {'@xml:lang': 'fr', '$': 'Parcours'},
             {'@xml:lang': 'fr', '$': 'Promenade'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '030 Paysage - environnement|Paysage|Aménagement paysager|Cheminement'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement paysager'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Urbanisme paysager'},
               {'@xml:lang': 'fr', '$': 'Aménagement de site'}]}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '042 Professions - travail|Travail'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '042 Professions - travail'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119715347',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Tâches'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
               {'@xml:lang': 'fr', '$': 'Économie'},
               {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
               {'@xml:lang': 'fr', '$': 'Analyse économique'},
               {'@xml:lang': 'fr', '$': 'Science économique'},
               {'@xml:lang': 'fr', '$': 'Économique'},
               {'@xml:lang': 'fr', '$': 'Théorie économique'},
               {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
               {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-536'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006403',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Occupations'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524430',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
            'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005236',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Employment'},
            'altLabel': {'@xml:lang': 'en', '$': 'Working conditions'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
             {'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'}],
            'definition': {'@xml:lang': 'en',
             '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
             {'@uri': 'http://eurovoc.europa.eu/4543'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'},
             {'@xml:lang': 'en', '$': 'work'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
               {'@xml:lang': 'fr', '$': 'société'},
               {'@xml:lang': 'en', '$': 'society'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
              'definition': {'@xml:lang': 'fr',
               '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13077',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'assay'},
             {'@xml:lang': 'es', '$': 'ensayo'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Qualitative or quantitative determination of the components of a material, such as an ore or a drug.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8405',
              'prefLabel': [{'@xml:lang': 'en', '$': 'test'},
               {'@xml:lang': 'es', '$': 'prueba'},
               {'@xml:lang': 'fr', '$': 'test'}],
              'definition': {'@xml:lang': 'en',
               '$': 'To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Analyse'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
             {'@xml:lang': 'es', '$': 'análisis'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Examination or determination.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119756783',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse chimique'},
             {'@xml:lang': 'fr', '$': 'Dosage'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
             {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
             {'@xml:lang': 'en', '$': 'Analytical methods'},
             {'@xml:lang': 'en', '$': 'Chemical analysis'},
             {'@xml:lang': 'en', '$': 'Analysis methods'},
             {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002428',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Assaying'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb123155807',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dimensions'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976778m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Similitude (physique)'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Similarité (physique)'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119324916',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mesures physiques'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932207x'}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008771',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sizes'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
             {'@xml:lang': 'es', '$': 'espacio'},
             {'@xml:lang': 'en', '$': 'space'}],
            'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'espace-temps'},
               {'@xml:lang': 'es', '$': 'espacio-tiempo'},
               {'@xml:lang': 'en', '$': 'space-time continuum'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12011791z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Espace'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003964',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Space'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Temps'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133189074',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119780754',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Astronomie sphérique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Astronomie pratique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946909q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Longitude'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Degrés de longitude'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524393',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Tiempo'},
            'label': {'@xml:lang': 'es', '$': 'Tiempo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Duración'},
             {'@xml:lang': 'es', '$': 'Horas (Tiempo)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
            'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976246m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Méthode'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13088',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'method'},
             {'@xml:lang': 'es', '$': 'método'},
             {'@xml:lang': 'fr', '$': 'méthode'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A way of proceeding or doing something, especially a systematic or regular one.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
              'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
               {'@xml:lang': 'es', '$': 'metodología'},
               {'@xml:lang': 'fr', '$': 'méthodologie'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The system of methods and principles used in a particular discipline.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4788'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12546414c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Courses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Courses sportives'},
             {'@xml:lang': 'fr', '$': 'Épreuves de course'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120987752',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Compétitions'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Tournois (sports et jeux)'},
               {'@xml:lang': 'fr', '$': 'Réunions sportives'},
               {'@xml:lang': 'fr', '$': 'Épreuves sportives'},
               {'@xml:lang': 'fr', '$': 'Compétitions sportives'},
               {'@xml:lang': 'fr', '$': 'Concours sportifs'},
               {'@xml:lang': 'fr', '$': 'Championnats sportifs'},
               {'@xml:lang': 'fr', '$': 'Matchs'},
               {'@xml:lang': 'fr', '$': 'Manifestations sportives'},
               {'@xml:lang': 'fr', '$': 'Compétition (sports)'},
               {'@xml:lang': 'fr', '$': 'Événements sportifs'},
               {'@xml:lang': 'fr', '$': 'Concours et compétitions sportifs'},
               {'@xml:lang': 'fr', '$': 'Parties sportives'},
               {'@xml:lang': 'fr', '$': 'Tournois sportifs'},
               {'@xml:lang': 'fr', '$': 'Rencontres sportives'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85110265',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Racing'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
             {'@xml:lang': 'fr', '$': 'Possible'},
             {'@xml:lang': 'fr', '$': 'Impossible'},
             {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Impossibilité'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
                {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX531645',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
            'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3lk0hOhAFJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'carrera'},
             {'@xml:lang': 'fr', '$': 'course'},
             {'@xml:lang': 'en', '$': 'race'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtcS3oJgVjRu|http://ark.frantiq.fr/ark:/26678/pcrtQjFLxSMhNs|http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG|http://ark.frantiq.fr/ark:/26678/pcrt3lk0hOhAFJ'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Lutte, compétition de vitesse (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'athletics'},
               {'@xml:lang': 'fr', '$': 'athlétisme'},
               {'@xml:lang': 'es', '$': 'atletismo'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtcS3oJgVjRu|http://ark.frantiq.fr/ark:/26678/pcrtQjFLxSMhNs|http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931738b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Course à pied'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Course (athlétisme)'},
             {'@xml:lang': 'fr', '$': 'Course pédestre'},
             {'@xml:lang': 'fr', '$': 'Course pieds nus'},
             {'@xml:lang': 'fr', '$': 'Course à pied pieds nus'},
             {'@xml:lang': 'fr', '$': "Course d'endurance"},
             {'@xml:lang': 'fr', '$': 'Course de fond'},
             {'@xml:lang': 'fr', '$': 'Course de grand fond'},
             {'@xml:lang': 'fr', '$': 'Running minimaliste'},
             {'@xml:lang': 'fr', '$': 'Barefoot running'},
             {'@xml:lang': 'fr', '$': 'Fond (athlétisme)'},
             {'@xml:lang': 'fr', '$': 'Course'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931649q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Athlétisme'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Sports athlétiques et gymniques'},
               {'@xml:lang': 'fr', '$': 'Sports athlétiques'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85115858',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Running'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11935477c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Activités créatrices et manuelles'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'ACM'},
             {'@xml:lang': 'fr', '$': 'ACT'},
             {'@xml:lang': 'fr', '$': 'Activités manuelles dirigées'},
             {'@xml:lang': 'fr', '$': 'Travaux manuels éducatifs'},
             {'@xml:lang': 'fr', '$': 'Activités créatrices textiles'},
             {'@xml:lang': 'fr', '$': 'Travail manuel éducatif'},
             {'@xml:lang': 'fr',
              '$': 'Activités créatrices et manuelles éducatives'},
             {'@xml:lang': 'fr', '$': 'Apprentissage manuel'},
             {'@xml:lang': 'fr', '$': 'Travaux manuels'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935294d',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Enseignement professionnel'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318807v',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Éducation'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Scolarisation'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933987k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Enseignement technique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Apprentissage d'un métier"},
                {'@xml:lang': 'fr', '$': 'Enseignement industriel'},
                {'@xml:lang': 'fr', '$': 'Enseignement technologique'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524716',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajos manuales'},
            'label': {'@xml:lang': 'es', '$': 'Trabajos manuales'},
            'altLabel': {'@xml:lang': 'es', '$': 'Manualidades'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85080653',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Manual training'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Education, Industrial'},
             {'@xml:lang': 'en', '$': 'Industrial schools'},
             {'@xml:lang': 'en', '$': 'Industrial education'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb161371958',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': "Thérapie d'acceptation et d'engagement"},
            'altLabel': {'@xml:lang': 'fr', '$': 'ACT'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975087d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Thérapie cognitive'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Thérapies cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie comportementale et cognitive'},
                {'@xml:lang': 'fr', '$': 'TCC'},
                {'@xml:lang': 'fr', '$': 'Psychothérapie cognitive'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitives et comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies comportementales et cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitive et comportementale'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitivo-comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitivo-comportementale'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119365698',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Thérapie comportementale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Thérapies cognitives et comportementales'},
                {'@xml:lang': 'fr', '$': 'Thérapie cognitivo-comportementale'},
                {'@xml:lang': 'fr', '$': 'Thérapie de comportement'},
                {'@xml:lang': 'fr', '$': 'Psychothérapie comportementale'},
                {'@xml:lang': 'fr', '$': 'Comportement, Thérapie de'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie comportementale et cognitive'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies comportementales et cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitivo-comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitive et comportementale'},
                {'@xml:lang': 'fr', '$': 'Thérapies comportementales'},
                {'@xml:lang': 'fr', '$': 'TCC'},
                {'@xml:lang': 'fr', '$': 'Thérapie behavioriste'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2006000684',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Acceptance and commitment therapy'},
            'altLabel': {'@xml:lang': 'en', '$': 'ACT (Psychotherapy)'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX557689',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es',
             '$': 'Terapia de aceptación y compromiso'},
            'label': {'@xml:lang': 'es',
             '$': 'Terapia de aceptación y compromiso'},
            'altLabel': [{'@xml:lang': 'es', '$': 'ACT (Psicoterapia)'},
             {'@xml:lang': 'es', '$': 'Terapia ACT'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/538',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
             {'@xml:lang': 'es', '$': 'arquitectura'},
             {'@xml:lang': 'fr', '$': 'architecture'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The art and science of designing and building structures, or large groups of structures, in keeping with aesthetic and functional criteria.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2471'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-145',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Architecture'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2123|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-145',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "002 Analyse et théorie de l'architecture|Architecture"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2123',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "002 Analyse et théorie de l'architecture"}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
             {'@xml:lang': 'fr', '$': 'architecture'},
             {'@xml:lang': 'es', '$': 'arquitectura'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Art de construire les bâtiments (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133183211',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Architecture'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Architecture civile'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
               {'@xml:lang': 'fr', '$': 'Arts plastiques'},
               {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
               {'@xml:lang': 'fr', '$': 'Arts visuels'}]}},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-160'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85006611',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Architecture'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Western architecture (Western countries)'},
             {'@xml:lang': 'en', '$': 'Building design'},
             {'@xml:lang': 'en', '$': 'Construction'},
             {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
             {'@xml:lang': 'en',
              '$': 'Architecture, Western (Western countries)'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'four'},
             {'@xml:lang': 'es', '$': 'horno'},
             {'@xml:lang': 'en', '$': 'kiln'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|kiln'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Four sans précision d'utilisation (BL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
              'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
               {'@xml:lang': 'es', '$': 'mobiliario'},
               {'@xml:lang': 'fr', '$': 'mobilier'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Terme de regroupement, voir chaque activité (BL)'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '6',
           '@uri': 'http://sws.geonames.org/3017382/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['France',
            {'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'es', '$': 'Francia'},
            {'@xml:lang': 'en', '$': 'France'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'fr', '$': 'République Française'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|Francia'},
             {'@xml:lang': 'en', '$': 'Europe|France'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|France'},
             {'@xml:lang': 'en', '$': 'Europe|France'}]},
           'latitude': '46',
           'longitude': '2',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
             'prefLabel': ['Europe',
              {'@xml:lang': 'en', '$': 'Europe'},
              {'@xml:lang': 'es', '$': 'Europa'},
              {'@xml:lang': 'fr', '$': 'Europe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
             'latitude': '48.69096',
             'longitude': '9.14062'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Restricted Access',
        'http://purl.org/eprint/accessRights/RestrictedAccess']}},
     {'@uri': '10670/1.686kc9',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Les hétérologies du savoir (Roland Barthes, Pascal Quignard)'},
        {'@xml:lang': 'en',
         '$': 'The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)'}],
       'url': 'http://www.theses.fr/2016USPCA136/document',
       'enrichedCreators': {'creator': {'@origin': 'Messager, Mathieu',
         '@normalizedAuthor': 'Messager, Mathieu',
         '@idAuthor': 'messager_mathieu',
         'firstname': 'Mathieu',
         'lastname': 'Messager',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2016-12-06',
        '@startDate': '2016-12-06',
        '@endDate': '2016-12-06',
        '@treeDate': '2000/2010/2016',
        'normalizedDate': '2016-12-06',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2016'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '12057509',
         '$': 'http://www.theses.fr/2016USPCA136/document'}},
       'subjects': {'subject': [{'@xml:lang': 'fr',
          '$': 'Littérature et savoirs'},
         {'@xml:lang': 'fr', '$': 'Littérature et sciences humaines'},
         {'@xml:lang': 'fr', '$': 'Essai et fiction'},
         {'@xml:lang': 'fr', '$': 'Roland Barthes'},
         {'@xml:lang': 'fr', '$': 'Pascal Quignard'},
         {'@xml:lang': 'fr', '$': 'Histoire de l’idée de littérature'},
         {'@xml:lang': 'en', '$': 'Literature and knowledge'},
         {'@xml:lang': 'en', '$': 'Literature and human sciences'},
         {'@xml:lang': 'en', '$': 'Essay and fiction'},
         {'@xml:lang': 'en', '$': 'Roland Barthes'},
         {'@xml:lang': 'en', '$': 'Pascal Quignard'},
         {'@xml:lang': 'en', '$': 'History of the idea of literature'},
         []]},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'De Roland Barthes à Pascal Quignard, ce que l’on observe c’est la recherche d’une hétérologie du savoir\xa0; l’accentuation d’un discours «\xa0autre\xa0» sur le savoir ou plutôt la spectacularisation d’une forme hétérodoxe de l’écriture du savoir. Cela passe par le mélange des registres narratifs et argumentatifs, par le choix d’une forme plus fragmentaire que dissertative, par l’ouverture aux jeux énonciatifs comme par l’accueil de courts passages fictionnels dans les marges de la prose d’idées, par le souci enfin de la dimension figurale qui travaille en profondeur l’écriture du texte théorique. En engageant une comparaison entre ces deux générations d’écrivains, nous avons tenté une approche généalogique de cette ressaisie «\xa0hétérologique\xa0» des savoirs par la littérature. La question a été la suivante : qu’est-ce que l’insistance de la littérarisation du discours savant par les littéraires nous dit, en retour, de l’idée que la littérature se fait d’elle-même\xa0? Derrière toutes ces annexions des disciplines savantes dans le domaine de la littérature – d’ailleurs exclusivement menées depuis la littérature, dans une indifférence quasi unanime de la «\xa0science\xa0» dont l’émancipation n’a plus à être revendiquée – n’y-a-t-il pas toute une stratégie de redressement symbolique du pouvoir et de la figure du littéraire ? Il ne s’agit pas ici d’une contribution à l’histoire de la littérature – dont le plan, souvent trop vaste, finit par essentialiser l’objet qu’elle se propose précisément d’historiciser –, mais plutôt d’une participation à l’histoire de l’idée de littérature ; et à l’intérieur de celle-ci, de façon plus resserrée encore, la tentative d’éclairer l’histoire de l’idée selon laquelle la littérature récente s’est voulue (de nouveau) souveraine dans l’ordre des discours.'},
        {'@xml:lang': 'en',
         '$': "The thing one observes moving from Roland Barthes to Pascal Quignard is the search for a sort of heterology of knowledge; the emphasis of an “other” discourse on knowledge or rather the spectacular display of a heterodox form for the writing of knowledge. This takes place by means of the intertwinement of both narrative and argumentative registers, as well as by the choice of a more fragmented rather than dissertational form, by a sort of openness to enunciation games but also by the incorporation of short fictional excerpts within the margins of such prose of ideas and finally by pondering the figural dimension deeply operating the writing of the theoretical text. The comparison initiated herewith between these two generations of writers has led us to put forward a genealogical approach of such “heterological” restoration of knowledge by literature. The question was outlined as follows: what does the insistence of the use by the literary of a scholar discourse literalization tell us, in its own way, concerning the very idea literature projects of itself? Underlying all the annexations of scholarly disciplines within the field of literature — indeed exclusively conducted from literature's point of view, in an almost unanimous indifference towards “science” whose emancipation no longer needs to be claimed — one asks whether there would not be a complete symbolic turnaround strategy of both the power and the figure of the literary. We do not aim at contributing to the history of literature — whose plan, often too wide, ends by essentializing the precise object it seeks to historicize — but rather to participating in the history of an idea of literature itself; and herewith, in a more strict manner, attempting to enlighten the history of the idea that recent literature has (once again) sought sovereignty within the order of discourse."}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
            {'@xml:lang': 'es', '$': 'saber'},
            {'@xml:lang': 'fr', '$': 'savoir'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11938467s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Activités de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche fondamentale'},
            {'@xml:lang': 'fr', '$': 'Projets de recherche'},
            {'@xml:lang': 'fr', '$': 'Programmes de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Recherche pure'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
               {'@xml:lang': 'fr', '$': 'Sciences exactes'},
               {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933704h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail intellectuel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Activité intellectuelle'},
               {'@xml:lang': 'fr', '$': 'Travail mental'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-3'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525653',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
           'label': {'@xml:lang': 'es', '$': 'Investigación'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
            {'@xml:lang': 'es', '$': 'Investigación científica'},
            {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
            {'@xml:lang': 'es', '$': 'I+D'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Projet de recherche'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Recherche'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
            {'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'},
            {'@xml:lang': 'en', '$': 'research'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'organisation de la recherche'},
              {'@xml:lang': 'es', '$': 'organización de la investigación'},
              {'@xml:lang': 'en', '$': 'organization of research'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
            {'@xml:lang': 'es', '$': 'habla'},
            {'@xml:lang': 'fr', '$': 'discours'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
              {'@xml:lang': 'es', '$': 'medios de comunicación'},
              {'@xml:lang': 'fr', '$': 'mass media'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Parties du discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Péroraisons'},
            {'@xml:lang': 'fr', '$': 'Speeches'},
            {'@xml:lang': 'fr', '$': 'Allocutions'},
            {'@xml:lang': 'fr', '$': 'Oraisons'},
            {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
            {'@xml:lang': 'fr', '$': 'Philippiques'},
            {'@xml:lang': 'fr', '$': 'Proclamations'},
            {'@xml:lang': 'fr', '$': 'Exortations'},
            {'@xml:lang': 'fr', '$': 'Exordes'},
            {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Harangues'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
               {'@xml:lang': 'fr', '$': 'Transmission orale'},
               {'@xml:lang': 'fr', '$': 'Communication verbale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
            {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Orations'},
            {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Discourses'}]},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX528471',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Discursos'},
           'label': {'@xml:lang': 'es', '$': 'Discursos'},
           'altLabel': {'@xml:lang': 'es', '$': 'Alocuciones'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
            {'@xml:lang': 'es', '$': 'discurso'},
            {'@xml:lang': 'en', '$': 'speech'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
              {'@xml:lang': 'fr', '$': 'genre oratoire'},
              {'@xml:lang': 'en', '$': 'oratory genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Morphologie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Forme'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Morphologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb122630342',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mélange'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11958193x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Génie chimique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Technique chimique'},
               {'@xml:lang': 'fr', '$': 'Chimie appliquée'},
               {'@xml:lang': 'fr', '$': 'Technologie chimique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119520549',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Hydrodynamique'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85086323',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Mixing'},
           'altLabel': {'@xml:lang': 'en', '$': 'Blending'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119770798',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Registres'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Listes d'objets"},
            {'@xml:lang': 'fr', '$': 'Listes de noms'},
            {'@xml:lang': 'fr', '$': 'Matricules'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001918',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Registers'},
           'altLabel': {'@xml:lang': 'en', '$': 'Registers, lists, etc'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtx72BOMXZ2d',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'boca'},
            {'@xml:lang': 'en', '$': 'opening'},
            {'@xml:lang': 'fr', '$': 'ouverture'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtx72BOMXZ2d'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtx72BOMXZ2d'}],
           'definition': {'@xml:lang': 'fr',
            '$': "Espace vide, orifice par lequel l'intérieur de quelque chose communique avec l'extérieur. (ATLIF) Largeur d'une baie. (ATLIF)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr',
             'prefLabel': [{'@xml:lang': 'es', '$': 'edificación'},
              {'@xml:lang': 'fr', '$': 'édification'},
              {'@xml:lang': 'en', '$': 'erection'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr'},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr'}],
             'definition': {'@xml:lang': 'fr',
              '$': "Action de bâtir, d'élever un monument (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1510',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Percement'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Ouverture'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1510',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '010 Construction|Construction|Technologie de la construction|Second œuvre|Fermeture|Percement'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Fermeture'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Persienne'},
              {'@xml:lang': 'fr', '$': 'Grille de protection'},
              {'@xml:lang': 'fr', '$': 'Store'},
              {'@xml:lang': 'fr', '$': 'Volet'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtV3kw2a2i6i',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'game'},
            {'@xml:lang': 'fr', '$': 'jeu'},
            {'@xml:lang': 'es', '$': 'juego'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'divertissement'},
            {'@xml:lang': 'fr', '$': 'jeux'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtV3kw2a2i6i'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI',
             'prefLabel': [{'@xml:lang': 'en', '$': 'leisure'},
              {'@xml:lang': 'fr', '$': 'loisirs'},
              {'@xml:lang': 'es', '$': 'ocio'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13318351z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Jeux'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Passe-temps'},
            {'@xml:lang': 'fr', '$': 'Récréations'},
            {'@xml:lang': 'fr', '$': 'Divertissements'},
            {'@xml:lang': 'fr', '$': 'Distractions'},
            {'@xml:lang': 'fr', '$': 'Amusements'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb135052099',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Loisirs'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Passe-temps'},
              {'@xml:lang': 'fr', '$': 'Activités socio-culturelles'},
              {'@xml:lang': 'fr', '$': 'Amusements'},
              {'@xml:lang': 'fr', '$': 'Hobby'},
              {'@xml:lang': 'fr', '$': 'Distractions'},
              {'@xml:lang': 'fr', '$': 'Hobbies'},
              {'@xml:lang': 'fr', '$': 'Divertissements'},
              {'@xml:lang': 'fr', '$': "Violons d'Ingres"},
              {'@xml:lang': 'fr', '$': 'Récréations'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001961',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Games'},
           'altLabel': {'@xml:lang': 'en', '$': 'Amusements'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524861',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Juegos'},
           'label': {'@xml:lang': 'es', '$': 'Juegos'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11935995p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Hospitalité'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Accueil'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119458243',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Relations humaines'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Lien social'},
               {'@xml:lang': 'fr', '$': 'Relations sociales'},
               {'@xml:lang': 'fr', '$': 'Rapports humains'},
               {'@xml:lang': 'fr', '$': 'Sociabilité'},
               {'@xml:lang': 'fr', '$': 'Rapports sociaux'},
               {'@xml:lang': 'fr', '$': 'Rencontres interpersonnelles'},
               {'@xml:lang': 'fr', '$': 'Relations interpersonnelles'},
               {'@xml:lang': 'fr', '$': 'Liens sociaux'},
               {'@xml:lang': 'fr', '$': 'Rapports interpersonnels'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
               {'@xml:lang': 'fr', '$': 'Traditions'},
               {'@xml:lang': 'fr', '$': 'Coutumes'},
               {'@xml:lang': 'fr', '$': 'Vie sociale'},
               {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
               {'@xml:lang': 'fr', '$': 'Us et coutumes'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11978570s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Altruisme'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Désintéressement'},
               {'@xml:lang': 'fr', '$': 'Allocentrisme'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85062282',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Hospitality'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Guests, Hospitality for'},
            {'@xml:lang': 'en', '$': 'House guests, Hospitality for'},
            {'@xml:lang': 'en', '$': 'Houseguests, Hospitality for'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11958723d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Courts'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Terrains de tennis'},
            {'@xml:lang': 'fr', '$': 'Courts couverts'},
            {'@xml:lang': 'fr', '$': 'Tennis, Terrains de'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933307f',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Terrains de sports'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Sports, Terrains de'},
              {'@xml:lang': 'fr', '$': 'Terrains (sports)'},
              {'@xml:lang': 'fr', '$': 'Terrains de sport'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85133906',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Tennis courts'},
           'altLabel': {'@xml:lang': 'en', '$': 'Courts, Tennis'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119651597',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Prose'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Écriture en prose'},
            {'@xml:lang': 'fr', '$': 'Littérature en prose'},
            {'@xml:lang': 'fr', '$': 'Prose littéraire'},
            {'@xml:lang': 'fr', '$': "Prose d'art"}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
              {'@xml:lang': 'fr', '$': 'Littérature universelle'},
              {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX540476',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Prosa'},
           'label': {'@xml:lang': 'es', '$': 'Prosa'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85107565',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prose literature'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtAQcT8V4oNL',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'prosa'},
            {'@xml:lang': 'en', '$': 'prose'},
            {'@xml:lang': 'fr', '$': 'prose'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtAQcT8V4oNL',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|prose'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
              {'@xml:lang': 'fr', '$': 'genre littéraire'},
              {'@xml:lang': 'en', '$': 'literary genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1632',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'comparison'},
            {'@xml:lang': 'es', '$': 'comparación'},
            {'@xml:lang': 'fr', '$': 'comparaison'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The placing together or juxtaposing of two or more items to ascertain, bring into relief, or establish their similarities and dissimilarities.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/3011',
             'prefLabel': [{'@xml:lang': 'en', '$': 'evaluation'},
              {'@xml:lang': 'es', '$': 'evaluación'},
              {'@xml:lang': 'fr', '$': 'évaluation'}]}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/6269'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrta5dQT2vNkr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'analyse comparative'},
            {'@xml:lang': 'es', '$': 'comparación'},
            {'@xml:lang': 'en', '$': 'comparison'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'comparaison'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrta5dQT2vNkr',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|exploitation des données|analyse comparative'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX',
             'prefLabel': [{'@xml:lang': 'en', '$': 'data exploitation'},
              {'@xml:lang': 'fr', '$': 'exploitation des données'},
              {'@xml:lang': 'es', '$': 'utilización de los datos'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120096515',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Générations'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85053818',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Generations'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX555963',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Generaciones'},
           'label': {'@xml:lang': 'es', '$': 'Generaciones'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
            {'@xml:lang': 'fr', '$': 'Gens de lettres'},
            {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
           'label': {'@xml:lang': 'es', '$': 'Escritores'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
            {'@xml:lang': 'es', '$': 'Literatos'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933226f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir et érudition'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Savoirs'},
            {'@xml:lang': 'fr', '$': 'Connaissances'},
            {'@xml:lang': 'fr', '$': 'Érudition'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931827z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Culture'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Vie culturelle'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
               {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
               {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002011409',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Knowledge and learning'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Scholarship'},
            {'@xml:lang': 'en', '$': 'Learning'}]},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb150933964',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir-faire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Savoirs'},
            {'@xml:lang': 'fr', '$': 'Habiletés'},
            {'@xml:lang': 'fr', '$': 'Savoirs-faire'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb167347717',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Capital humain'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931219p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Cognition'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Connaissance'}}}]},
          {'@count': '9',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '9',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '9',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '9',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '9',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11950126v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Division internationale du travail'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Spécialisation internationale de la production'},
            {'@xml:lang': 'fr', '$': 'DIT'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939029c',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Relations économiques internationales'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Échanges économiques internationaux'},
               {'@xml:lang': 'fr', '$': 'Interdépendance économique'},
               {'@xml:lang': 'fr', '$': 'Politique économique extérieure'},
               {'@xml:lang': 'fr', '$': 'Économie internationale'},
               {'@xml:lang': 'fr', '$': 'Économie politique internationale'},
               {'@xml:lang': 'fr', '$': 'Économie mondiale'},
               {'@xml:lang': 'fr', '$': 'Politique économique internationale'},
               {'@xml:lang': 'fr', '$': 'Liens économiques'},
               {'@xml:lang': 'fr', '$': 'Échanges internationaux'},
               {'@xml:lang': 'fr',
                '$': 'Relations économiques internationales, Théorie des'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934154n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Division du travail'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Parcellisation des tâches'},
               {'@xml:lang': 'fr', '$': 'Travail, Division du'},
               {'@xml:lang': 'fr', '$': 'Spécialisation du travail'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85067391',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'International division of labor'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'International specialization'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12528145w',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Fesse'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Postérieur'},
            {'@xml:lang': 'fr', '$': 'Région fessière'},
            {'@xml:lang': 'fr', '$': 'Région glutéale'},
            {'@xml:lang': 'fr', '$': 'Clunes'},
            {'@xml:lang': 'fr', '$': 'Fesses'},
            {'@xml:lang': 'fr', '$': 'Cul'},
            {'@xml:lang': 'fr', '$': 'Derrière'},
            {'@xml:lang': 'fr', '$': 'Fessier'},
            {'@xml:lang': 'fr', '$': 'Nates'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12098485j',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Tronc (anatomie)'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Truncus'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85018392',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Buttocks'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Derriere'},
            {'@xml:lang': 'en', '$': 'Gluteal region'},
            {'@xml:lang': 'en', '$': 'Rump (Anatomy)'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX5098002',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Nalgas'},
           'label': {'@xml:lang': 'es', '$': 'Nalgas'},
           'altLabel': {'@xml:lang': 'es', '$': 'Región glútea'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120240882',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Domaine'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2651',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'emancipation'},
            {'@xml:lang': 'es', '$': 'emancipación'},
            {'@xml:lang': 'fr', '$': 'émancipation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The state of being free from social or political restraint or from the inhibition of moral or social conventions.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7811',
             'prefLabel': [{'@xml:lang': 'en', '$': 'social process'},
              {'@xml:lang': 'es', '$': 'procesos sociales'},
              {'@xml:lang': 'fr', '$': 'processus sociaux'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A continuous action, operation, or series of changes taking place in a definite manner and pertaining to the life, welfare, and relations of human beings in a community.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/719'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12571870c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Émancipation'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Libération'},
            {'@xml:lang': 'fr', '$': 'Émancipation politique'},
            {'@xml:lang': 'fr', '$': 'Émancipation sociale'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119569197',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie sociale'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Philosophie des sciences sociales'},
               {'@xml:lang': 'fr', '$': 'Sciences sociales et philosophie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la société'},
               {'@xml:lang': 'fr', '$': 'Philosophie et sciences sociales'},
               {'@xml:lang': 'fr', '$': 'Théorie sociale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Politique et philosophie'},
               {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
               {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1V0a6R9AjM',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'emancipación'},
            {'@xml:lang': 'en', '$': 'emancipation'},
            {'@xml:lang': 'fr', '$': 'émancipation'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs|http://ark.frantiq.fr/ark:/26678/pcrt1V0a6R9AjM'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs',
             'prefLabel': [{'@xml:lang': 'en', '$': 'civil law'},
              {'@xml:lang': 'es', '$': 'derecho civil'},
              {'@xml:lang': 'fr', '$': 'droit civil'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs'},
             'definition': {'@xml:lang': 'fr',
              '$': "Branche du droit privé portant sur l'état et la capacité des personnes, la famille, le patrimoine, la transmission des biens, les contrats et les obligations (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'estrategia'},
            {'@xml:lang': 'fr', '$': 'stratégie'},
            {'@xml:lang': 'en', '$': 'strategy'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'stratégie défensive'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz|http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Partie  de l’art militaire qui consiste à organiser, à coordonner et à disposer les forces armées sur un théâtre d’opérations. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'arte militar'},
              {'@xml:lang': 'fr', '$': 'art militaire'},
              {'@xml:lang': 'en', '$': 'warfare'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz'},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des connaissances qui se rapportent à la constitution et à l'emploi des forces armées ou, plus généralement, au métier des armes (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133183858',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Stratégie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Stratégie militaire'},
            {'@xml:lang': 'fr', '$': 'Géostratégie'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133183002',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Art et science militaires'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Combat (science militaire)'},
               {'@xml:lang': 'fr', '$': 'Art militaire'},
               {'@xml:lang': 'fr', '$': 'Science militaire'},
               {'@xml:lang': 'fr', '$': 'Art de la guerre'},
               {'@xml:lang': 'fr', '$': 'Sciences militaires'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318436b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Guerre'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Polémologie'},
               {'@xml:lang': 'fr', '$': 'Conflits armés'},
               {'@xml:lang': 'fr', '$': 'Hostilités'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85128514',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Strategy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Military strategy'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524612',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Estrategia'},
           'label': {'@xml:lang': 'es', '$': 'Estrategia'},
           'altLabel': {'@xml:lang': 'es', '$': 'Estrategia militar'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1916',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Symbole'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Allégorie'},
            {'@xml:lang': 'fr', '$': 'Symbolique'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1839|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1916',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage|Sémiologie|Symbole'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1839',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sémiologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1839',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Langage|Sémiologie'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13318524m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Symbolisme'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Symbolique'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133184815',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Anthropologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Anthropologie culturelle'},
               {'@xml:lang': 'fr', '$': 'Socio-anthropologie'},
               {'@xml:lang': 'fr', '$': 'Aspect ethnologique'},
               {'@xml:lang': 'fr', '$': 'Aspect anthropologique'},
               {'@xml:lang': 'fr', '$': 'Anthropologie sociale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005596',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Symbolism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Allegory and symbolism'},
            {'@xml:lang': 'en', '$': 'Allegory'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX536210',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Simbolismo'},
           'label': {'@xml:lang': 'es', '$': 'Simbolismo'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'poder'},
            {'@xml:lang': 'fr', '$': 'pouvoir'},
            {'@xml:lang': 'en', '$': 'power'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'pouvoir (concept de)'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Faculté de faire (Lar.). - Pour le pouvoir politique, exécutif, législatif se reporter à ces locutions.'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3983',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'history'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'fr', '$': 'histoire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3635'},
            {'@uri': 'http://eurovoc.europa.eu/1245'}]},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'en', '$': 'history'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|histoire-civilisation|histoire'}},
           'definition': {'@xml:lang': 'fr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
              {'@xml:lang': 'es', '$': 'historia-civilización'},
              {'@xml:lang': 'en', '$': 'history-civilization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
             'definition': {'@xml:lang': 'fr',
              '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
            {'@xml:lang': 'fr', '$': 'Sciences historiques'},
            {'@xml:lang': 'fr', '$': 'Science historique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
              {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
              {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005024',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'History'},
           'altLabel': {'@xml:lang': 'en', '$': 'Frontier troubles'}},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX525283',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Historia'},
           'label': {'@xml:lang': 'es', '$': 'Historia'}},
          {'@count': '4',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Histoire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6279',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
            {'@xml:lang': 'es', '$': 'plan'},
            {'@xml:lang': 'fr', '$': 'plan'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A scheme of action, a method of proceeding thought out in advance.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2889',
             'prefLabel': [{'@xml:lang': 'en', '$': 'environmental planning'},
              {'@xml:lang': 'es', '$': 'planificación ambiental'},
              {'@xml:lang': 'fr', '$': 'planification écologique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The identification of desirable objectives for the physical environment, including social and economic objectives, and the creation of administrative procedures and programmes to meet those objectives.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/7379'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
            {'@xml:lang': 'fr', '$': 'plan'},
            {'@xml:lang': 'es', '$': 'plano'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'}],
           'definition': {'@xml:lang': 'fr',
            '$': "Forme au sol d'un bâtiment ou d'une ville (Rob.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB',
             'prefLabel': [{'@xml:lang': 'en', '$': 'floor'},
              {'@xml:lang': 'fr', '$': 'sol'},
              {'@xml:lang': 'es', '$': 'suelo'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'}],
             'definition': {'@xml:lang': 'fr',
              '$': 'Surface de la terre où l’on se tient, où l’on marche, sur laquelle on construit, etc. (Wiktionnaire)'}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1546',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Plan'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1546'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Technique de représentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '040 Techniques de représentation|Technique de représentation'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
            {'@xml:lang': 'fr', '$': 'objet'},
            {'@xml:lang': 'es', '$': 'objeto'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
            {'@xml:lang': 'fr', '$': 'petit objet'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|object'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6051',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'participation'},
            {'@xml:lang': 'es', '$': 'participación'},
            {'@xml:lang': 'fr', '$': 'participation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The act of sharing or taking part in a civic, community or public action.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6785',
             'prefLabel': [{'@xml:lang': 'en', '$': 'public action'},
              {'@xml:lang': 'es', '$': 'acción pública'},
              {'@xml:lang': 'fr', '$': 'action publique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A measure or provision taken on behalf and with the consent of the general populace.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37602'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/11494',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'order'},
            {'@xml:lang': 'es', '$': 'orden'},
            {'@xml:lang': 'fr', '$': 'ordre'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) A direction or command of a court. In this sense it is often used synonymously with judgment.  2) The document bearing the seal of the court recording its judgment in a case.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
             'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
              {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
              {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11957809w',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Destin et fatalisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Destinée'},
            {'@xml:lang': 'fr', '$': 'Fatalité'},
            {'@xml:lang': 'fr', '$': 'Fatum'},
            {'@xml:lang': 'fr', '$': 'Sort'},
            {'@xml:lang': 'fr', '$': 'Fatalisme'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Homme, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937522v',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'action"},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Agir (philosophie)'},
               {'@xml:lang': 'fr', '$': "Acte (philosophie de l'action)"},
               {'@xml:lang': 'fr', '$': 'Action (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Activité (philosophie)'},
               {'@xml:lang': 'fr', '$': "Action, Philosophie de l'"}]}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85047439',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fate and fatalism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Fatalism'},
            {'@xml:lang': 'en', '$': 'Destiny'}]},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX532829',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fatalismo'},
           'label': {'@xml:lang': 'es', '$': 'Fatalismo'},
           'altLabel': {'@xml:lang': 'es', '$': 'Destino'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
            {'@xml:lang': 'es', '$': 'plaza'},
            {'@xml:lang': 'en', '$': 'public place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Espace plus ou moins étendue (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
             'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
              {'@xml:lang': 'fr', '$': 'structure urbaine'},
              {'@xml:lang': 'en', '$': 'urban structure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4189',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'incorporation'},
            {'@xml:lang': 'es', '$': 'incorporación'},
            {'@xml:lang': 'fr', '$': 'incorporation'}],
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/150'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1200',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'LED'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Light emitting diode'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-749|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-750|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1200',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '010 Construction|Construction|Technologie de la construction|Second œuvre|Éclairage|Éclairage artificiel|LED'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-750',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Éclairage artificiel'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-749|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-750',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '010 Construction|Construction|Technologie de la construction|Second œuvre|Éclairage|Éclairage artificiel'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtx4sFxmENjb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'tell'},
            {'@xml:lang': 'es', '$': 'tell'},
            {'@xml:lang': 'fr', '$': 'tell'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'tepe'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4|http://ark.frantiq.fr/ark:/26678/pcrtx4sFxmENjb'},
           'definition': {'@xml:lang': 'fr',
            '$': "Terme arabe pour désigner une colline artificielle, résultats de l'accumulation de niveaux archéologiques. Pluriel : telûl, tulûl. En turc : tepe, hüyük."},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4',
             'prefLabel': [{'@xml:lang': 'en', '$': 'archaeological site'},
              {'@xml:lang': 'fr', '$': 'site archéologique'},
              {'@xml:lang': 'es', '$': 'yacimiento arqueológico'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4'},
             'definition': {'@xml:lang': 'fr',
              '$': "Lieu où sont préservés des vestiges matériels d'une activité passée exercée par les hommes. (Wikipédia)"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
            {'@xml:lang': 'es', '$': 'punto'},
            {'@xml:lang': 'fr', '$': 'point'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A position on a reference system determined by a survey.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
             'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
              {'@xml:lang': 'es', '$': 'parámetro'},
              {'@xml:lang': 'fr', '$': 'paramètre'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb162567509',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Littérature et sciences humaines'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Sciences humaines et poésie'},
            {'@xml:lang': 'fr', '$': 'Roman et sciences humaines'},
            {'@xml:lang': 'fr', '$': 'Sciences humaines et roman'},
            {'@xml:lang': 'fr', '$': 'Sciences humaines et littérature'},
            {'@xml:lang': 'fr', '$': 'Poésie et sciences humaines'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ensayo'},
            {'@xml:lang': 'fr', '$': 'essai'},
            {'@xml:lang': 'en', '$': 'essay'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
            {'@xml:lang': 'fr', '$': 'Sciences exactes'},
            {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527870',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias'},
           'label': {'@xml:lang': 'es', '$': 'Ciencias'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Open Access',
        'http://purl.org/eprint/accessRights/OpenAccess']}},
     {'@uri': '10670/1.1516eg',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique'},
        {'@xml:lang': 'fr',
         '$': 'Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique'}],
       'url': 'https://tel.archives-ouvertes.fr/tel-03260607',
       'enrichedCreators': {'creator': {'@origin': 'Han, Seokhyeon',
         '@normalizedAuthor': 'Han, Seokhyeon',
         '@idAuthor': 'han_seokhyeon',
         'firstname': 'Seokhyeon',
         'lastname': 'Han',
         'title': [],
         'sameAs': {'orcid': '0000-0001-8871-5403', 'idref': '254159222'}}},
       'date': {'@origin': '2020-11-09',
        '@startDate': '2020-11-09',
        '@endDate': '2020-11-09',
        '@treeDate': '2000/2020/2020',
        'normalizedDate': '2020-11-09',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2020'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2020'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://tel.archives-ouvertes.fr/tel-03260607'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '27414287',
          '$': 'https://tel.archives-ouvertes.fr/tel-03260607/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://tel.archives-ouvertes.fr/tel-03260607/file/HAN_2020_archivage.pdf'}],
        'similar': ['NNT: 2020GRALL023', 'tel-03260607']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'Roland Barthes'},
         {'@xml:lang': 'en', '$': 'The course at the Collège de France'},
         {'@xml:lang': 'en', '$': 'Discourse'},
         {'@xml:lang': 'en', '$': 'Novel'},
         {'@xml:lang': 'en', '$': 'Fiction'},
         {'@xml:lang': 'en', '$': 'Fantasm'},
         {'@xml:lang': 'fr', '$': 'Roland Barthes'},
         {'@xml:lang': 'fr', '$': 'Le cours au Collège de France'},
         {'@xml:lang': 'fr', '$': 'Discours'},
         {'@xml:lang': 'fr', '$': 'Roman'},
         {'@xml:lang': 'fr', '$': 'Fiction'},
         {'@xml:lang': 'fr', '$': 'Fantasme'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': [{'@xml:lang': 'en',
         '$': 'What we read and listen to in the preparatory notes and the recorded words of Roland Barthes’s courses at the Collège de France is the discourse that tells the singular fantasms of a subject. This discourse oscillates between science and literature, critical language and expressive language, reality and fiction, meta-discourse and discourse-object. This particularity makes it possible to conceive of the course as a creative act and a literary experiment. The hypothesis is as follows: the three courses, independent of each other, constitute a unit around the final fantasm, the Vita Nova which is a Novel of degree zero. By naming all the fragments of the discourse, scattered throughout the course, “pre-novel”, we try to reconstruct a literary work as an architecture of fantasm, namely the novel as a discourse that dramatizes Barthes’s last journey. And we analyze four dimensions of his discourse: space, time, language and method.'},
        {'@xml:lang': 'fr',
         '$': 'Ce qu’on lit et écoute dans les notes préparatoires et les paroles enregistrées des cours de Roland Barthes au Collège de France, c’est le discours qui dit les fantasmes singuliers d’un sujet. Ce discours oscille entre science et littérature, langage critique et langage expressif, réalité et fiction, méta-discours et discours-objet. Cette particularité permet de concevoir son cours comme à la fois un acte créateur et une expérimentation littéraire. L’hypothèse est la suivante : les trois cours, indépendants les uns des autres, constituent une unité autour du fantasme final, la Vita Nova qui est un Roman du degré zéro. En nommant l’ensemble des fragments du discours, dispersés dans les cours, « pré-roman », on tente de reconstruire une œuvre en tant qu’architecture de fantasme, à savoir le roman comme discours qui dramatise le dernier parcours de Barthes. Et ce travail analyse quatre dimensions de son discours : l’espace, le temps, le langage et la méthode.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '6',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collège'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment scolaire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Groupe scolaire'},
               {'@xml:lang': 'fr', '$': 'Architecture scolaire'},
               {'@xml:lang': 'fr', '$': 'Construction scolaire'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342'}}}},
           {'@count': '6',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}},
           {'@count': '7',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
             {'@xml:lang': 'es', '$': 'habla'},
             {'@xml:lang': 'fr', '$': 'discours'}],
            'definition': {'@xml:lang': 'en',
             '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
              'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
               {'@xml:lang': 'es', '$': 'medios de comunicación'},
               {'@xml:lang': 'fr', '$': 'mass media'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
           {'@count': '7',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Parties du discours (rhétorique)'},
             {'@xml:lang': 'fr', '$': 'Péroraisons'},
             {'@xml:lang': 'fr', '$': 'Speeches'},
             {'@xml:lang': 'fr', '$': 'Allocutions'},
             {'@xml:lang': 'fr', '$': 'Oraisons'},
             {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
             {'@xml:lang': 'fr', '$': 'Philippiques'},
             {'@xml:lang': 'fr', '$': 'Proclamations'},
             {'@xml:lang': 'fr', '$': 'Exortations'},
             {'@xml:lang': 'fr', '$': 'Exordes'},
             {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
             {'@xml:lang': 'fr', '$': 'Harangues'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
                {'@xml:lang': 'fr', '$': 'Transmission orale'},
                {'@xml:lang': 'fr', '$': 'Communication verbale'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
                {'@xml:lang': 'fr', '$': 'Littérature universelle'},
                {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}]},
           {'@count': '7',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
             {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
             {'@xml:lang': 'en', '$': 'Orations'},
             {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
             {'@xml:lang': 'en', '$': 'Discourses'}]},
           {'@count': '7',
            '@uri': 'http://datos.bne.es/resource/XX528471',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Discursos'},
            'label': {'@xml:lang': 'es', '$': 'Discursos'},
            'altLabel': {'@xml:lang': 'es', '$': 'Alocuciones'}},
           {'@count': '7',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
             {'@xml:lang': 'es', '$': 'discurso'},
             {'@xml:lang': 'en', '$': 'speech'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
               {'@xml:lang': 'fr', '$': 'genre oratoire'},
               {'@xml:lang': 'en', '$': 'oratory genre'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb144972893',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gloses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Gloses marginales'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Gloses (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Gloses interlinéaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318362m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Manuscrits'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ouvrages manuscrits'},
                {'@xml:lang': 'fr', '$': 'Livres manuscrits'},
                {'@xml:lang': 'fr', '$': 'Documents manuscrits'}]}}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12047425d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes marginales'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Marginalia'},
             {'@xml:lang': 'fr', '$': 'Apostilles'},
             {'@xml:lang': 'fr', '$': 'Manchettes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
               {'@xml:lang': 'fr', '$': 'Épitexte'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85081056',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Marginalia'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Marginal notes'},
             {'@xml:lang': 'en', '$': 'Notes, Marginal'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11977203k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Prise de notes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes, Prise de'},
             {'@xml:lang': 'fr', '$': 'Notes'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953339g'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119346301',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Reportage'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Enquêtes radiodiffusées'},
                {'@xml:lang': 'fr', '$': 'Téléreportage'},
                {'@xml:lang': 'fr', '$': 'Radioreportage'},
                {'@xml:lang': 'fr', '$': 'Grand reportage'},
                {'@xml:lang': 'fr', '$': 'Reportage et reporters'},
                {'@xml:lang': 'fr', '$': 'Enquêtes télévisées'},
                {'@xml:lang': 'fr', '$': 'Reportages'},
                {'@xml:lang': 'fr',
                 '$': 'Enquête sur le terrain (journalisme)'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092791',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Note-taking'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Taking notes'},
             {'@xml:lang': 'en', '$': 'Notetaking'},
             {'@xml:lang': 'en', '$': 'Keeping notes'},
             {'@xml:lang': 'en', '$': 'Notekeeping'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX549927',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'label': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Apuntes, Toma de'},
             {'@xml:lang': 'es', '$': 'Notas, Toma de'},
             {'@xml:lang': 'es', '$': 'Toma de notas'},
             {'@xml:lang': 'es', '$': 'Tomar apuntes'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13187149q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes en bas de page'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de chapitre'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de volume'},
             {'@xml:lang': 'fr', '$': 'Notes critiques'},
             {'@xml:lang': 'fr', '$': 'Éclaircissements et notes'},
             {'@xml:lang': 'fr', '$': 'Notes et éclaircissements'},
             {'@xml:lang': 'fr', '$': 'Notes de bas de page'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119474908',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Édition savante'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Édition académique'},
                {'@xml:lang': 'fr', '$': 'Édition universitaire'}]}}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12546414c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Courses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Courses sportives'},
             {'@xml:lang': 'fr', '$': 'Épreuves de course'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120987752',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Compétitions'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Tournois (sports et jeux)'},
               {'@xml:lang': 'fr', '$': 'Réunions sportives'},
               {'@xml:lang': 'fr', '$': 'Épreuves sportives'},
               {'@xml:lang': 'fr', '$': 'Compétitions sportives'},
               {'@xml:lang': 'fr', '$': 'Concours sportifs'},
               {'@xml:lang': 'fr', '$': 'Championnats sportifs'},
               {'@xml:lang': 'fr', '$': 'Matchs'},
               {'@xml:lang': 'fr', '$': 'Manifestations sportives'},
               {'@xml:lang': 'fr', '$': 'Compétition (sports)'},
               {'@xml:lang': 'fr', '$': 'Événements sportifs'},
               {'@xml:lang': 'fr', '$': 'Concours et compétitions sportifs'},
               {'@xml:lang': 'fr', '$': 'Parties sportives'},
               {'@xml:lang': 'fr', '$': 'Tournois sportifs'},
               {'@xml:lang': 'fr', '$': 'Rencontres sportives'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85110265',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Racing'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
             {'@xml:lang': 'en', '$': 'science'},
             {'@xml:lang': 'fr', '$': 'science'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|knowledge|science'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
              'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
               {'@xml:lang': 'es', '$': 'saber'},
               {'@xml:lang': 'fr', '$': 'savoir'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
             {'@xml:lang': 'es', '$': 'ciencia'},
             {'@xml:lang': 'fr', '$': 'science'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
             {'@xml:lang': 'en', '$': 'Sciences'},
             {'@xml:lang': 'en', '$': 'Science of science'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
             {'@xml:lang': 'fr', '$': 'Possible'},
             {'@xml:lang': 'fr', '$': 'Impossible'},
             {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Impossibilité'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
                {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX531645',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
            'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3lk0hOhAFJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'carrera'},
             {'@xml:lang': 'fr', '$': 'course'},
             {'@xml:lang': 'en', '$': 'race'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtcS3oJgVjRu|http://ark.frantiq.fr/ark:/26678/pcrtQjFLxSMhNs|http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG|http://ark.frantiq.fr/ark:/26678/pcrt3lk0hOhAFJ'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Lutte, compétition de vitesse (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'athletics'},
               {'@xml:lang': 'fr', '$': 'athlétisme'},
               {'@xml:lang': 'es', '$': 'atletismo'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtcS3oJgVjRu|http://ark.frantiq.fr/ark:/26678/pcrtQjFLxSMhNs|http://ark.frantiq.fr/ark:/26678/pcrtUS9jlA7VWG'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931738b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Course à pied'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Course (athlétisme)'},
             {'@xml:lang': 'fr', '$': 'Course pédestre'},
             {'@xml:lang': 'fr', '$': 'Course pieds nus'},
             {'@xml:lang': 'fr', '$': 'Course à pied pieds nus'},
             {'@xml:lang': 'fr', '$': "Course d'endurance"},
             {'@xml:lang': 'fr', '$': 'Course de fond'},
             {'@xml:lang': 'fr', '$': 'Course de grand fond'},
             {'@xml:lang': 'fr', '$': 'Running minimaliste'},
             {'@xml:lang': 'fr', '$': 'Barefoot running'},
             {'@xml:lang': 'fr', '$': 'Fond (athlétisme)'},
             {'@xml:lang': 'fr', '$': 'Course'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931649q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Athlétisme'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Sports athlétiques et gymniques'},
               {'@xml:lang': 'fr', '$': 'Sports athlétiques'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85115858',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Running'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11935477c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Activités créatrices et manuelles'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'ACM'},
             {'@xml:lang': 'fr', '$': 'ACT'},
             {'@xml:lang': 'fr', '$': 'Activités manuelles dirigées'},
             {'@xml:lang': 'fr', '$': 'Travaux manuels éducatifs'},
             {'@xml:lang': 'fr', '$': 'Activités créatrices textiles'},
             {'@xml:lang': 'fr', '$': 'Travail manuel éducatif'},
             {'@xml:lang': 'fr',
              '$': 'Activités créatrices et manuelles éducatives'},
             {'@xml:lang': 'fr', '$': 'Apprentissage manuel'},
             {'@xml:lang': 'fr', '$': 'Travaux manuels'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935294d',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Enseignement professionnel'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318807v',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Éducation'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Scolarisation'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933987k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Enseignement technique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Apprentissage d'un métier"},
                {'@xml:lang': 'fr', '$': 'Enseignement industriel'},
                {'@xml:lang': 'fr', '$': 'Enseignement technologique'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524716',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajos manuales'},
            'label': {'@xml:lang': 'es', '$': 'Trabajos manuales'},
            'altLabel': {'@xml:lang': 'es', '$': 'Manualidades'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85080653',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Manual training'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Education, Industrial'},
             {'@xml:lang': 'en', '$': 'Industrial schools'},
             {'@xml:lang': 'en', '$': 'Industrial education'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb161371958',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': "Thérapie d'acceptation et d'engagement"},
            'altLabel': {'@xml:lang': 'fr', '$': 'ACT'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975087d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Thérapie cognitive'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Thérapies cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie comportementale et cognitive'},
                {'@xml:lang': 'fr', '$': 'TCC'},
                {'@xml:lang': 'fr', '$': 'Psychothérapie cognitive'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitives et comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies comportementales et cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitive et comportementale'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitivo-comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitivo-comportementale'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119365698',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Thérapie comportementale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Thérapies cognitives et comportementales'},
                {'@xml:lang': 'fr', '$': 'Thérapie cognitivo-comportementale'},
                {'@xml:lang': 'fr', '$': 'Thérapie de comportement'},
                {'@xml:lang': 'fr', '$': 'Psychothérapie comportementale'},
                {'@xml:lang': 'fr', '$': 'Comportement, Thérapie de'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie comportementale et cognitive'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies comportementales et cognitives'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapies cognitivo-comportementales'},
                {'@xml:lang': 'fr',
                 '$': 'Thérapie cognitive et comportementale'},
                {'@xml:lang': 'fr', '$': 'Thérapies comportementales'},
                {'@xml:lang': 'fr', '$': 'TCC'},
                {'@xml:lang': 'fr', '$': 'Thérapie behavioriste'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2006000684',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Acceptance and commitment therapy'},
            'altLabel': {'@xml:lang': 'en', '$': 'ACT (Psychotherapy)'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX557689',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es',
             '$': 'Terapia de aceptación y compromiso'},
            'label': {'@xml:lang': 'es',
             '$': 'Terapia de aceptación y compromiso'},
            'altLabel': [{'@xml:lang': 'es', '$': 'ACT (Psicoterapia)'},
             {'@xml:lang': 'es', '$': 'Terapia ACT'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/538',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
             {'@xml:lang': 'es', '$': 'arquitectura'},
             {'@xml:lang': 'fr', '$': 'architecture'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The art and science of designing and building structures, or large groups of structures, in keeping with aesthetic and functional criteria.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
              'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
               {'@xml:lang': 'es', '$': 'humanidades'},
               {'@xml:lang': 'fr', '$': 'sciences humaines'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2471'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-145',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Architecture'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2123|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-145',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "002 Analyse et théorie de l'architecture|Architecture"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2123',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "002 Analyse et théorie de l'architecture"}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
             {'@xml:lang': 'fr', '$': 'architecture'},
             {'@xml:lang': 'es', '$': 'arquitectura'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Art de construire les bâtiments (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133183211',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Architecture'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Architecture civile'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
               {'@xml:lang': 'fr', '$': 'Arts plastiques'},
               {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
               {'@xml:lang': 'fr', '$': 'Arts visuels'}]}},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-160'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85006611',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Architecture'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Western architecture (Western countries)'},
             {'@xml:lang': 'en', '$': 'Building design'},
             {'@xml:lang': 'en', '$': 'Construction'},
             {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
             {'@xml:lang': 'en',
              '$': 'Architecture, Western (Western countries)'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'four'},
             {'@xml:lang': 'es', '$': 'horno'},
             {'@xml:lang': 'en', '$': 'kiln'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|kiln'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Four sans précision d'utilisation (BL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
              'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
               {'@xml:lang': 'es', '$': 'mobiliario'},
               {'@xml:lang': 'fr', '$': 'mobilier'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb123155807',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dimensions'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976778m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Similitude (physique)'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Similarité (physique)'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119324916',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mesures physiques'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932207x'}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008771',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sizes'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6pK15gEmbx',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'bed'},
             {'@xml:lang': 'es', '$': 'cama'},
             {'@xml:lang': 'fr', '$': 'lit'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si|http://ark.frantiq.fr/ark:/26678/pcrt6pK15gEmbx',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|piece of furniture|bed'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'meuble'},
               {'@xml:lang': 'es', '$': 'mueble'},
               {'@xml:lang': 'en', '$': 'piece of furniture'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'ameublement'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtUt7XJjD0Si',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|piece of furniture'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12571786g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lire italienne'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'ITL'},
             {'@xml:lang': 'fr', '$': 'Lire italienne (monnaie)'},
             {'@xml:lang': 'fr', '$': 'Lira (monnaie)'},
             {'@xml:lang': 'fr', '$': 'LIT'},
             {'@xml:lang': 'fr', '$': 'Lire (monnaie italienne)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119835505'}}},
           {'@count': '5',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voie urbaine'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Avenue'},
             {'@xml:lang': 'fr', '$': 'Boulevard'},
             {'@xml:lang': 'fr', '$': 'Cours'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Voirie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Réseau des voies urbaines'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '021 Aménagement urbain|Urbanisme|VRD|Voirie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11950126v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr',
             '$': 'Division internationale du travail'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Spécialisation internationale de la production'},
             {'@xml:lang': 'fr', '$': 'DIT'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939029c',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Relations économiques internationales'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Échanges économiques internationaux'},
                {'@xml:lang': 'fr', '$': 'Interdépendance économique'},
                {'@xml:lang': 'fr', '$': 'Politique économique extérieure'},
                {'@xml:lang': 'fr', '$': 'Économie internationale'},
                {'@xml:lang': 'fr', '$': 'Économie politique internationale'},
                {'@xml:lang': 'fr', '$': 'Économie mondiale'},
                {'@xml:lang': 'fr',
                 '$': 'Politique économique internationale'},
                {'@xml:lang': 'fr', '$': 'Liens économiques'},
                {'@xml:lang': 'fr', '$': 'Échanges internationaux'},
                {'@xml:lang': 'fr',
                 '$': 'Relations économiques internationales, Théorie des'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934154n',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Division du travail'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Parcellisation des tâches'},
                {'@xml:lang': 'fr', '$': 'Travail, Division du'},
                {'@xml:lang': 'fr', '$': 'Spécialisation du travail'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85067391',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'International division of labor'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'International specialization'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931384d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Fantasmes'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Phantasmes'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11948958d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Imagination'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932099v',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Inconscient'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Subconscient'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119570504',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mécanismes de défense'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Défense, Mécanismes de'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85047157',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fantasy'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Phantasy'},
             {'@xml:lang': 'en', '$': 'Day dreams'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX533069',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fantasía'},
            'label': {'@xml:lang': 'es', '$': 'Fantasía'},
            'altLabel': {'@xml:lang': 'es', '$': 'Fantasías'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
             {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
             {'@xml:lang': 'fr', '$': 'sujet'}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
             {'@xml:lang': 'fr', '$': 'Littérature universelle'},
             {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
            'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
             {'@xml:lang': 'en',
              '$': 'Western literature (Western countries)'},
             {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
              'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
               {'@xml:lang': 'es', '$': 'patrimonio cultural'},
               {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
             {'@uri': 'http://eurovoc.europa.eu/1680'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ens. des productions littéraires (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
              'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
               {'@xml:lang': 'fr', '$': 'philologie'},
               {'@xml:lang': 'en', '$': 'philology'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
              'definition': {'@xml:lang': 'fr',
               '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques|Littérature'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques'}}}},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Langage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
             {'@xml:lang': 'en', '$': 'language'},
             {'@xml:lang': 'es', '$': 'lenguaje'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
             {'@xml:lang': 'fr', '$': 'Langage et langues'},
             {'@xml:lang': 'fr', '$': 'Langues et langage'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Language (New words, slang, etc.)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933785b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie intellectuelle'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Intellectuelle, Vie'},
               {'@xml:lang': 'fr', '$': 'Vie culturelle'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
             {'@xml:lang': 'en', '$': 'Evaluation of literature'},
             {'@xml:lang': 'en', '$': 'Literary criticism'},
             {'@xml:lang': 'en', '$': 'Books--Appraisal'},
             {'@xml:lang': 'en', '$': 'Criticism--Technique'},
             {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
             {'@xml:lang': 'en', '$': 'critique'},
             {'@xml:lang': 'fr', '$': 'critique'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
               {'@xml:lang': 'fr', '$': 'analyse du discours'},
               {'@xml:lang': 'en', '$': 'discourse analysis'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
               'expandedLabel': {'@xml:lang': 'es',
                '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528102',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
            'label': {'@xml:lang': 'es', '$': 'Realidad'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11947467r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature expérimentale'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Littérature d'avant-garde"},
             {'@xml:lang': 'fr', '$': 'Avant-garde (littérature)'},
             {'@xml:lang': 'fr', '$': 'Avants-gardes littéraires'},
             {'@xml:lang': 'fr', '$': 'Avant-gardisme littéraire'},
             {'@xml:lang': 'fr', '$': 'Expérimentation littéraire'},
             {'@xml:lang': 'fr', '$': 'Avant-garde littéraire'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939457q'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119357238',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Avant-garde (esthétique)'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX557618',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Literatura experimental'},
            'label': {'@xml:lang': 'es', '$': 'Literatura experimental'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Literatura de vanguardia'},
             {'@xml:lang': 'es', '$': 'Literatura vanguardista'},
             {'@xml:lang': 'es', '$': 'Vanguardias (Literatura)'},
             {'@xml:lang': 'es', '$': 'Vanguardismo (Literatura)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85077546',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literature, Experimental'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Avant-garde literature'},
             {'@xml:lang': 'en', '$': 'Experimental literature'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11959156z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Hypothèse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Conjecture'},
             {'@xml:lang': 'fr', '$': 'Supposition'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Démonstration (logique)'},
                {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85063827',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Hypothesis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Supposition'},
             {'@xml:lang': 'en', '$': 'Assumption'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb14479542b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Concorde'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Harmonie (relations humaines)'},
             {'@xml:lang': 'fr', '$': 'Omonoia (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Unité'},
             {'@xml:lang': 'fr', '$': 'Union'},
             {'@xml:lang': 'fr', '$': 'Homonoia (philosophie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
                {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119458243',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Relations humaines'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Lien social'},
                {'@xml:lang': 'fr', '$': 'Relations sociales'},
                {'@xml:lang': 'fr', '$': 'Rapports humains'},
                {'@xml:lang': 'fr', '$': 'Sociabilité'},
                {'@xml:lang': 'fr', '$': 'Rapports sociaux'},
                {'@xml:lang': 'fr', '$': 'Rencontres interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Relations interpersonnelles'},
                {'@xml:lang': 'fr', '$': 'Liens sociaux'},
                {'@xml:lang': 'fr', '$': 'Rapports interpersonnels'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85030635',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Concord'},
            'altLabel': {'@xml:lang': 'en', '$': 'Unity'}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
             {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
             {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
             {'@xml:lang': 'fr', '$': 'Récits'},
             {'@xml:lang': 'fr', '$': 'Romans'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
             {'@xml:lang': 'en', '$': 'Novels'},
             {'@xml:lang': 'en', '$': 'Stories'}]},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Art roman'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "050 Histoire de l'art|Histoire de l'art|Art roman"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
              'prefLabel': {'@xml:lang': 'fr', '$': "Histoire de l'art"},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "050 Histoire de l'art|Histoire de l'art"}}}}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'novel'},
             {'@xml:lang': 'es', '$': 'novela'},
             {'@xml:lang': 'fr', '$': 'roman'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Récit où dominent les aventures (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
               {'@xml:lang': 'fr', '$': 'genre narratif'},
               {'@xml:lang': 'en', '$': 'narrative genre'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'tent'},
             {'@xml:lang': 'fr', '$': 'tente'},
             {'@xml:lang': 'es', '$': 'tienda'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL',
              'expandedLabel': [{'@xml:lang': 'en',
                '$': 'Themes|architecture|architecture (conception)|domestic architecture|settlement|tent'},
               {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat|tente'}]},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtn0kjwckvyL'}],
            'definition': {'@xml:lang': 'fr',
             '$': "abri portatif, fait généralement d'une toile tendue sur des supports (CNRTL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
               {'@xml:lang': 'es', '$': 'hábitat'},
               {'@xml:lang': 'en', '$': 'settlement'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
               {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
              'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
               {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
              'definition': {'@xml:lang': 'fr',
               '$': "Lieu d'habitation construit."}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-581',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Construction démontable'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Tente'},
             {'@xml:lang': 'fr', '$': 'Chapiteau démontable'},
             {'@xml:lang': 'fr', '$': 'Architecture démontable'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-581',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '010 Construction|Construction|Procédé de construction|Construction démontable'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Procédé de construction'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Technique de construction'},
               {'@xml:lang': 'fr', '$': 'Mode de construction'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1659',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '010 Construction|Construction|Procédé de construction'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
             {'@xml:lang': 'es', '$': 'saber'},
             {'@xml:lang': 'fr', '$': 'savoir'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cheminement'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Traversée'},
             {'@xml:lang': 'fr', '$': 'Parcours'},
             {'@xml:lang': 'fr', '$': 'Promenade'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '030 Paysage - environnement|Paysage|Aménagement paysager|Cheminement'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement paysager'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Urbanisme paysager'},
               {'@xml:lang': 'fr', '$': 'Aménagement de site'}]}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '042 Professions - travail|Travail'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '042 Professions - travail'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119715347',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Tâches'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
               {'@xml:lang': 'fr', '$': 'Économie'},
               {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
               {'@xml:lang': 'fr', '$': 'Analyse économique'},
               {'@xml:lang': 'fr', '$': 'Science économique'},
               {'@xml:lang': 'fr', '$': 'Économique'},
               {'@xml:lang': 'fr', '$': 'Théorie économique'},
               {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
               {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-536'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006403',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Occupations'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524430',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
            'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005236',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Employment'},
            'altLabel': {'@xml:lang': 'en', '$': 'Working conditions'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
             {'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'}],
            'definition': {'@xml:lang': 'en',
             '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
             {'@uri': 'http://eurovoc.europa.eu/4543'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
             {'@xml:lang': 'fr', '$': 'travail'},
             {'@xml:lang': 'en', '$': 'work'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
               {'@xml:lang': 'fr', '$': 'société'},
               {'@xml:lang': 'en', '$': 'society'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
              'definition': {'@xml:lang': 'fr',
               '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13077',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'assay'},
             {'@xml:lang': 'es', '$': 'ensayo'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Qualitative or quantitative determination of the components of a material, such as an ore or a drug.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8405',
              'prefLabel': [{'@xml:lang': 'en', '$': 'test'},
               {'@xml:lang': 'es', '$': 'prueba'},
               {'@xml:lang': 'fr', '$': 'test'}],
              'definition': {'@xml:lang': 'en',
               '$': 'To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Analyse'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
             {'@xml:lang': 'es', '$': 'análisis'},
             {'@xml:lang': 'fr', '$': 'analyse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Examination or determination.'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119756783',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse chimique'},
             {'@xml:lang': 'fr', '$': 'Dosage'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
             {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
             {'@xml:lang': 'en', '$': 'Analytical methods'},
             {'@xml:lang': 'en', '$': 'Chemical analysis'},
             {'@xml:lang': 'en', '$': 'Analysis methods'},
             {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99002428',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Assaying'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
             {'@xml:lang': 'es', '$': 'espacio'},
             {'@xml:lang': 'en', '$': 'space'}],
            'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'espace-temps'},
               {'@xml:lang': 'es', '$': 'espacio-tiempo'},
               {'@xml:lang': 'en', '$': 'space-time continuum'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12011791z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Espace'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003964',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Space'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Temps'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133189074',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119780754',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Astronomie sphérique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Astronomie pratique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946909q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Longitude'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Degrés de longitude'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524393',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Tiempo'},
            'label': {'@xml:lang': 'es', '$': 'Tiempo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Duración'},
             {'@xml:lang': 'es', '$': 'Horas (Tiempo)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
            'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976246m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Méthode'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13088',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'method'},
             {'@xml:lang': 'es', '$': 'método'},
             {'@xml:lang': 'fr', '$': 'méthode'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A way of proceeding or doing something, especially a systematic or regular one.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
              'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
               {'@xml:lang': 'es', '$': 'metodología'},
               {'@xml:lang': 'fr', '$': 'méthodologie'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The system of methods and principles used in a particular discipline.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4788'}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '6',
           '@uri': 'http://sws.geonames.org/3017382/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['France',
            {'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'es', '$': 'Francia'},
            {'@xml:lang': 'en', '$': 'France'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'fr', '$': 'République Française'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|Francia'},
             {'@xml:lang': 'en', '$': 'Europe|France'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|France'},
             {'@xml:lang': 'en', '$': 'Europe|France'}]},
           'latitude': '46',
           'longitude': '2',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
             'prefLabel': ['Europe',
              {'@xml:lang': 'en', '$': 'Europe'},
              {'@xml:lang': 'es', '$': 'Europa'},
              {'@xml:lang': 'fr', '$': 'Europe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
             'latitude': '48.69096',
             'longitude': '9.14062'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.nwxndj',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'The Exercise of intimacy according to Roland Barthes'},
        {'@xml:lang': 'fr',
         '$': "L'Exercice de l'intime d'après Roland Barthes"}],
       'url': 'https://hal.archives-ouvertes.fr/tel-02517109',
       'enrichedCreators': {'creator': {'@origin': 'Paillé, Willy',
         '@normalizedAuthor': 'Paillé, Willy',
         '@idAuthor': 'paille_willy',
         'firstname': 'Willy',
         'lastname': 'Paillé',
         'title': [],
         'sameAs': {'idref': '157352153'}}},
       'date': {'@origin': '2011-07-04',
        '@startDate': '2011-07-04',
        '@endDate': '2011-07-04',
        '@treeDate': '2000/2010/2011',
        'normalizedDate': '2011-07-04',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2011'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://hal.archives-ouvertes.fr/tel-02517109'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '21912257',
          '$': 'https://hal.archives-ouvertes.fr/tel-02517109/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://hal.archives-ouvertes.fr/tel-02517109/file/THESE%20finalis%C3%A9e.pdf'}],
        'similar': 'tel-02517109'},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'Resistance'},
         {'@xml:lang': 'en', '$': 'Ego'},
         {'@xml:lang': 'en', '$': 'Roland Barthes'},
         {'@xml:lang': 'en', '$': 'Intimate'},
         {'@xml:lang': 'en', '$': 'Exercise'},
         {'@xml:lang': 'en', '$': 'Style'},
         {'@xml:lang': 'en', '$': 'Diary'},
         {'@xml:lang': 'en', '$': 'Essay'},
         {'@xml:lang': 'en', '$': 'Action'},
         {'@xml:lang': 'en', '$': 'Love'},
         {'@xml:lang': 'en', '$': 'Life'},
         {'@xml:lang': 'en', '$': 'Writing'},
         {'@xml:lang': 'en', '$': 'Imprint'},
         {'@xml:lang': 'en', '$': 'Voice'},
         {'@xml:lang': 'en', '$': 'Nothing'},
         {'@xml:lang': 'en', '$': 'Reading'},
         {'@xml:lang': 'fr', '$': 'Roland Barthes'},
         {'@xml:lang': 'fr', '$': 'Intime'},
         {'@xml:lang': 'fr', '$': 'Exercice'},
         {'@xml:lang': 'fr', '$': 'Style'},
         {'@xml:lang': 'fr', '$': 'Journal'},
         {'@xml:lang': 'fr', '$': 'Essai'},
         {'@xml:lang': 'fr', '$': 'Action'},
         {'@xml:lang': 'fr', '$': 'Amour'},
         {'@xml:lang': 'fr', '$': 'Vie'},
         {'@xml:lang': 'fr', '$': 'Écriture'},
         {'@xml:lang': 'fr', '$': 'Empreinte'},
         {'@xml:lang': 'fr', '$': 'Voix'},
         {'@xml:lang': 'fr', '$': 'Ego'},
         {'@xml:lang': 'fr', '$': 'Résistance'},
         {'@xml:lang': 'fr', '$': 'Rien'},
         {'@xml:lang': 'fr', '$': 'Lecture'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': [{'@xml:lang': 'en',
         '$': 'The Intimate is the image that Barthes’ tought works on. “Our most intimate quest doesn’t go at the end of matters but at its whys”, he says at the beginning of his work. And at the end: “The intimate wants to speak within me, to make its call at the face of generality, of science.” In his critical speech, we wonder if Barthes hasn’t set free a poetics of the Intimate. First we shall attempt to define the illusion carried by the Intimate in general. A certain public utility is willing to neutralize it in one’s private life (his speech has the form of what J. Kristeva ascribes to the “virtuous exasperation” of Criticism facing “sentimental naïvety”). Then we must reassert its possible Call and Word, by showing how Barthes himself dealt with them. Therefore these lines of attack: the Style or the Intimate force, its representation in the scandalous oblivion of the subject — after Barthes, far from him; the Diary in which this scandal best echoes — according to Barthes: depending on the rythm that causes to rethink the Essay; the very writing of the Intimate or written form, can’t be resumed to the identity, but can be measured by the wide range of themes (Voice, Ego, Resistance). It turns the work into “work-life”, going from this space to life’s structure and events; the Nothing of the speech at which this writing is articulated with, which Barthes starts to mention with reading and eludes at the same time.'},
        {'@xml:lang': 'fr',
         '$': 'L’Intime, c’est la figure à laquelle la pensée de Barthes s’exerce. « Notre enquête la plus intime ne va pas à l’issue des choses mais à leur pourquoi », dit-il au début de son œuvre. Et à la fin : « C’est l’intime qui veut parler en moi, faire entendre son cri, face à la généralité, à la science. » Dans son discours critique, Barthes n’a-t-il pas alors laissé s’échapper une poétique de l’Intime ? Nous tentons d’abord de cerner l’illusion de l’Intime en général. Un certain service public (dont le discours a la forme, selon J. Kristeva, de la « vertueuse exaspération » de la Critique devant la « naïveté sentimentale ») veut le neutraliser dans l’évidence de la vie privée. Nous devons alors réaffirmer son Cri et sa Parole possibles, en montrant comment Barthes, lui, s’y est pris. D’où ces lignes d’attaque : le Style ou force de l’Intime, ses représentations dans l’oubli scandaleux du sujet — après Barthes, loin de lui ; le Journal dans lequel ce scandale résonne le mieux — d’après Barthes : selon le rythme de ce genre lui permettant de repenser l’Essai ; l’Écriture même de l’Intime ou graphie, irréductible à l’identité, mesurable à la donne de thèmes (Voix, Ego, Résistance) transformant, dans l’instance et les circonstances de la vie, l’œuvre en « œuvre-vie » ; et le Rien du discours auquel cette écriture s’articule, ce que Barthes en esquisse avec la lecture et n’en esquive pas moins.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046328',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Exercise'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Physical activity'},
            {'@xml:lang': 'en', '$': 'Warm-up'},
            {'@xml:lang': 'en', '$': 'Workouts (Exercise)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85059518',
              'prefLabel': {'@xml:lang': 'en', '$': 'Health'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Wellness'},
               {'@xml:lang': 'en', '$': 'Personal health'}]}},
            {'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96005653'},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00006004',
              'prefLabel': {'@xml:lang': 'en', '$': 'Health'},
              'altLabel': {'@xml:lang': 'en', '$': 'Biography--Health'}}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13162712d'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11946873j'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005703',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Exercise'},
           'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/4634'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85114855',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Roland (Legendary character)'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Roland'},
            {'@xml:lang': 'en', '$': 'Orlando (Legendary character)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh90005999',
             'prefLabel': {'@xml:lang': 'en', '$': 'Legends--France'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
            {'@xml:lang': 'fr', '$': 'image'},
            {'@xml:lang': 'es', '$': 'imagen'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
             'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
              {'@xml:lang': 'es', '$': 'estética'},
              {'@xml:lang': 'fr', '$': 'esthétique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science qui traite du beau en général (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85012886',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Beginning'},
           'altLabel': {'@xml:lang': 'en', '$': 'Commencement'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85033169',
              'prefLabel': {'@xml:lang': 'en', '$': 'Cosmology'}}},
            {'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96005273'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119484899'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85148133',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Work'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Work, Method of'},
            {'@xml:lang': 'en', '$': 'Industry (Psychology)'},
            {'@xml:lang': 'en', '$': 'Method of work'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85062839',
             'prefLabel': {'@xml:lang': 'en', '$': 'Human behavior'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Human action'},
              {'@xml:lang': 'en', '$': 'Human beings--Behavior'},
              {'@xml:lang': 'en', '$': 'Behavior, Human'},
              {'@xml:lang': 'en', '$': 'Action, Human'},
              {'@xml:lang': 'en', '$': 'Ethology'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119715347'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
            {'@xml:lang': 'fr', '$': 'travail'},
            {'@xml:lang': 'en', '$': 'work'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
             'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
              {'@xml:lang': 'fr', '$': 'société'},
              {'@xml:lang': 'en', '$': 'society'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
             'definition': {'@xml:lang': 'fr',
              '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046785',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Face'},
           'altLabel': {'@xml:lang': 'en', '$': 'Human face'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85059468',
             'prefLabel': {'@xml:lang': 'en', '$': 'Head'}}},
           'exactMatch': [{'@uri': 'http://lod.nal.usda.gov/nalt/38992'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11935546c'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11933232c'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'exactMatch': {'@uri': 'http://content.glin.gov/subjectTerm/856'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
             'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
              {'@xml:lang': 'es', '$': 'saber'},
              {'@xml:lang': 'fr', '$': 'savoir'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'}}}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126434',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speech'},
           'altLabel': {'@xml:lang': 'en', '$': 'Talking'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074518',
             'prefLabel': {'@xml:lang': 'en', '$': 'Language and languages'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Foreign languages'},
              {'@xml:lang': 'en', '$': 'Languages'}]}},
           'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/46123'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
            {'@xml:lang': 'es', '$': 'discurso'},
            {'@xml:lang': 'en', '$': 'speech'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
              {'@xml:lang': 'fr', '$': 'genre oratoire'},
              {'@xml:lang': 'en', '$': 'oratory genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
            {'@xml:lang': 'es', '$': 'habla'},
            {'@xml:lang': 'fr', '$': 'discours'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
              {'@xml:lang': 'es', '$': 'medios de comunicación'},
              {'@xml:lang': 'fr', '$': 'mass media'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85147776',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Wonder'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85034861',
              'prefLabel': {'@xml:lang': 'en', '$': 'Curiosity'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Inquisitiveness'},
               {'@xml:lang': 'en', '$': 'Exploratory behavior'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85042818',
              'prefLabel': {'@xml:lang': 'en', '$': 'Emotions'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Human emotions'},
               {'@xml:lang': 'en', '$': 'Passions'},
               {'@xml:lang': 'en', '$': 'Feelings'}]}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119591219'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11981219q'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt07DVcalKRc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'poético'},
            {'@xml:lang': 'en', '$': 'poetics'},
            {'@xml:lang': 'fr', '$': 'poétique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrt07DVcalKRc'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
             'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Ens. des productions littéraires (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85103703',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Poetics'},
           'altLabel': {'@xml:lang': 'en', '$': 'Poetry--Technique'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119400538'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'general'},
            {'@xml:lang': 'es', '$': 'general'},
            {'@xml:lang': 'fr', '$': 'général'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe|http://ark.frantiq.fr/ark:/26678/pcrtZeR0GRIi3f'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'chef militaire'},
              {'@xml:lang': 'es', '$': 'jefe militar'},
              {'@xml:lang': 'en', '$': 'military chief'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtDz6FAhsh6y|http://ark.frantiq.fr/ark:/26678/pcrtGqs9WuRRUe'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6822',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'public utility'},
            {'@xml:lang': 'es', '$': 'utilidad pública'},
            {'@xml:lang': 'fr', '$': 'entreprise de service public'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An enterprise concerned with the provision to the public of essentials, such as electricity or water.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7621',
             'prefLabel': [{'@xml:lang': 'en', '$': 'services'},
              {'@xml:lang': 'es', '$': 'servicios'},
              {'@xml:lang': 'fr', '$': 'secteur des services'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The carrying out of work for which there is a constant public demand by the provision of labor and the utilization of tools.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtV6XRVnKZjB',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'private life'},
            {'@xml:lang': 'es', '$': 'vida privada'},
            {'@xml:lang': 'fr', '$': 'vie privée'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtikTQRnZdHy|http://ark.frantiq.fr/ark:/26678/pcrtV6XRVnKZjB'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtikTQRnZdHy',
             'prefLabel': [{'@xml:lang': 'en', '$': 'lifestyle'},
              {'@xml:lang': 'fr', '$': 'mode de vie'},
              {'@xml:lang': 'es', '$': 'modo de vida'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtikTQRnZdHy'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85113628',
              'prefLabel': {'@xml:lang': 'en', '$': 'Rhetoric'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Speaking'},
               {'@xml:lang': 'en', '$': 'Language and languages--Rhetoric'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
              'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
              'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
               {'@xml:lang': 'en',
                '$': 'Western literature (Western countries)'},
               {'@xml:lang': 'en', '$': 'Belles-lettres'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00007543',
              'prefLabel': {'@xml:lang': 'en', '$': 'Rhetoric'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119361722'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthTAMawVNg8',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'facing'},
            {'@xml:lang': 'es', '$': 'paramento'},
            {'@xml:lang': 'fr', '$': 'parement'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtIxHmbVwDYW|http://ark.frantiq.fr/ark:/26678/pcrthTAMawVNg8'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtIxHmbVwDYW|http://ark.frantiq.fr/ark:/26678/pcrthTAMawVNg8'}],
           'definition': {'@xml:lang': 'fr',
            '$': "Surface apparente d'un mur, dans un ouvrage (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIxHmbVwDYW',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'mur'},
              {'@xml:lang': 'es', '$': 'muro'},
              {'@xml:lang': 'en', '$': 'wall'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtIxHmbVwDYW'},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrtIxHmbVwDYW'}],
             'definition': {'@xml:lang': 'fr',
              '$': 'Ouvrage vertical destiné à enclore, à protéger, à isoler. (ATLIF)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85089101',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Must'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85146975',
              'prefLabel': {'@xml:lang': 'en', '$': 'Wine and wine making'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Oenology'},
               {'@xml:lang': 'en', '$': 'Enology'},
               {'@xml:lang': 'en', '$': 'Wines'},
               {'@xml:lang': 'en', '$': 'Vinification'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85052173',
              'prefLabel': {'@xml:lang': 'en', '$': 'Fruit juices'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Fruit juice'},
               {'@xml:lang': 'en', '$': 'Juices, Fruit'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12098572g'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002302',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Showing'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009056',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Style'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119759229'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7118',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'representation'},
            {'@xml:lang': 'es', '$': 'representación'},
            {'@xml:lang': 'fr', '$': 'représentation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Any conduct or action undertaken on behalf of a person, group, business or government, often as an elected or appointed voice.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10833',
             'prefLabel': [{'@xml:lang': 'en', '$': 'public function'},
              {'@xml:lang': 'es', '$': 'función pública'},
              {'@xml:lang': 'fr', '$': 'fonction publique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Activity carried out for the benefit of the community.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85112947',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Representative government and representation'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Parliamentary government'},
            {'@xml:lang': 'en', '$': 'Representation'},
            {'@xml:lang': 'en', '$': 'Self-government'},
            {'@xml:lang': 'en', '$': 'Political representation'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
              'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
               {'@xml:lang': 'en', '$': 'Government'},
               {'@xml:lang': 'en', '$': 'Political theory'},
               {'@xml:lang': 'en', '$': 'Civil government'},
               {'@xml:lang': 'en', '$': 'Commonwealth, The'},
               {'@xml:lang': 'en', '$': 'Science, Political'},
               {'@xml:lang': 'en', '$': 'Administration'},
               {'@xml:lang': 'en', '$': 'Politics'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85031329',
              'prefLabel': {'@xml:lang': 'en', '$': 'Constitutional law'},
              'altLabel': [{'@xml:lang': 'en',
                '$': 'Constitutional law--Interpretation and construction'},
               {'@xml:lang': 'en',
                '$': 'Constitutions--Interpretation and construction'},
               {'@xml:lang': 'en', '$': 'Constitutional limitations'},
               {'@xml:lang': 'en', '$': 'Constitutionalism'},
               {'@xml:lang': 'en', '$': 'Limitations, Constitutional'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85031326',
              'prefLabel': {'@xml:lang': 'en', '$': 'Constitutional history'},
              'altLabel': [{'@xml:lang': 'en',
                '$': 'Constitutional history, Modern'},
               {'@xml:lang': 'en', '$': 'Constitutions--History'},
               {'@xml:lang': 'en', '$': 'Constitutional law--History'}]}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13757758r'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13734407w'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
            {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
            {'@xml:lang': 'fr', '$': 'sujet'}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005200',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Causes'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11975722r'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ensayo'},
            {'@xml:lang': 'fr', '$': 'essai'},
            {'@xml:lang': 'en', '$': 'essay'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85044913',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Essay'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Sketch, Literary'},
            {'@xml:lang': 'en', '$': 'Literary sketch'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119489979'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85148637',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Handwriting'},
            {'@xml:lang': 'en', '$': 'Chirography'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074518',
             'prefLabel': {'@xml:lang': 'en', '$': 'Language and languages'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Foreign languages'},
              {'@xml:lang': 'en', '$': 'Languages'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11936326f'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85064150',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Identity (Philosophical concept)'},
           'altLabel': {'@xml:lang': 'en', '$': 'Identity'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005065',
              'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
              'altLabel': {'@xml:lang': 'en', '$': 'Knowledge--Philosophy'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85100849',
              'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
              'altLabel': {'@xml:lang': 'en', '$': 'Mental philosophy'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11936778s'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfQ7ukKy1y4',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'identidad'},
            {'@xml:lang': 'fr', '$': 'identité'},
            {'@xml:lang': 'en', '$': 'identity'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrtfQ7ukKy1y4'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'individu'},
              {'@xml:lang': 'en', '$': 'individual'},
              {'@xml:lang': 'es', '$': 'individuo'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK'}}}},
          {'@count': '1',
           '@uri': 'http://pactols.frantiq.fr/#6',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
            {'@xml:lang': 'en', '$': 'Themes'},
            {'@xml:lang': 'es', '$': 'Tema'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85144224',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Voice'},
           'altLabel': {'@xml:lang': 'en', '$': 'Speaking'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99001945',
              'prefLabel': {'@xml:lang': 'en', '$': 'Music'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85135055',
              'prefLabel': {'@xml:lang': 'en', '$': 'Throat'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99001795',
              'prefLabel': {'@xml:lang': 'en', '$': 'Music'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85088809',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Music--Physiological aspects'},
              'altLabel': [{'@xml:lang': 'en',
                '$': 'Physiological aspects of music'},
               {'@xml:lang': 'en', '$': 'Music physiology'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85088762',
              'prefLabel': {'@xml:lang': 'en', '$': 'Music'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Serious music'},
               {'@xml:lang': 'en', '$': 'Musical compositions'},
               {'@xml:lang': 'en', '$': 'Art music'},
               {'@xml:lang': 'en', '$': 'Musical works'},
               {'@xml:lang': 'en', '$': 'Classical music'},
               {'@xml:lang': 'en', '$': 'Western music (Western countries)'},
               {'@xml:lang': 'en', '$': 'Art music, Western'},
               {'@xml:lang': 'en', '$': 'Western art music'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074518',
              'prefLabel': {'@xml:lang': 'en', '$': 'Language and languages'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Foreign languages'},
               {'@xml:lang': 'en', '$': 'Languages'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh00006301',
              'prefLabel': {'@xml:lang': 'en', '$': 'Human sounds'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119387339'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006925',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Voice'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'resistance'},
            {'@xml:lang': 'fr', '$': 'résistance'},
            {'@xml:lang': 'es', '$': 'resistencia'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
             'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
              {'@xml:lang': 'fr', '$': 'troubles'},
              {'@xml:lang': 'en', '$': 'unrest'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
              {'@xml:lang': 'fr', '$': 'soulèvement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003964',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Space'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85084286',
             'prefLabel': {'@xml:lang': 'en', '$': 'Metaphysics'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
            {'@xml:lang': 'es', '$': 'espacio'},
            {'@xml:lang': 'en', '$': 'space'}],
           'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'espace-temps'},
              {'@xml:lang': 'es', '$': 'espacio-tiempo'},
              {'@xml:lang': 'en', '$': 'space-time continuum'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008694',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Structure'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12088423s'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'lectura'},
            {'@xml:lang': 'fr', '$': 'lecture'},
            {'@xml:lang': 'en', '$': 'reading'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
             'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
              {'@xml:lang': 'es', '$': 'práctica cotidiana'},
              {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85111662',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reading'},
           'altLabel': {'@xml:lang': 'en', '$': 'Reading--Study and teaching'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074546',
             'prefLabel': {'@xml:lang': 'en', '$': 'Language arts'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Communication arts'},
              {'@xml:lang': 'en', '$': 'Language arts--Study and teaching'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119656766'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007651',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reading'},
           'exactMatch': {'@uri': 'http://lod.nal.usda.gov/nalt/50371'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
           'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85090330',
              'prefLabel': {'@xml:lang': 'en', '$': 'Nautical astronomy'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Astronomy, Nautical'},
               {'@xml:lang': 'en', '$': 'Celestial navigation'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85053972',
              'prefLabel': {'@xml:lang': 'en', '$': 'Geodetic astronomy'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Field astronomy'},
               {'@xml:lang': 'en', '$': 'Celestial geodesy'}]}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11933602j'},
            {'@uri': 'http://aims.fao.org/aos/agrovoc/c_7778'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb133189074'},
            {'@uri': 'http://content.glin.gov/subjectTerm/2342'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8487',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'time'},
            {'@xml:lang': 'es', '$': 'tiempo (cronología)'},
            {'@xml:lang': 'fr', '$': 'temps (durée)'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) The dimension of the physical universe which, at a given place, orders the sequence of events.  2) A designated instant in this sequence, as the time of day. Also known as epoch.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
             'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
              {'@xml:lang': 'es', '$': 'parámetro'},
              {'@xml:lang': 'fr', '$': 'paramètre'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_7778'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'figure'},
            {'@xml:lang': 'es', '$': 'personaje'},
            {'@xml:lang': 'fr', '$': 'personnage'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Terme à compléter par les PACTOLS Anthroponymes'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr',
             'prefLabel': [{'@xml:lang': 'es', '$': 'iconografía'},
              {'@xml:lang': 'fr', '$': 'iconographie'},
              {'@xml:lang': 'en', '$': 'iconography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Etude descriptive des différentes représentations figurées (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85100104',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Personal property'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Personalty'},
            {'@xml:lang': 'en', '$': 'Property, Personal'},
            {'@xml:lang': 'en', '$': 'Choses'},
            {'@xml:lang': 'en', '$': 'Chattels'},
            {'@xml:lang': 'en',
             '$': 'Personal property--Law and legislation'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85107496',
             'prefLabel': {'@xml:lang': 'en', '$': 'Property'},
             'altLabel': {'@xml:lang': 'en',
              '$': 'Property--Law and legislation'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwV5F3Zewnp',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'public'},
            {'@xml:lang': 'fr', '$': 'public'},
            {'@xml:lang': 'es', '$': 'público'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtYNkjSY6BFL|http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l|http://ark.frantiq.fr/ark:/26678/pcrtwV5F3Zewnp'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l',
             'prefLabel': [{'@xml:lang': 'es', '$': 'público/privado'},
              {'@xml:lang': 'en', '$': 'public/private'},
              {'@xml:lang': 'fr', '$': 'public/privé'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'privé/public'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtYNkjSY6BFL|http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/10904',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'public'},
            {'@xml:lang': 'es', '$': 'público'},
            {'@xml:lang': 'fr', '$': 'public'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The community or people in general or a part or section of the community grouped because of a common interest or activity.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8299',
             'prefLabel': [{'@xml:lang': 'en', '$': 'target group'},
              {'@xml:lang': 'es', '$': 'grupo dirigente'},
              {'@xml:lang': 'fr', '$': 'groupe-cible'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A collection of people selected and approached by some entity for a variety of purposes, including assistance, recruitment, information dissemination, marketing and research.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85066522',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Innocence (Psychology)'},
           'altLabel': {'@xml:lang': 'en', '$': 'Naïveté'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85100113',
              'prefLabel': {'@xml:lang': 'en', '$': 'Personality'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Personality traits'},
               {'@xml:lang': 'en', '$': 'Personal identity'},
               {'@xml:lang': 'en', '$': 'Personology'},
               {'@xml:lang': 'en', '$': 'Personality theory'},
               {'@xml:lang': 'en', '$': 'Traits, Personality'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85042818',
              'prefLabel': {'@xml:lang': 'en', '$': 'Emotions'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Human emotions'},
               {'@xml:lang': 'en', '$': 'Passions'},
               {'@xml:lang': 'en', '$': 'Feelings'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb122635035'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85098258',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Parole'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Parole--Law and legislation'},
            {'@xml:lang': 'en', '$': 'Ticket of leave'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh92001956',
             'prefLabel': {'@xml:lang': 'en',
              '$': 'Alternatives to imprisonment'},
             'altLabel': [{'@xml:lang': 'en',
               '$': 'Alternatives to institutionalization (Corrections)'},
              {'@xml:lang': 'en', '$': 'Non-custodial punishments'},
              {'@xml:lang': 'en', '$': 'Intermediate sanctions'},
              {'@xml:lang': 'en', '$': 'Alternatives to incarceration'},
              {'@xml:lang': 'en', '$': 'Prison alternatives'},
              {'@xml:lang': 'en', '$': 'Alternative punishments'},
              {'@xml:lang': 'en', '$': 'Imprisonment alternatives'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119720374'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'amor'},
            {'@xml:lang': 'fr', '$': 'amour'},
            {'@xml:lang': 'en', '$': 'love'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion|amour'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
             'prefLabel': [{'@xml:lang': 'es', '$': 'pasión'},
              {'@xml:lang': 'en', '$': 'passion'},
              {'@xml:lang': 'fr', '$': 'passion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85078519',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Love'},
           'altLabel': {'@xml:lang': 'en', '$': 'Affection'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85042818',
             'prefLabel': {'@xml:lang': 'en', '$': 'Emotions'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Human emotions'},
              {'@xml:lang': 'en', '$': 'Passions'},
              {'@xml:lang': 'en', '$': 'Feelings'}]}},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11930878m'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119462689'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12146918f'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12038738m'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85076807',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Life'},
           'altLabel': {'@xml:lang': 'en', '$': 'Life--Philosophy'},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12405077x'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11933780m'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'life'},
            {'@xml:lang': 'es', '$': 'vida'},
            {'@xml:lang': 'fr', '$': 'vie'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hombre-universo'},
              {'@xml:lang': 'fr', '$': 'homme-univers'},
              {'@xml:lang': 'en', '$': 'man-universe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'homme-monde-univers'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': [{'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Littératures"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Literature'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
               'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
                {'@xml:lang': 'en', '$': 'Literature'},
                {'@xml:lang': 'fr', '$': 'Littératures'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Literature'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Littératures'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Literature'}]},
           {'@proba': '0.998',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.langue',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
             {'@xml:lang': 'fr', '$': 'Linguistique'},
             {'@xml:lang': 'es', '$': 'Lingüística'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.langue',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Linguistique"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Linguistics'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Lingüística'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie268',
               'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
                {'@xml:lang': 'fr', '$': 'Linguistique'},
                {'@xml:lang': 'es', '$': 'Lingüística'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie268',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Lingüística'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Linguistics'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Linguistique'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Linguistics'}]}]},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': [{'@proba': '0.998',
            '@uri': 'http://calenda.org/categories.rdf#categorie268',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
             {'@xml:lang': 'fr', '$': 'Linguistique'},
             {'@xml:lang': 'es', '$': 'Lingüística'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie268',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Lingüística'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Linguistics'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Linguistique'}]}},
           {'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie269',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Literature'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Littératures'}]}}]}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.cpw33a',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)'},
        {'@xml:lang': 'fr',
         '$': 'Les hétérologies du savoir (Roland Barthes, Pascal Quignard)'}],
       'url': 'https://tel.archives-ouvertes.fr/tel-01580993',
       'enrichedCreators': {'creator': {'@origin': 'Messager, Mathieu',
         '@normalizedAuthor': 'Messager, Mathieu',
         '@idAuthor': 'messager_mathieu',
         'firstname': 'Mathieu',
         'lastname': 'Messager',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2016-12-06',
        '@startDate': '2016-12-06',
        '@endDate': '2016-12-06',
        '@treeDate': '2000/2010/2016',
        'normalizedDate': '2016-12-06',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2016'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://tel.archives-ouvertes.fr/tel-01580993'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15180516',
          '$': 'https://tel.archives-ouvertes.fr/tel-01580993/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://tel.archives-ouvertes.fr/tel-01580993/file/These_MESSAGER_Mathieu_2016.pdf'}],
        'similar': ['NNT: 2016USPCA136', 'tel-01580993']},
       'subjects': {'subject': [{'@xml:lang': 'en',
          '$': 'Literature and knowledge'},
         {'@xml:lang': 'en', '$': 'Literature and human sciences'},
         {'@xml:lang': 'en', '$': 'Essay and fiction'},
         {'@xml:lang': 'en', '$': 'Roland Barthes'},
         {'@xml:lang': 'en', '$': 'Pascal Quignard'},
         {'@xml:lang': 'en', '$': 'History of the idea of literature'},
         {'@xml:lang': 'fr', '$': 'Littérature et savoirs'},
         {'@xml:lang': 'fr', '$': 'Littérature et sciences humaines'},
         {'@xml:lang': 'fr', '$': 'Essai et fiction'},
         {'@xml:lang': 'fr', '$': 'Histoire de l’idée de littérature'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': [{'@xml:lang': 'en',
         '$': "The thing one observes moving from Roland Barthes to Pascal Quignard is the search for a sort of heterology of knowledge; the emphasis of an “other” discourse on knowledge or rather the spectacular display of a heterodox form for the writing of knowledge. This takes place by means of the intertwinement of both narrative and argumentative registers, as well as by the choice of a more fragmented rather than dissertational form, by a sort of openness to enunciation games but also by the incorporation of short fictional excerpts within the margins of such prose of ideas and finally by pondering the figural dimension deeply operating the writing of the theoretical text. The comparison initiated herewith between these two generations of writers has led us to put forward a genealogical approach of such “heterological” restoration of knowledge by literature. The question was outlined as follows: what does the insistence of the use by the literary of a scholar discourse literalization tell us, in its own way, concerning the very idea literature projects of itself? Underlying all the annexations of scholarly disciplines within the field of literature — indeed exclusively conducted from literature's point of view, in an almost unanimous indifference towards “science” whose emancipation no longer needs to be claimed — one asks whether there would not be a complete symbolic turnaround strategy of both the power and the figure of the literary. We do not aim at contributing to the history of literature — whose plan, often too wide, ends by essentializing the precise object it seeks to historicize — but rather to participating in the history of an idea of literature itself; and herewith, in a more strict manner, attempting to enlighten the history of the idea that recent literature has (once again) sought sovereignty within the order of discourse."},
        {'@xml:lang': 'fr',
         '$': 'De Roland Barthes à Pascal Quignard, ce que l’on observe c’est la recherche d’une hétérologie du savoir\xa0; l’accentuation d’un discours «\xa0autre\xa0» sur le savoir ou plutôt la spectacularisation d’une forme hétérodoxe de l’écriture du savoir. Cela passe par le mélange des registres narratifs et argumentatifs, par le choix d’une forme plus fragmentaire que dissertative, par l’ouverture aux jeux énonciatifs comme par l’accueil de courts passages fictionnels dans les marges de la prose d’idées, par le souci enfin de la dimension figurale qui travaille en profondeur l’écriture du texte théorique. En engageant une comparaison entre ces deux générations d’écrivains, nous avons tenté une approche généalogique de cette ressaisie «\xa0hétérologique\xa0» des savoirs par la littérature. La question a été la suivante : qu’est-ce que l’insistance de la littérarisation du discours savant par les littéraires nous dit, en retour, de l’idée que la littérature se fait d’elle-même\xa0? Derrière toutes ces annexions des disciplines savantes dans le domaine de la littérature – d’ailleurs exclusivement menées depuis la littérature, dans une indifférence quasi unanime de la «\xa0science\xa0» dont l’émancipation n’a plus à être revendiquée – n’y-a-t-il pas toute une stratégie de redressement symbolique du pouvoir et de la figure du littéraire ? Il ne s’agit pas ici d’une contribution à l’histoire de la littérature – dont le plan, souvent trop vaste, finit par essentialiser l’objet qu’elle se propose précisément d’historiciser –, mais plutôt d’une participation à l’histoire de l’idée de littérature ; et à l’intérieur de celle-ci, de façon plus resserrée encore, la tentative d’éclairer l’histoire de l’idée selon laquelle la littérature récente s’est voulue (de nouveau) souveraine dans l’ordre des discours.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '6',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
            {'@xml:lang': 'es', '$': 'saber'},
            {'@xml:lang': 'fr', '$': 'savoir'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '5',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85114855',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Roland (Legendary character)'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Roland'},
            {'@xml:lang': 'en', '$': 'Orlando (Legendary character)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh90005999',
             'prefLabel': {'@xml:lang': 'en', '$': 'Legends--France'}}}},
          {'@count': '5',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtp0yyv70YJZ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'Pascal'},
            {'@xml:lang': 'es', '$': 'Pascal (BD)'},
            {'@xml:lang': 'fr', '$': 'Pascal (BD)'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrt1GP77Af0SA|http://ark.frantiq.fr/ark:/26678/pcrt1t50zTAfPG|http://ark.frantiq.fr/ark:/26678/pcrtTnE1tPkgQy|http://ark.frantiq.fr/ark:/26678/pcrtp0yyv70YJZ',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|informática|base de datos|base de datos bibliográfica|Pascal (BD)'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|informatique|base de données|BD bibliographiques|Pascal (BD)'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtTnE1tPkgQy',
             'prefLabel': [{'@xml:lang': 'es',
               '$': 'base de datos bibliográfica'},
              {'@xml:lang': 'fr', '$': 'BD bibliographiques'},
              {'@xml:lang': 'en', '$': 'bibliographical database'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'BD bibliographique'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrt1GP77Af0SA|http://ark.frantiq.fr/ark:/26678/pcrt1t50zTAfPG|http://ark.frantiq.fr/ark:/26678/pcrtTnE1tPkgQy',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|exploitation des données|informatique|base de données|BD bibliographiques'},
               {'@xml:lang': 'es',
                '$': 'Tema|metodología|utilización de los datos|informática|base de datos|base de datos bibliográfica'}]},
             'definition': {'@xml:lang': 'fr',
              '$': 'base de données contenant des notices bibliographiques'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85129213',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Structured-objective Rorschach Test'},
           'altLabel': {'@xml:lang': 'en', '$': 'SORT'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85115396',
             'prefLabel': {'@xml:lang': 'en', '$': 'Rorschach Test'},
             'altLabel': {'@xml:lang': 'en', '$': 'Rorschach Inkblot Test'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00002752',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Emphasis'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119770391'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85148637',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Handwriting'},
            {'@xml:lang': 'en', '$': 'Chirography'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85074518',
             'prefLabel': {'@xml:lang': 'en', '$': 'Language and languages'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Foreign languages'},
              {'@xml:lang': 'en', '$': 'Languages'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11936326f'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu'},
            {'@xml:lang': 'es', '$': 'lugar'},
            {'@xml:lang': 'en', '$': 'place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw|http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space|place'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
              {'@xml:lang': 'es', '$': 'espacio'},
              {'@xml:lang': 'en', '$': 'space'}],
             'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001918',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Registers'},
           'altLabel': {'@xml:lang': 'en', '$': 'Registers, lists, etc'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85112379',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Registers'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119770798'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'pozo'},
            {'@xml:lang': 'fr', '$': 'puits'},
            {'@xml:lang': 'en', '$': 'well'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B|http://ark.frantiq.fr/ark:/26678/pcrtiS8Ollckzn',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|public works|hydraulics|well'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hidráulica'},
              {'@xml:lang': 'en', '$': 'hydraulics'},
              {'@xml:lang': 'fr', '$': 'hydraulique'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'installation hydraulique'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrtjbX1Zygs38|http://ark.frantiq.fr/ark:/26678/pcrtZig4pNZk7B',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|travaux publics|hydraulique"}},
             'definition': {'@xml:lang': 'fr',
              '$': "Science et technique qui traitent des problèmes posés par l'utilisation de l'eau (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/9290',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'well'},
            {'@xml:lang': 'es', '$': 'pozos'},
            {'@xml:lang': 'fr', '$': 'puits'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A hole dug into the earth to reach a supply of water, oil, brine or gas.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/9165',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'water distribution system'},
              {'@xml:lang': 'es', '$': 'sistema de distribución de agua'},
              {'@xml:lang': 'fr', '$': "réseau de distribution d'eau"}],
             'definition': {'@xml:lang': 'en',
              '$': 'The system of pipes supplying water to communities and industries.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001961',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Games'},
           'altLabel': {'@xml:lang': 'en', '$': 'Amusements'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85052948',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Games'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Children--Recreation'},
            {'@xml:lang': 'en', '$': 'Games for children'},
            {'@xml:lang': 'en', '$': 'Pastimes'},
            {'@xml:lang': 'en', '$': 'Primitive games'},
            {'@xml:lang': 'en', '$': 'Recreations'},
            {'@xml:lang': 'en', '$': 'Games, Primitive'},
            {'@xml:lang': 'en', '$': "Children's games"}],
           'semanticExpansion': [{'@uri': 'http://id.loc.gov/authorities/childrensSubjects/sj96005413'},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85044107',
              'prefLabel': {'@xml:lang': 'en', '$': 'Entertaining'},
              'altLabel': [{'@xml:lang': 'en',
                '$': 'House guests, Entertaining'},
               {'@xml:lang': 'en', '$': 'Houseguests, Entertaining'},
               {'@xml:lang': 'en', '$': 'Guests, Entertaining'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85101517',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Physical education and training'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Training, Physical'},
               {'@xml:lang': 'en', '$': 'Athletic training'},
               {'@xml:lang': 'en', '$': 'Education, Physical'},
               {'@xml:lang': 'en', '$': 'Sports--Training'},
               {'@xml:lang': 'en', '$': 'Sports training'},
               {'@xml:lang': 'en', '$': 'PE (Physical education)'},
               {'@xml:lang': 'en', '$': 'Phy ed'},
               {'@xml:lang': 'en', '$': 'Phys ed'},
               {'@xml:lang': 'en', '$': 'Physical training'},
               {'@xml:lang': 'en', '$': 'Physical culture'},
               {'@xml:lang': 'en', '$': 'P.E. (Physical education)'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb13318351z'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85064799',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Incorporation'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Formation of corporations'},
            {'@xml:lang': 'en', '$': 'Incorporation--Law and legislation'},
            {'@xml:lang': 'en', '$': 'Federal incorporation'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85032912',
             'prefLabel': {'@xml:lang': 'en', '$': 'Corporation law'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Trusts, Industrial--Law'},
              {'@xml:lang': 'en',
               '$': 'Trusts, Industrial--Law and legislation'},
              {'@xml:lang': 'en', '$': 'Corporate law'},
              {'@xml:lang': 'en', '$': 'Company law'},
              {'@xml:lang': 'en', '$': 'Law, Corporation'},
              {'@xml:lang': 'en', '$': 'Corporations--Law and legislation'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11978561t'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4189',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'incorporation'},
            {'@xml:lang': 'es', '$': 'incorporación'},
            {'@xml:lang': 'fr', '$': 'incorporation'}],
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/150'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001547',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Excerpts'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12215082c'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtAQcT8V4oNL',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'prosa'},
            {'@xml:lang': 'en', '$': 'prose'},
            {'@xml:lang': 'fr', '$': 'prose'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtAQcT8V4oNL',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|prose'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
              {'@xml:lang': 'fr', '$': 'genre littéraire'},
              {'@xml:lang': 'en', '$': 'literary genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002011482',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Prose'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005576',
             'prefLabel': {'@xml:lang': 'en',
              '$': 'Criticism and interpretation'},
             'altLabel': {'@xml:lang': 'en',
              '$': 'Interpretation and criticism'}}},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12050172m'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12033351h'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1632',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'comparison'},
            {'@xml:lang': 'es', '$': 'comparación'},
            {'@xml:lang': 'fr', '$': 'comparaison'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The placing together or juxtaposing of two or more items to ascertain, bring into relief, or establish their similarities and dissimilarities.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/3011',
             'prefLabel': [{'@xml:lang': 'en', '$': 'evaluation'},
              {'@xml:lang': 'es', '$': 'evaluación'},
              {'@xml:lang': 'fr', '$': 'évaluation'}]}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/6269'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrta5dQT2vNkr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'analyse comparative'},
            {'@xml:lang': 'es', '$': 'comparación'},
            {'@xml:lang': 'en', '$': 'comparison'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'comparaison'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrta5dQT2vNkr',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|exploitation des données|analyse comparative'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX',
             'prefLabel': [{'@xml:lang': 'en', '$': 'data exploitation'},
              {'@xml:lang': 'fr', '$': 'exploitation des données'},
              {'@xml:lang': 'es', '$': 'utilización de los datos'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005286',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Comparison'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11976027s'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85053818',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Generations'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85002083',
             'prefLabel': {'@xml:lang': 'en', '$': 'Age groups'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Peer groups'},
              {'@xml:lang': 'en', '$': 'Groups, Age'},
              {'@xml:lang': 'en', '$': 'Social generations'}]}},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb120096515'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85077672',
             'prefLabel': {'@xml:lang': 'en', '$': 'Litterateurs'},
             'altLabel': {'@xml:lang': 'en', '$': 'Literary life'}}},
           'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/776'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11936327s'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11966574g',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Diodes électroluminescentes'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Diodes à émission lumineuse'},
            {'@xml:lang': 'en', '$': 'LED'},
            {'@xml:lang': 'fr', '$': 'Diodes luminescentes'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12065988m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sources de lumière'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sources lumineuses'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb124691286',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Dispositifs électroluminescents'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11958096p',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Télécommunications optiques'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Communications optiques'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11958732c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Diodes à semiconducteur'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Redresseurs à cristal'},
               {'@xml:lang': 'fr', '$': 'Diodes semiconductrices'},
               {'@xml:lang': 'fr', '$': 'Diodes à cristal'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85076892',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Light emitting diodes'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'LEDs (Light emitting diodes)'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/11259',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'approach'},
            {'@xml:lang': 'es', '$': 'enfoque'},
            {'@xml:lang': 'fr', '$': 'abords (agglomération)'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The way or means of entry or access.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8841',
             'prefLabel': [{'@xml:lang': 'en', '$': 'urban settlement'},
              {'@xml:lang': 'es', '$': 'asentamientos urbanos'},
              {'@xml:lang': 'fr', '$': 'ensemble résidentiel urbain'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A collection of dwellings located in an urban area.'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7188',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'restoration'},
            {'@xml:lang': 'es', '$': 'restauración'},
            {'@xml:lang': 'fr', '$': 'restauration'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of renewing or returning something to its original, normal or unimpaired condition, particularly works of art, cultural artifacts, furniture or buildings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}}},
          {'@count': '8',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '8',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '8',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006426',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Use'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11975752p'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtx4sFxmENjb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'tell'},
            {'@xml:lang': 'es', '$': 'tell'},
            {'@xml:lang': 'fr', '$': 'tell'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'tepe'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4|http://ark.frantiq.fr/ark:/26678/pcrtx4sFxmENjb'},
           'definition': {'@xml:lang': 'fr',
            '$': "Terme arabe pour désigner une colline artificielle, résultats de l'accumulation de niveaux archéologiques. Pluriel : telûl, tulûl. En turc : tepe, hüyük."},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4',
             'prefLabel': [{'@xml:lang': 'en', '$': 'archaeological site'},
              {'@xml:lang': 'fr', '$': 'site archéologique'},
              {'@xml:lang': 'es', '$': 'yacimiento arqueológico'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9PJh9aTXv4'},
             'definition': {'@xml:lang': 'fr',
              '$': "Lieu où sont préservés des vestiges matériels d'une activité passée exercée par les hommes. (Wikipédia)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1eKrSANesO',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'vía'},
            {'@xml:lang': 'fr', '$': 'voie'},
            {'@xml:lang': 'en', '$': 'way'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'voie de communication'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrt1eKrSANesO',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|voie"},
             {'@xml:lang': 'es',
              '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|vía'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': "organisation de l'espace"},
              {'@xml:lang': 'es', '$': 'organización del espacio'},
              {'@xml:lang': 'en', '$': 'spatial organization'}],
             'altLabel': [{'@xml:lang': 'fr',
               '$': 'aménagement du territoire'},
              {'@xml:lang': 'fr', '$': 'organisation spatiale'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio'}]},
             'definition': {'@xml:lang': 'fr',
              '$': "Notion de géographie permettant de décrire la production d'un espace par une société humaine (déf. Hypergeo.eu).    On utilise ce terme lorsque l’espace est volontairement structuré par une société."}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3176',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'field'},
            {'@xml:lang': 'es', '$': 'campo'},
            {'@xml:lang': 'fr', '$': 'champ'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A limited area of land with grass or crops growing on it, which is usually surrounded by fences or closely planted bushes when it is part of a farm.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7345',
             'prefLabel': [{'@xml:lang': 'en', '$': 'rural area'},
              {'@xml:lang': 'es', '$': 'zonas rurales'},
              {'@xml:lang': 'fr', '$': 'espace rural'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Area outside the limits of any incorporated or unincorporated city, town, village, or any other designated residential or commercial area such as a subdivision, a business or shopping center, or community development.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmDqe8H6RNF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
            {'@xml:lang': 'fr', '$': 'pointe'},
            {'@xml:lang': 'es', '$': 'punta'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtxs8Kml8jLw|http://ark.frantiq.fr/ark:/26678/pcrtmDqe8H6RNF'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Terme général qui désigne tout témoin façonné de forme pointue. De façon plus limitée, partie vulnérante et conservée d’une arme composite. (Dic. préhist.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtxs8Kml8jLw',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'outil'},
              {'@xml:lang': 'en', '$': 'tool'},
              {'@xml:lang': 'es', '$': 'utensilio'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'outillage'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtxs8Kml8jLw',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|everyday life|goods and chattels|tool'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Ici sont regroupées toutes les pièces dites utilitaires, à l'exception des"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
            {'@xml:lang': 'es', '$': 'punto'},
            {'@xml:lang': 'fr', '$': 'point'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A position on a reference system determined by a survey.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
             'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
              {'@xml:lang': 'es', '$': 'parámetro'},
              {'@xml:lang': 'fr', '$': 'paramètre'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85005931',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Apathy'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Impassivity'},
            {'@xml:lang': 'en', '$': 'Indifference'},
            {'@xml:lang': 'en', '$': 'Unconcern'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11933232c'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'exactMatch': {'@uri': 'http://content.glin.gov/subjectTerm/856'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85076480',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Liberty'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Personal liberty'},
            {'@xml:lang': 'en', '$': 'Freedom'},
            {'@xml:lang': 'en', '$': 'Civil liberty'},
            {'@xml:lang': 'en', '$': 'Emancipation'},
            {'@xml:lang': 'en', '$': 'Liberation'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
              'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
               {'@xml:lang': 'en', '$': 'Government'},
               {'@xml:lang': 'en', '$': 'Political theory'},
               {'@xml:lang': 'en', '$': 'Civil government'},
               {'@xml:lang': 'en', '$': 'Commonwealth, The'},
               {'@xml:lang': 'en', '$': 'Science, Political'},
               {'@xml:lang': 'en', '$': 'Administration'},
               {'@xml:lang': 'en', '$': 'Politics'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85090244',
              'prefLabel': {'@xml:lang': 'en', '$': 'Natural law'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Nature, Law of'},
               {'@xml:lang': 'en', '$': 'Rights, Natural'},
               {'@xml:lang': 'en', '$': 'Law of nature'},
               {'@xml:lang': 'en', '$': 'Natural rights'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85036647',
              'prefLabel': {'@xml:lang': 'en', '$': 'Democracy'},
              'altLabel': {'@xml:lang': 'en', '$': 'Self-government'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11932245g'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1V0a6R9AjM',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'emancipación'},
            {'@xml:lang': 'en', '$': 'emancipation'},
            {'@xml:lang': 'fr', '$': 'émancipation'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs|http://ark.frantiq.fr/ark:/26678/pcrt1V0a6R9AjM'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs',
             'prefLabel': [{'@xml:lang': 'en', '$': 'civil law'},
              {'@xml:lang': 'es', '$': 'derecho civil'},
              {'@xml:lang': 'fr', '$': 'droit civil'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs'},
             'definition': {'@xml:lang': 'fr',
              '$': "Branche du droit privé portant sur l'état et la capacité des personnes, la famille, le patrimoine, la transmission des biens, les contrats et les obligations (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2651',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'emancipation'},
            {'@xml:lang': 'es', '$': 'emancipación'},
            {'@xml:lang': 'fr', '$': 'émancipation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The state of being free from social or political restraint or from the inhibition of moral or social conventions.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7811',
             'prefLabel': [{'@xml:lang': 'en', '$': 'social process'},
              {'@xml:lang': 'es', '$': 'procesos sociales'},
              {'@xml:lang': 'fr', '$': 'processus sociaux'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A continuous action, operation, or series of changes taking place in a definite manner and pertaining to the life, welfare, and relations of human beings in a community.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/719'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85128514',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Strategy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Military strategy'},
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85085132',
             'prefLabel': {'@xml:lang': 'en', '$': 'Military art and science'},
             'altLabel': [{'@xml:lang': 'en', '$': 'Military power'},
              {'@xml:lang': 'en', '$': 'Warfare, Primitive'},
              {'@xml:lang': 'en', '$': 'Warfare'},
              {'@xml:lang': 'en', '$': 'Military science'},
              {'@xml:lang': 'en', '$': 'Fighting'}]}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'estrategia'},
            {'@xml:lang': 'fr', '$': 'stratégie'},
            {'@xml:lang': 'en', '$': 'strategy'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'stratégie défensive'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz|http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Partie  de l’art militaire qui consiste à organiser, à coordonner et à disposer les forces armées sur un théâtre d’opérations. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'arte militar'},
              {'@xml:lang': 'fr', '$': 'art militaire'},
              {'@xml:lang': 'en', '$': 'warfare'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz'},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des connaissances qui se rapportent à la constitution et à l'emploi des forces armées ou, plus généralement, au métier des armes (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'poder'},
            {'@xml:lang': 'fr', '$': 'pouvoir'},
            {'@xml:lang': 'en', '$': 'power'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'pouvoir (concept de)'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Faculté de faire (Lar.). - Pour le pouvoir politique, exécutif, législatif se reporter à ces locutions.'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'figure'},
            {'@xml:lang': 'es', '$': 'personaje'},
            {'@xml:lang': 'fr', '$': 'personnage'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Terme à compléter par les PACTOLS Anthroponymes'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr',
             'prefLabel': [{'@xml:lang': 'es', '$': 'iconografía'},
              {'@xml:lang': 'fr', '$': 'iconographie'},
              {'@xml:lang': 'en', '$': 'iconography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Etude descriptive des différentes représentations figurées (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfRVY9GvkEV',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire littéraire'},
            {'@xml:lang': 'es', '$': 'historia literaria'},
            {'@xml:lang': 'en', '$': 'history of literature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I|http://ark.frantiq.fr/ark:/26678/pcrtsK3dq3EEN9|http://ark.frantiq.fr/ark:/26678/pcrtfRVY9GvkEV',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|histoire-civilisation|histoire|histoire transculturelle|histoire littéraire'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Consulter aussi le PACTOLS Oeuvres'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtsK3dq3EEN9',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'histoire transculturelle'},
              {'@xml:lang': 'es', '$': 'historia transcultural'},
              {'@xml:lang': 'en', '$': 'transcultural history'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I|http://ark.frantiq.fr/ark:/26678/pcrtsK3dq3EEN9',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|histoire-civilisation|histoire|histoire transculturelle'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Pour une branche de l'histoire rattachée à une période voir les PACTOLS Chronologie"}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
            {'@xml:lang': 'fr', '$': 'plan'},
            {'@xml:lang': 'es', '$': 'plano'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB|http://ark.frantiq.fr/ark:/26678/pcrtSKri8bFtmn'}],
           'definition': {'@xml:lang': 'fr',
            '$': "Forme au sol d'un bâtiment ou d'une ville (Rob.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB',
             'prefLabel': [{'@xml:lang': 'en', '$': 'floor'},
              {'@xml:lang': 'fr', '$': 'sol'},
              {'@xml:lang': 'es', '$': 'suelo'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV|http://ark.frantiq.fr/ark:/26678/pcrtDpSNLz1mSr|http://ark.frantiq.fr/ark:/26678/pcrthQAINOX0GB'}],
             'definition': {'@xml:lang': 'fr',
              '$': 'Surface de la terre où l’on se tient, où l’on marche, sur laquelle on construit, etc. (Wiktionnaire)'}}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6279',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'plan'},
            {'@xml:lang': 'es', '$': 'plan'},
            {'@xml:lang': 'fr', '$': 'plan'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A scheme of action, a method of proceeding thought out in advance.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2889',
             'prefLabel': [{'@xml:lang': 'en', '$': 'environmental planning'},
              {'@xml:lang': 'es', '$': 'planificación ambiental'},
              {'@xml:lang': 'fr', '$': 'planification écologique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The identification of desirable objectives for the physical environment, including social and economic objectives, and the creation of administrative procedures and programmes to meet those objectives.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/7379'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
            {'@xml:lang': 'fr', '$': 'objet'},
            {'@xml:lang': 'es', '$': 'objeto'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
            {'@xml:lang': 'fr', '$': 'petit objet'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|object'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85061212',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'History'},
           'altLabel': {'@xml:lang': 'en', '$': 'Annals'},
           'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/2336'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119344445'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/5339'}]},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'en', '$': 'history'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|histoire-civilisation|histoire'}},
           'definition': {'@xml:lang': 'fr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
              {'@xml:lang': 'es', '$': 'historia-civilización'},
              {'@xml:lang': 'en', '$': 'history-civilization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
             'definition': {'@xml:lang': 'fr',
              '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3983',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'history'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'fr', '$': 'histoire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3635'},
            {'@uri': 'http://eurovoc.europa.eu/1245'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005024',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'History'},
           'altLabel': {'@xml:lang': 'en', '$': 'Frontier troubles'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85125696',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Sovereignty'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Sovereignty--Law and legislation'},
            {'@xml:lang': 'en',
             '$': 'State sovereignty (International relations)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85104440',
              'prefLabel': {'@xml:lang': 'en', '$': 'Political science'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Political thought'},
               {'@xml:lang': 'en', '$': 'Government'},
               {'@xml:lang': 'en', '$': 'Political theory'},
               {'@xml:lang': 'en', '$': 'Civil government'},
               {'@xml:lang': 'en', '$': 'Commonwealth, The'},
               {'@xml:lang': 'en', '$': 'Science, Political'},
               {'@xml:lang': 'en', '$': 'Administration'},
               {'@xml:lang': 'en', '$': 'Politics'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85067417',
              'prefLabel': {'@xml:lang': 'en', '$': 'International law'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Law of nations'},
               {'@xml:lang': 'en', '$': 'Nations, Law of'},
               {'@xml:lang': 'en', '$': 'Public international law'}]}}],
           'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/460'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12653284n'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdPLB7OqASn',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'soberanía'},
            {'@xml:lang': 'fr', '$': 'souveraineté'},
            {'@xml:lang': 'en', '$': 'sovereignty'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtgAdAwAPL65|http://ark.frantiq.fr/ark:/26678/pcrtdPLB7OqASn'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgAdAwAPL65',
             'prefLabel': [{'@xml:lang': 'es', '$': 'noción política'},
              {'@xml:lang': 'fr', '$': 'notion politique'},
              {'@xml:lang': 'en', '$': 'political notion'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'politique notion'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtgAdAwAPL65'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85095351',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Order'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/11494',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'order'},
            {'@xml:lang': 'es', '$': 'orden'},
            {'@xml:lang': 'fr', '$': 'ordre'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) A direction or command of a court. In this sense it is often used synonymously with judgment.  2) The document bearing the seal of the court recording its judgment in a case.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/11499',
             'prefLabel': [{'@xml:lang': 'en', '$': 'law (corpus of rules)'},
              {'@xml:lang': 'es', '$': 'ley (recopilación de normas)'},
              {'@xml:lang': 'fr', '$': 'droit (corpus de lois)'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A body of rules of action or conduct prescribed by controlling authority, and having binding legal force.'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002075',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Accents and accentuation'},
           'altLabel': {'@xml:lang': 'en', '$': 'Accentuation'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85033571',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Courts'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Courts--Law and legislation'},
            {'@xml:lang': 'en', '$': 'Judiciary'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85038478',
              'prefLabel': {'@xml:lang': 'en',
               '$': 'Dispute resolution (Law)'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Collaborative law'},
               {'@xml:lang': 'en', '$': 'Alternative dispute resolution'},
               {'@xml:lang': 'en', '$': 'Dispute settlement'},
               {'@xml:lang': 'en', '$': 'ADR (Dispute resolution)'},
               {'@xml:lang': 'en', '$': 'Conflict resolution'},
               {'@xml:lang': 'en', '$': 'Dispute processing'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85107127',
              'prefLabel': {'@xml:lang': 'en', '$': 'Procedure (Law)'},
              'altLabel': [{'@xml:lang': 'en',
                '$': 'Practice (Legal procedure)'},
               {'@xml:lang': 'en', '$': 'Law--Procedure'},
               {'@xml:lang': 'en', '$': 'Legal procedure'},
               {'@xml:lang': 'en', '$': 'Procedural law'},
               {'@xml:lang': 'en', '$': 'Law--Practice'},
               {'@xml:lang': 'en', '$': 'Adjective law'}]}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85070945',
              'prefLabel': {'@xml:lang': 'en', '$': 'Judicial districts'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85075119',
              'prefLabel': {'@xml:lang': 'en', '$': 'Law'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Legislative acts'},
               {'@xml:lang': 'en', '$': 'Legislative enactments'},
               {'@xml:lang': 'en', '$': 'Acts, Legislative'},
               {'@xml:lang': 'en', '$': 'Enactments, Legislative'},
               {'@xml:lang': 'en', '$': 'Laws (Statutes)'}]}}],
           'exactMatch': [{'@uri': 'http://content.glin.gov/subjectTerm/123'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/68836'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85098355',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Participation'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005065',
              'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
              'altLabel': {'@xml:lang': 'en', '$': 'Knowledge--Philosophy'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85100849',
              'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
              'altLabel': {'@xml:lang': 'en', '$': 'Mental philosophy'}}}],
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119788620'},
            {'@uri': 'http://lod.nal.usda.gov/nalt/27911'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6051',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'participation'},
            {'@xml:lang': 'es', '$': 'participación'},
            {'@xml:lang': 'fr', '$': 'participation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The act of sharing or taking part in a civic, community or public action.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6785',
             'prefLabel': [{'@xml:lang': 'en', '$': 'public action'},
              {'@xml:lang': 'es', '$': 'acción pública'},
              {'@xml:lang': 'fr', '$': 'action publique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A measure or provision taken on behalf and with the consent of the general populace.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37602'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85124003',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social sciences'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Social science'},
            {'@xml:lang': 'en', '$': 'Sciences, Social'},
            {'@xml:lang': 'en', '$': 'Human sciences'},
            {'@xml:lang': 'en', '$': 'Social studies'},
            {'@xml:lang': 'en', '$': 'Behavioral sciences'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh99005029',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': {'@xml:lang': 'en', '$': 'Culture (Civilization)'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85026423',
              'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
              'altLabel': [{'@xml:lang': 'en', '$': 'Civilisation'},
               {'@xml:lang': 'en', '$': 'Barbarism'}]}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb133183827'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias humanas'},
            {'@xml:lang': 'fr', '$': 'sciences humaines'},
            {'@xml:lang': 'en', '$': 'social sciences'}],
           'altLabel': [{'@xml:lang': 'en', '$': 'human sciences'},
            {'@xml:lang': 'fr', '$': "science de l'homme"}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'méthodologie'},
              {'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH'},
             'definition': {'@xml:lang': 'fr',
              '$': "Toutes les méthodes d'approches de l'Antiquité ainsi que l'organisation de la recherche (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ensayo'},
            {'@xml:lang': 'fr', '$': 'essai'},
            {'@xml:lang': 'en', '$': 'essay'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85044913',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Essay'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Sketch, Literary'},
            {'@xml:lang': 'en', '$': 'Literary sketch'}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119489979'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
            {'@xml:lang': 'en', '$': 'Novels'},
            {'@xml:lang': 'en', '$': 'Stories'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85048050',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Novels'},
            {'@xml:lang': 'en', '$': 'Novellas (Short novels)'},
            {'@xml:lang': 'en', '$': 'Fiction--Philosophy'},
            {'@xml:lang': 'en', '$': 'Metafiction'},
            {'@xml:lang': 'en', '$': 'Stories'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
             'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
             'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
              {'@xml:lang': 'en',
               '$': 'Western literature (Western countries)'},
              {'@xml:lang': 'en', '$': 'Belles-lettres'}]}},
           'exactMatch': [{'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11977787t'},
            {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb11940505s'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.8mvm31',
      'isidore': {'title': 'Eyeing the ear : Roland Barthes and the song lyric',
       'url': 'https://escholarship.mcgill.ca/concern/theses/db78tf00r',
       'enrichedCreators': {'creator': {'@origin': 'Burnett, Maija.',
         '@normalizedAuthor': 'Burnett, Maija.',
         '@idAuthor': 'burnett_maija',
         'firstname': 'Maija.',
         'lastname': 'Burnett',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '1997',
        '@startDate': '1997-01-01',
        '@endDate': '1997-12-31',
        '@treeDate': '1900/1990/1997',
        'normalizedDate': '1997-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1900'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1990'},
        'years': {'@start': '1950', '@end': '2030', 'year': '1997'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '21826445',
         '$': 'https://escholarship.mcgill.ca/concern/theses/db78tf00r'}},
       'subjects': {'subject': ["Barthes, Roland. Obvie et l'obtus.",
         'Barthes, Roland -- Criticism and interpretation.']},
       'relations': {'relation': ['Proquest: MQ37195', 'Pid: 27935']},
       'types': {'type': 'Thesis'},
       'source_info': {'collectionLabel': {'@shortLabel': 'eScholarship McGill',
         '@handle': '10670/3.ihy5vc',
         '@collectionUuid': '5df0adf5-0a82-bf62-5d89-2b9021cbd38b',
         '$': 'eScholarship McGill'},
        'collectionOrganization': {'@organizationUrl': 'https://www.mcgill.ca',
         '$': 'McGill University'},
        'collectionURLMainSite': {'@thumbnaiId': '21159251',
         '$': 'https://www.mcgill.ca/library/find/escholarship'},
        'collectionInformations': {'collectionDescription': 'eScholarship McGill is a digital repository which stores and showcases the publications and theses of McGill University faculty, researchers, and students. The repository exists in an online, open-access environment, making it easy for researchers all over the world to find and access the University’s published research output.',
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'elizabeth.thomson@mcgill.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.ihy5vc|10670/2.5vz7k0',
         '$': 'eScholarship McGill#eScholarship@McGill'},
        'sourceCode': {'@handle': '10670/2.5vz7k0',
         '$': 'ac551bf1-04ce-3a93-365a-77eb414c03e5'},
        'sourceName': {'@shortLabel': 'eScholarship@McGill',
         '$': 'eScholarship@McGill: Discover theses, dissertations, articles, and more'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '21752663',
         '$': 'https://escholarship.mcgill.ca'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://escholarship.mcgill.ca',
         '$': 'eScholarship@McGill is a digital repository, which collects, preserves, and showcases the publications, scholarly works, and theses of McGill University faculty members, researchers, and students.'},
        'sourceOrganization': {'label': 'McGill Library',
         'URI': 'https://www.mcgill.ca/library',
         'isoCountry': 'CA',
         'contactEmailAddress': 'dev.library@mcgill.ca'},
        'sourceParameters': {'baseUrl': 'https://escholarship.mcgill.ca/catalog/oai',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG'}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85040383',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en', '$': 'Ear'},
           'altLabel': {'@xml:lang': 'en', '$': 'Auditory system'},
           'semanticExpansion': [{'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85059468',
              'prefLabel': {'@xml:lang': 'en', '$': 'Head'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh2001008783',
              'prefLabel': {'@xml:lang': 'en', '$': 'Sense organs'}}},
            {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh85120042',
              'prefLabel': {'@xml:lang': 'en', '$': 'Sense organs'}}}],
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb119755257'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85114855',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Roland (Legendary character)'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Roland'},
            {'@xml:lang': 'en', '$': 'Orlando (Legendary character)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://id.loc.gov/authorities/subjects/sh90005999',
             'prefLabel': {'@xml:lang': 'en', '$': 'Legends--France'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt9DYVNkLAon',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'canción'},
            {'@xml:lang': 'fr', '$': 'chanson'},
            {'@xml:lang': 'en', '$': 'song'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrt9DYVNkLAon',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|chanson'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Pièce de vers de ton populaire (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
              {'@xml:lang': 'fr', '$': 'genre littéraire'},
              {'@xml:lang': 'en', '$': 'literary genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005576',
           'inScheme': 'http://id.loc.gov/authorities/subjects',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Criticism and interpretation'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Interpretation and criticism'},
           'exactMatch': {'@uri': 'http://stitch.cs.vu.nl/vocabularies/rameau/ark:/12148/cb12042895g'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': [{'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Littératures"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Literature'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
               'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
                {'@xml:lang': 'en', '$': 'Literature'},
                {'@xml:lang': 'fr', '$': 'Littératures'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Literature'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Littératures'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Literature'}]},
           {'@proba': '0.999',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.langue',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
             {'@xml:lang': 'fr', '$': 'Linguistique'},
             {'@xml:lang': 'es', '$': 'Lingüística'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.langue',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Linguistique"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Linguistics'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Lingüística'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie268',
               'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
                {'@xml:lang': 'fr', '$': 'Linguistique'},
                {'@xml:lang': 'es', '$': 'Lingüística'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie268',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Lingüística'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Linguistics'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Linguistique'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Linguistics'}]}]},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': [{'@proba': '0.999',
            '@uri': 'http://calenda.org/categories.rdf#categorie268',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Linguistics'},
             {'@xml:lang': 'fr', '$': 'Linguistique'},
             {'@xml:lang': 'es', '$': 'Lingüística'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie268',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Lingüística'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Linguistics'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Linguistique'}]}},
           {'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie269',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Literature'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Littératures'}]}}]}]},
       'dc:language': 'http://id.loc.gov/vocabulary/iso639-2/eng',
       'dc:rights': 'All items in eScholarship@McGill are protected by copyright with all rights reserved unless otherwise indicated.'}},
     {'@uri': '2858',
      'isidore': {'title': 'La friction du livre: Roland Barthes en Amerique du Nord',
       'url': 'http://hdl.handle.net/1828/2858',
       'enrichedCreators': {'creator': {'@origin': 'Kyle, Michael',
         '@normalizedAuthor': 'Kyle, Michael',
         '@idAuthor': 'kyle_michael',
         'firstname': 'Michael',
         'lastname': 'Kyle',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2010-06-14T22:16:51Z',
        '@startDate': '2010-06-14',
        '@endDate': '2010-06-14',
        '@treeDate': '2000/2010/2010',
        'normalizedDate': '2010-06-14',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2010'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '24032461',
         '$': 'http://hdl.handle.net/1828/2858'}},
       'subjects': {'subject': ['Editions',
         'Translations',
         'Criticism and interpretation',
         'North America',
         'UVic Subject Index::Humanities and Social Sciences::Literature::French literature']},
       'abstract': 'The reception of the works written by Roland Barthes in North America can be appreciated by examining editions, rééditions, collections of papers, commentaries and critical approaches. The thesis presents a bibliography of editions and translations in the United States and Canada. It provides an analysis of the portrait drawn by selection and interpretation of the foremost French critic, dead in 1980.',
       'types': {'type': 'Thesis'},
       'source_info': {'collectionLabel': {'@shortLabel': 'University of Victoria',
         '@handle': '10670/3.vrw0xa',
         '@collectionUuid': 'da0676cd-594e-a80b-a684-e728b087bb8d',
         '$': 'University of Victoria'},
        'collectionOrganization': 'University of Victoria',
        'collectionURLMainSite': {'@thumbnaiId': '23505279',
         '$': 'https://www.uvic.ca'},
        'collectionInformations': {'collectionDescription': 'UVicSpace is an open access learning and research repository for published and unpublished digital scholarly works by the UVic community and its partners.',
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'bsheaff@uvic.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'http://hdl.handle.net/1828/(.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.vrw0xa|10670/2.d1ft2b',
         '$': 'University of Victoria#UVic’s Research and Learning Repository'},
        'sourceCode': {'@handle': '10670/2.d1ft2b',
         '$': '86183923-ae75-b12d-e2b6-376a99318b0e'},
        'sourceName': {'@shortLabel': 'UVic’s Research and Learning Repository',
         '$': 'UVic’s Research and Learning Repository'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '23505278',
         '$': 'https://dspace.library.uvic.ca'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://dspace.library.uvic.ca',
         '$': 'UVicSpace is an open access learning and research repository for published and unpublished digital scholarly works by the UVic community and its partners.'},
        'sourceOrganization': {'label': 'University of Victoria',
         'URI': 'https://dspace.library.uvic.ca',
         'isoCountry': 'CA',
         'contactEmailAddress': 'bsheaff@uvic.ca'},
        'sourceParameters': {'baseUrl': 'http://dspace.library.uvic.ca:8080/oai/request',
         'crawlingFrequency': '14400',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': [{'@uri': 'http://lexvo.org/id/iso639-3/eng',
            'prefLabel': [{'@xml:lang': 'en', '$': 'English'},
             {'@xml:lang': 'fr', '$': 'Anglais'},
             {'@xml:lang': 'es', '$': 'Idioma inglés'}]},
           {'@uri': 'http://lexvo.org/id/iso639-3/fra',
            'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
             {'@xml:lang': 'fr', '$': 'Français'},
             {'@xml:lang': 'es', '$': 'Idioma francés'}]}]}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11941523z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Frottement'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Friction'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932446c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mécanique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Mécanique des systèmes discrets'},
                {'@xml:lang': 'fr', '$': 'Mécanique du point matériel'},
                {'@xml:lang': 'fr', '$': 'Mécanique du point'},
                {'@xml:lang': 'fr', '$': 'Mécanique des solides déformables'},
                {'@xml:lang': 'fr', '$': 'Mécanique des solides'},
                {'@xml:lang': 'fr', '$': 'Mécanique du solide'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb131626829',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Machines'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Machinerie'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85051971',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Friction'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX531877',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Fricción'},
            'label': {'@xml:lang': 'es', '$': 'Fricción'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Frotamiento'},
             {'@xml:lang': 'es', '$': 'Rozamiento'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
             {'@xml:lang': 'es', '$': 'libro'},
             {'@xml:lang': 'fr', '$': 'livre'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
               {'@xml:lang': 'fr', '$': 'objet'},
               {'@xml:lang': 'es', '$': 'objeto'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
               {'@xml:lang': 'fr', '$': 'petit objet'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|object'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/959',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
             {'@xml:lang': 'es', '$': 'libro'},
             {'@xml:lang': 'fr', '$': 'livre'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A collection of leaves of paper, parchment or other material, usually bound or fastened together within covers, containing writing of any type or blank pages for future inscription.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
              'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
               {'@xml:lang': 'es', '$': 'tipo de documento'},
               {'@xml:lang': 'fr', '$': 'type de document'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1392'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
             {'@xml:lang': 'fr', '$': 'Livre'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
                {'@xml:lang': 'fr', '$': 'Publications imprimées'},
                {'@xml:lang': 'fr', '$': 'Écrits publiés'},
                {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12301531v',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Documentation de bibliothèque'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Documents primaires'},
                {'@xml:lang': 'fr', '$': 'Documents de bibliothèques'},
                {'@xml:lang': 'fr', '$': 'Ressources documentaires'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576243',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Libros'},
            'label': {'@xml:lang': 'es', '$': 'Libros'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85015738',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Books'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb123228482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Nord (point cardinal)'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Nord'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12322811q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Points cardinaux'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Rose des vents'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092449',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'North (The word)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11935925h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Réimpressions'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Reproductions anastatiques'},
             {'@xml:lang': 'fr', '$': 'Rééditions'},
             {'@xml:lang': 'fr', '$': 'Éditions réimprimées'},
             {'@xml:lang': 'fr', '$': 'Reprints'},
             {'@xml:lang': 'fr', '$': 'Tirages spéciaux (imprimés)'},
             {'@xml:lang': 'fr', '$': 'Nouveaux tirages'},
             {'@xml:lang': 'fr', '$': 'Retirages (imprimés)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318593f',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Édition'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Politique éditoriale'},
               {'@xml:lang': 'fr', '$': 'Processus éditorial'},
               {'@xml:lang': 'fr', '$': "Maisons d'édition"},
               {'@xml:lang': 'fr', '$': 'Publication'},
               {'@xml:lang': 'fr', '$': 'Diffusion (édition)'},
               {'@xml:lang': 'fr', '$': 'Activité éditoriale'},
               {'@xml:lang': 'fr', '$': 'Mise en forme (édition)'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85112950',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reprints (Publications)'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Bibliography--Reprint editions'},
             {'@xml:lang': 'en', '$': 'Reprint editions'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX530676',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Reimpresiones'},
            'label': {'@xml:lang': 'es', '$': 'Reimpresiones'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976812z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collections'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330898'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85028263',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Collectors and collecting'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Collection and preservation'},
             {'@xml:lang': 'en', '$': 'Collecting'},
             {'@xml:lang': 'en',
              '$': 'Collectibles--Collectors and collecting'}]},
           {'@count': '1',
            '@uri': 'http://GeoEthno#CANADA',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Canada'},
             {'@xml:lang': 'es', '$': 'Canadá'},
             {'@xml:lang': 'en', '$': 'Canada'}],
            'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_DU_NORD|http://GeoEthno#CANADA',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Amérique|Amérique du Nord|Canada'},
              {'@xml:lang': 'es', '$': 'América|América del Norte|Canadá'},
              {'@xml:lang': 'en', '$': 'America|Northern America|Canada'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#AMERIQUE_DU_NORD',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Amérique du Nord'},
               {'@xml:lang': 'es', '$': 'América del Norte'},
               {'@xml:lang': 'en', '$': 'Northern America'}],
              'altLabel': [{'@xml:lang': 'es', '$': 'Norteamérica'},
               {'@xml:lang': 'fr', '$': 'Amérique septentrionale'}],
              'expanded': {'@uri': 'http://GeoEthno#AMERIQUE|http://GeoEthno#AMERIQUE_DU_NORD',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Amérique|Amérique du Nord'},
                {'@xml:lang': 'es', '$': 'América|América del Norte'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtweM71fK5x5',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'portrait'},
             {'@xml:lang': 'fr', '$': 'portrait'},
             {'@xml:lang': 'es', '$': 'retrato'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b|http://ark.frantiq.fr/ark:/26678/pcrtNhnjG2q60n|http://ark.frantiq.fr/ark:/26678/pcrtZKVsvkIvmO|http://ark.frantiq.fr/ark:/26678/pcrtweM71fK5x5',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|iconographie|personnage|représentation humaine|représentation de partie humaine|portrait'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Représentation du visage d'une personne (Rob.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZKVsvkIvmO',
              'prefLabel': [{'@xml:lang': 'es',
                '$': 'representación de parte humana'},
               {'@xml:lang': 'fr', '$': 'représentation de partie humaine'},
               {'@xml:lang': 'en', '$': 'representation of body parts'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtEZOkS3ET8b|http://ark.frantiq.fr/ark:/26678/pcrtNhnjG2q60n|http://ark.frantiq.fr/ark:/26678/pcrtZKVsvkIvmO',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|iconography|figure|representation of human figures|representation of body parts'}}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': [{'@count': '1',
            '@uri': 'http://sws.geonames.org/2990129/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['North',
             {'@xml:lang': 'fr', '$': 'Département du Nord'},
             {'@xml:lang': 'fr', '$': 'Nord'},
             {'@xml:lang': 'en', '$': 'North'},
             {'@xml:lang': 'es', '$': 'Norte'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'Département du Nord'},
             {'@xml:lang': 'fr', '$': 'Nord'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2990119/|http://sws.geonames.org/2990129/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Norte Paso de Calais|Norte'},
              {'@xml:lang': 'fr',
               '$': 'Europe|France|Nord-Pas-de-Calais|Département du Nord'},
              {'@xml:lang': 'en',
               '$': 'Europe|France|Nord-Pas-de-Calais|North'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'Europa|Francia|Norte Paso de Calais'},
              {'@xml:lang': 'fr', '$': 'Europe|France|Nord-Pas-de-Calais'},
              {'@xml:lang': 'en', '$': 'Europe|France|Nord-Pas-de-Calais'}]},
            'latitude': '50.33333',
            'longitude': '3.66667',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/2990119/',
              'prefLabel': ['Nord-Pas-de-Calais',
               {'@xml:lang': 'fr', '$': 'Nord-Pas-de-Calais'},
               {'@xml:lang': 'en', '$': 'Nord-Pas-de-Calais'},
               {'@xml:lang': 'es', '$': 'Norte Paso de Calais'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Nord-Pas-de-Calais'},
              'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/|http://sws.geonames.org/2990119/',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Norte Paso de Calais'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Nord-Pas-de-Calais'},
                {'@xml:lang': 'en', '$': 'Europe|France|Nord-Pas-de-Calais'}],
               'expandedCountry': [{'@xml:lang': 'es',
                 '$': 'Europa|Francia|Nord-Pas-de-Calais'},
                {'@xml:lang': 'fr', '$': 'Europe|France|Nord-Pas-de-Calais'},
                {'@xml:lang': 'en', '$': 'Europe|France|Nord-Pas-de-Calais'}]},
              'latitude': '50.5',
              'longitude': '2.5',
              'exactMatch': []}},
            'exactMatch': []},
           {'@count': '2',
            '@uri': 'http://sws.geonames.org/6255149/',
            'prefLabel': ['North America',
             {'@xml:lang': 'en', '$': 'North America'},
             {'@xml:lang': 'es', '$': 'América del Norte'},
             {'@xml:lang': 'fr', '$': 'Amérique du Nord'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Nord'},
            'latitude': '46.07323',
            'longitude': '-100.54688'},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/6252001/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['United States',
             {'@xml:lang': 'fr', '$': 'États-Unis'},
             {'@xml:lang': 'en', '$': 'United States'},
             {'@xml:lang': 'es', '$': 'Estados Unidos'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'USA'},
             {'@xml:lang': 'fr', '$': 'États-Unis'}],
            'expanded': {'@uri': 'http://sws.geonames.org/6255149/|http://sws.geonames.org/6252001/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'América del Norte|Estados Unidos'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|États-Unis'},
              {'@xml:lang': 'en', '$': 'North America|United States'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'América del Norte|United States'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|United States'},
              {'@xml:lang': 'en', '$': 'North America|United States'}]},
            'latitude': '39.76',
            'longitude': '-98.5',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255149/',
              'prefLabel': ['North America',
               {'@xml:lang': 'en', '$': 'North America'},
               {'@xml:lang': 'es', '$': 'América del Norte'},
               {'@xml:lang': 'fr', '$': 'Amérique du Nord'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Nord'},
              'latitude': '46.07323',
              'longitude': '-100.54688'}},
            'exactMatch': []},
           {'@count': '1',
            '@uri': 'http://sws.geonames.org/6251999/',
            'inScheme': 'http://sws.geonames.org',
            'prefLabel': ['Canada',
             {'@xml:lang': 'es', '$': 'Canadá'},
             {'@xml:lang': 'en', '$': 'Canada'},
             {'@xml:lang': 'fr', '$': 'Canada'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'Canada'},
            'expanded': {'@uri': 'http://sws.geonames.org/6255149/|http://sws.geonames.org/6251999/',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'América del Norte|Canadá'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Canada'},
              {'@xml:lang': 'en', '$': 'North America|Canada'}],
             'expandedCountry': [{'@xml:lang': 'es',
               '$': 'América del Norte|Canada'},
              {'@xml:lang': 'fr', '$': 'Amérique du Nord|Canada'},
              {'@xml:lang': 'en', '$': 'North America|Canada'}]},
            'latitude': '60.10867',
            'longitude': '-113.64258',
            'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255149/',
              'prefLabel': ['North America',
               {'@xml:lang': 'en', '$': 'North America'},
               {'@xml:lang': 'es', '$': 'América del Norte'},
               {'@xml:lang': 'fr', '$': 'Amérique du Nord'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'Amérique du Nord'},
              'latitude': '46.07323',
              'longitude': '-100.54688'}}}]}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': ['English', 'fr'],
       'dc:rights': 'Available to the World Wide Web'}},
     {'@uri': '10670/1.4pz76f',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': 'L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes'},
       'url': 'http://www.theses.fr/2017PA080104/document',
       'enrichedCreators': {'creator': {'@origin': 'Procopio de Araujo Ferraz, Paulo',
         '@normalizedAuthor': 'Procopio de Araujo Ferraz, Paulo',
         '@idAuthor': 'procopio_de_araujo_ferraz_paulo',
         'firstname': 'Paulo',
         'lastname': 'Procopio de Araujo Ferraz',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2017-06-29',
        '@startDate': '2017-06-29',
        '@endDate': '2017-06-29',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-06-29',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '19789417',
         '$': 'http://www.theses.fr/2017PA080104/document'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Imaginaire'},
         {'@xml:lang': 'fr', '$': 'Geste'},
         {'@xml:lang': 'fr', '$': 'Figure'},
         {'@xml:lang': 'fr', '$': 'Critique'},
         {'@xml:lang': 'fr', '$': 'Jean Racine'},
         {'@xml:lang': 'fr', '$': 'Charles Mauron'},
         {'@xml:lang': 'fr', '$': 'Lucien goldmann'},
         {'@xml:lang': 'fr', '$': 'Robert Barthes'},
         []]},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'Dans la critique littéraire française des années 1950-1960, certains éléments apparaissent comme des évidences. Malgré les différences des méthodes, une idée sous-tendait toutes les lectures : il y aurait, dans les textes, des significations cachées qu’une interprétation devrait révéler. Dans les travaux des trois auteurs étudiés (Charles Mauron, Lucien Goldmann et Roland Barthes), on peut repérer des images qui traversent leurs œuvres et qui sont liées à leurs conceptions de l’objet littéraire. Or, ce qui est intéressant dans leur critique, c’est qu’il est impossible de trouver des éléments qui décrivent les textes qui ne soient imaginaires : en suivant le fil des interprétations de ces auteurs, il n’y a pas de moment où l’image cesse d’agir, comme si le propre du texte se dérobait à chaque fois sous le travestissement d’une autre image.Ces images montrent que la critique littéraire de l’époque étudiée accomplissait deux gestes, proches de deux figures de langage. La tautologie est ce qui ne réussit à établir un rapport de l’objet qu’avec lui-même. Le paradoxe fait le mouvement contraire, puisqu’il repose sur l’idée que les différences doivent être authentiques.Or, ce que l’imaginaire des auteurs donne à voir, c’est une certaine notion de la littérature. Leurs images témoignent de la construction de la littérature comme une pratique discursive marginale : ce qui intéresse les auteurs, c’est de voir ces textes comme un acte de résistance, capable d’utiliser un langage qui défie les usages « normaux » de la langue. Mais, paradoxalement, ils tendent à naturaliser cette position marginale et légitimer la place centrale occupée par les sciences et par la philosophie.'},
        {'@xml:lang': 'en',
         '$': 'In French literary critique of the years 1950-1960, certain elements were seen as evidences. Despite the differences between the methods the authors used, one idea was always present: for them, the texts concealed hidden meanings that their analyses were meant to reveal. In the works of the three authors we chose to study (Charles Mauron, Lucien Goldmann and Roland Barthes), it is possible to find images that are related to a certain conception of literature. It is interesting to note that in their methods, it is impossible to find definitions of the text that are not touched by an imaginary activity. Reading the authors, we realise that images are everywhere, as if the text itself constantly eluded the analysis.The images show that the literary critique of the time performed two different gestures, that correspond to two figures of speech. Tautology is the figure that establishes that an object can only be defined by itself. Paradox does the exact opposite, stating that only in difference can we find its identity.By analysing the authors’ imaginary, one can reconstruct a certain idea of literature. Their images show literature as a marginal discourse: their interest in literary texts lies in the fact that they can resist the “normal” usage of language. But, paradoxically, this way of looking at them tends to naturalise their marginal position and thus legitimate the privilege accorded to science and philosophy as the standard form of expression.'}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Imaginaire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Rêve'},
            {'@xml:lang': 'fr', '$': 'Espace Imaginaire'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Imaginaire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Psychologie'}}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'imaginaire'},
            {'@xml:lang': 'es', '$': 'imaginario'},
            {'@xml:lang': 'en', '$': 'imaginings'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361722',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique littéraire'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16675880c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie littéraire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vie culturelle'},
               {'@xml:lang': 'fr', '$': 'Gens de lettres'}]}}]},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX526725',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'label': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis literario'},
            {'@xml:lang': 'es', '$': 'Crítica de la literatura'},
            {'@xml:lang': 'es', '$': 'Literatura--Crítica'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4852',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature evaluation'},
            {'@xml:lang': 'es', '$': 'evaluación de documentación'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
             'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica literaria'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'},
            {'@xml:lang': 'en', '$': 'literary criticism'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'critique de texte'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
            {'@xml:lang': 'es', '$': 'años'},
            {'@xml:lang': 'en', '$': 'years'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
              {'@xml:lang': 'en', '$': 'division of time'},
              {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
          {'@count': '8',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119409512',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Illustrations, images, etc.'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Images'},
            {'@xml:lang': 'fr', '$': 'Documents iconographiques'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931755x',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication visuelle'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': "Image, Communication par l'"},
              {'@xml:lang': 'fr', '$': 'Communication graphique'},
              {'@xml:lang': 'fr', '$': "Communication par l'image"}]}}},
          {'@count': '8',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85102012',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Pictures'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Pictorial representations'},
            {'@xml:lang': 'en', '$': 'Iconography'}]},
          {'@count': '8',
           '@uri': 'http://datos.bne.es/resource/XX530997',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Imágenes'},
           'label': {'@xml:lang': 'es', '$': 'Imágenes'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Ilustraciones, imágenes, etc.'}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119315332',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gestes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Mimiques'},
            {'@xml:lang': 'fr', '$': 'Langage corporel'},
            {'@xml:lang': 'fr', '$': 'Langage gestuel'},
            {'@xml:lang': 'fr', '$': 'Gestuelle'},
            {'@xml:lang': 'fr', '$': 'Langage du corps'},
            {'@xml:lang': 'fr', '$': 'Expression gestuelle'},
            {'@xml:lang': 'fr', '$': 'Expressions gestuelles'},
            {'@xml:lang': 'fr', '$': 'Attitudes corporelles'},
            {'@xml:lang': 'fr', '$': 'Geste'},
            {'@xml:lang': 'fr', '$': 'Attitude corporelle'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11936480h',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Communication non-verbale'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Langage non-verbal'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930966w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art dramatique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Art de l'acteur (théâtre)"},
               {'@xml:lang': 'fr', '$': "Jeu de l'acteur (théâtre)"},
               {'@xml:lang': 'fr', '$': 'Jeu dramatique'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975692n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Méthodes'},
           'altLabel': {'@xml:lang': 'fr', '$': "Méthodes d'apprentissage"}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001789',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Methods'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Instruction and study--Methods'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133183540',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Livres et lecture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Lectures'},
            {'@xml:lang': 'fr', '$': 'Lecture, Choix de'},
            {'@xml:lang': 'fr', '$': 'Lecture littéraire'},
            {'@xml:lang': 'fr', '$': 'Habitudes de lecture'},
            {'@xml:lang': 'fr', '$': 'Lectorat'},
            {'@xml:lang': 'fr', '$': 'Choix de lecture'},
            {'@xml:lang': 'fr', '$': 'Évaluation des livres'},
            {'@xml:lang': 'fr', '$': 'Lecteurs de livres'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318807v',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Éducation'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Scolarisation'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004859',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Books and reading'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Reading habits'},
            {'@xml:lang': 'en', '$': 'Books for'},
            {'@xml:lang': 'en', '$': 'Reading interests'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4596812',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'label': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Afición a la lectura'},
            {'@xml:lang': 'es', '$': 'Hábitos de lectura'},
            {'@xml:lang': 'es', '$': 'Lectores'},
            {'@xml:lang': 'es', '$': 'Lectura y libros'},
            {'@xml:lang': 'es', '$': 'Libros--Apreciación'}]},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975904c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Interprétation'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Interprétations'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006355',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Interpretation and construction'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006356',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Interpretation (Phrasing, dynamics, etc.)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'interpretación'},
            {'@xml:lang': 'en', '$': 'interpretation'},
            {'@xml:lang': 'fr', '$': 'interprétation'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv|http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation|interprétation'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'documentación'},
              {'@xml:lang': 'fr', '$': 'documentation'},
              {'@xml:lang': 'en', '$': 'source material'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation'}}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
            {'@xml:lang': 'fr', '$': 'Gens de lettres'},
            {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX526944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
           'label': {'@xml:lang': 'es', '$': 'Escritores'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
            {'@xml:lang': 'es', '$': 'Literatos'}]},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
            {'@xml:lang': 'fr', '$': 'objet'},
            {'@xml:lang': 'es', '$': 'objeto'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
            {'@xml:lang': 'fr', '$': 'petit objet'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|object'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
            {'@xml:lang': 'fr', '$': 'Possible'},
            {'@xml:lang': 'fr', '$': 'Impossible'},
            {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Impossibilité'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
               {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX531645',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119782672',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Fil'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Fils (textile)'},
            {'@xml:lang': 'fr', '$': 'Fil à coudre'},
            {'@xml:lang': 'fr', '$': 'Fil (textile)'},
            {'@xml:lang': 'fr', '$': 'Bobines de fil'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11942815d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Filature'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Filage'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15037337b'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85135003',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Thread'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85149022',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Yarn'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb122147017',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Représentations'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Interprétations'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005755',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Performances'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
            {'@xml:lang': 'fr', '$': 'image'},
            {'@xml:lang': 'es', '$': 'imagen'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
             'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
              {'@xml:lang': 'es', '$': 'estética'},
              {'@xml:lang': 'fr', '$': 'esthétique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science qui traite du beau en général (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Image'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
            {'@xml:lang': 'en', '$': 'language'},
            {'@xml:lang': 'es', '$': 'lenguaje'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
            {'@xml:lang': 'fr', '$': 'Langage et langues'},
            {'@xml:lang': 'fr', '$': 'Langues et langage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
              {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13180391c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Tautologie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Propositions tautologiques'},
            {'@xml:lang': 'fr', '$': 'Raisonnement tautologique'},
            {'@xml:lang': 'fr', '$': 'Proposition tautologique'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Rapport'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Rapport'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119378727',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Paradoxe'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Paradoxes'},
            {'@xml:lang': 'fr', '$': 'Raisonnement paradoxal'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097758',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradoxes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097756',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradox'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtI9nGzIgVgX',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'mouvement/immobilité'},
            {'@xml:lang': 'es', '$': 'movimiento/inmovilidad'},
            {'@xml:lang': 'en', '$': 'mutability/immutability'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'immobilité/mouvement'},
            {'@xml:lang': 'fr', '$': 'mouvement'},
            {'@xml:lang': 'fr', '$': 'mouvement (concept)'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn|http://ark.frantiq.fr/ark:/26678/pcrtI9nGzIgVgX'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn',
             'prefLabel': [{'@xml:lang': 'es', '$': 'cambio'},
              {'@xml:lang': 'en', '$': 'change'},
              {'@xml:lang': 'fr', '$': 'changement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119798925',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mouvement'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4961'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85087557',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Motion'},
           'altLabel': {'@xml:lang': 'en', '$': 'Kinetics'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361544',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Construction'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Génie architectural'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119338890',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Technologie'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Sciences appliquées'}}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-396'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85017693',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Building'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Architectural engineering'},
            {'@xml:lang': 'en', '$': 'Construction'},
            {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
            {'@xml:lang': 'en', '$': 'Engineering, Architectural'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'building (process of)'},
            {'@xml:lang': 'es', '$': 'construcción'},
            {'@xml:lang': 'fr', '$': 'construction'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|knowledge|technology|building (process of)'}}],
           'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
              'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
               {'@xml:lang': 'fr', '$': 'architecture'},
               {'@xml:lang': 'es', '$': 'arquitectura'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Art de construire les bâtiments (Lar.)'}}},
            {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'technologie'},
               {'@xml:lang': 'en', '$': 'technology'},
               {'@xml:lang': 'es', '$': 'tecnología'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'technique'},
               {'@xml:lang': 'fr', '$': 'technique de fabrication'},
               {'@xml:lang': 'fr', '$': 'techniques'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Construction'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Appareillage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '010 Construction|Construction'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127',
             'prefLabel': {'@xml:lang': 'fr', '$': '010 Construction'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975857p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Pratique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Pratique (musique)'},
            {'@xml:lang': 'fr', '$': "Pratique d'une profession"},
            {'@xml:lang': 'fr', '$': 'Pratique musicale'},
            {'@xml:lang': 'fr', '$': 'Pratique professionnelle'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006959',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Practice'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99014466',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Instruction and study'},
           'altLabel': {'@xml:lang': 'en', '$': 'Practicing'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'resistance'},
            {'@xml:lang': 'fr', '$': 'résistance'},
            {'@xml:lang': 'es', '$': 'resistencia'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
             'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
              {'@xml:lang': 'fr', '$': 'troubles'},
              {'@xml:lang': 'en', '$': 'unrest'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
              {'@xml:lang': 'fr', '$': 'soulèvement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933227s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir-vivre'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bonnes manières'},
            {'@xml:lang': 'fr', '$': 'Bon ton'},
            {'@xml:lang': 'fr', '$': 'Manières'},
            {'@xml:lang': 'fr', '$': 'Bienséance'},
            {'@xml:lang': 'fr', '$': 'Convenances'},
            {'@xml:lang': 'fr', '$': 'Tact'},
            {'@xml:lang': 'fr', '$': 'Éducation (savoir-vivre)'},
            {'@xml:lang': 'fr', '$': 'Étiquette'},
            {'@xml:lang': 'fr', '$': 'Bonne éducation'},
            {'@xml:lang': 'fr', '$': 'Correction (savoir vivre)'},
            {'@xml:lang': 'fr', '$': 'Courtoisie (savoir-vivre)'},
            {'@xml:lang': 'fr', '$': 'Civilités'},
            {'@xml:lang': 'fr', '$': 'Politesse'},
            {'@xml:lang': 'fr', '$': 'Impolitesse'},
            {'@xml:lang': 'fr', '$': 'Usages'},
            {'@xml:lang': 'fr', '$': 'Urbanité'},
            {'@xml:lang': 'fr', '$': 'Civilité'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
              {'@xml:lang': 'fr', '$': 'Traditions'},
              {'@xml:lang': 'fr', '$': 'Coutumes'},
              {'@xml:lang': 'fr', '$': 'Vie sociale'},
              {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
              {'@xml:lang': 'fr', '$': 'Us et coutumes'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527340',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Etiqueta'},
           'label': {'@xml:lang': 'es', '$': 'Etiqueta'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Cortesía'},
            {'@xml:lang': 'es', '$': 'Modales'},
            {'@xml:lang': 'es', '$': 'Protocolo'},
            {'@xml:lang': 'es', '$': 'Trato social'},
            {'@xml:lang': 'es', '$': 'Urbanidad'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85045446',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Etiquette'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Usages'},
            {'@xml:lang': 'en', '$': 'Politeness'},
            {'@xml:lang': 'en', '$': 'Condolence, Etiquette of'},
            {'@xml:lang': 'en', '$': 'Manners'},
            {'@xml:lang': 'en', '$': 'Ceremonies'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
            {'@xml:lang': 'fr', '$': 'Traditions'},
            {'@xml:lang': 'fr', '$': 'Coutumes'},
            {'@xml:lang': 'fr', '$': 'Vie sociale'},
            {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
            {'@xml:lang': 'fr', '$': 'Us et coutumes'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318485j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Ethnologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Anthropologie culturelle'},
               {'@xml:lang': 'fr', '$': 'Anthropologie sociale'},
               {'@xml:lang': 'fr', '$': 'Ethnographie'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
               {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
               {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-155'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008851',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social life and customs'},
           'altLabel': {'@xml:lang': 'en', '$': 'Customs'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965332r',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langue'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006382',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language, style'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
            {'@xml:lang': 'es', '$': 'plaza'},
            {'@xml:lang': 'en', '$': 'public place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Espace plus ou moins étendue (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
             'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
              {'@xml:lang': 'fr', '$': 'structure urbaine'},
              {'@xml:lang': 'en', '$': 'urban structure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
            {'@xml:lang': 'fr', '$': 'Sciences exactes'},
            {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527870',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias'},
           'label': {'@xml:lang': 'es', '$': 'Ciencias'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6187',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'philosophy'},
            {'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The academic discipline concerned with making explicit the nature and significance of ordinary and scientific beliefs and investigating the intelligibility of concepts by means of rational argument concerning their presuppositions, implications, and interrelationships; in particular, the rational investigation of the nature and structure of reality (metaphysics), the resources and limits of knowledge (epistemology), the principles and import of moral judgment (ethics), and the relationship between language and reality (semantics).'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330837'},
            {'@uri': 'http://eurovoc.europa.eu/2369'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119368422',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Et la philosophie'},
            {'@xml:lang': 'fr', '$': 'Contribution à la philosophie'},
            {'@xml:lang': 'fr', '$': 'Philosophie occidentale'},
            {'@xml:lang': 'fr', '$': 'Aspect philosophique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
              {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
              {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-143'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525257',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Filosofía'},
           'label': {'@xml:lang': 'es', '$': 'Filosofía'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005065',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Knowledge--Philosophy'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'},
            {'@xml:lang': 'en', '$': 'philosophy'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
            {'@xml:lang': 'fr', '$': 'Logique philosophique'},
            {'@xml:lang': 'fr', '$': 'Morale'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie'}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119764523',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Conception'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006371',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Design'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Processus de conception'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Conception de projet'},
            {'@xml:lang': 'fr', '$': 'Conception'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2138|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '041 Méthodologie|Méthodologie|Méthodologie du projet|Processus de conception'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Méthodologie du projet'}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#READING',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Reading'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE|http://GeoEthno#READING',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire|Reading'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BERKSHIRE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Berkshire'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975752p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Usage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bon usage (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Usage (linguistique)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006425',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Usage'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Idioms, corrections, errors'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Use'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119775905',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Expression'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046538',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Expression'},
           'altLabel': {'@xml:lang': 'en', '$': 'Expressive behavior'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7312',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'root'},
            {'@xml:lang': 'es', '$': 'raíz'},
            {'@xml:lang': 'fr', '$': 'racine'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The absorbing and anchoring organ of a vascular plant; it bears neither leaves nor flowers and is usually subterranean.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6300',
             'prefLabel': [{'@xml:lang': 'en', '$': 'plant component'},
              {'@xml:lang': 'es', '$': 'partes de la planta'},
              {'@xml:lang': 'fr', '$': 'partie de la plante'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The constituent parts of a plant.'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Open Access',
        'http://purl.org/eprint/accessRights/OpenAccess']}},
     {'@uri': '10670/1.6p4zol',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Photobiographies : pour une écriture de notation de la vie (Roland Barthes, Denis Roche, Annie Ernaux)'},
        {'@xml:lang': 'en',
         '$': 'Photobiographies : Towards a Notation of Life (Roland Barthes, Denis Roche, Annie Ernaux)'}],
       'url': 'http://www.theses.fr/2011PA030104',
       'enrichedCreators': {'creator': {'@origin': 'Arribert-Narce, Fabien',
         '@normalizedAuthor': 'Arribert-Narce, Fabien',
         '@idAuthor': 'arribert_narce_fabien',
         'firstname': 'Fabien',
         'lastname': 'Arribert-Narce',
         'title': [],
         'sameAs': {'orcid': '0000-0001-6393-3682', 'idref': '169855090'}}},
       'date': {'@origin': '2011-09-27',
        '@startDate': '2011-09-27',
        '@endDate': '2011-09-27',
        '@treeDate': '2000/2010/2011',
        'normalizedDate': '2011-09-27',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2011'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '6046040',
         '$': 'http://www.theses.fr/2011PA030104'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Photobiographie'},
         {'@xml:lang': 'fr', '$': 'Autobiographie'},
         {'@xml:lang': 'fr', '$': 'Photographie'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         {'@xml:lang': 'fr', '$': 'Roche'},
         {'@xml:lang': 'fr', '$': 'Ernaux'},
         {'@xml:lang': 'en', '$': 'Photobiography'},
         {'@xml:lang': 'en', '$': 'Autobiography'},
         {'@xml:lang': 'en', '$': 'Photography'},
         {'@xml:lang': 'en', '$': 'Barthes'},
         {'@xml:lang': 'en', '$': 'Roche'},
         {'@xml:lang': 'en', '$': 'Ernaux'},
         []]},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'Ce travail de recherche s’inscrit dans le cadre d’une étude de genre, celui de la photobiographie, qui englobe tous types de livres autobiographiques dans lesquels la photo (mentionnée, décrite ou effectivement reproduite) joue un rôle central. Il s’appuie sur les œuvres de trois auteurs emblématiques, Roland Barthes, Denis Roche et Annie Ernaux, qui se rejoignent autour de leur commun désir de capter une trace de leur existence en s’en tenant au plus près de la réalité concrète du vécu, conformément au modèle d’enregistrement photographique. Dans cette perspective, leurs démarches respectives sont traversées par une même problématique de l’écriture de notation de la vie qui bouleverse considérablement les enjeux du genre autobiographique traditionnel. Dans le travail de Barthes, la photo offre non seulement le modèle d’une écriture notationnelle du présent, mais elle pourvoie également des « biographèmes » studium et punctum construisant un sujet fragmenté. Roche se pose pour sa part comme un praticien accumulant inlassablement des dépôts graphiques de vie, et les incluant occasionnellement dans divers dispositifs faisant valoir les caractéristiques essentielles de la photographie (instantanéité, mécanicité, exposabilité, sérialité). Quant à Ernaux, elle inscrit davantage son entreprise « auto-socio-biographique » dans l’optique d’un témoignage sociologique et historique, et se sert de la photo pour révéler la part d’altérité et la dimension collective dans le « moi ». Les trois oeuvres formant ce corpus appartiennent en définitive à un paradigme argentique ancré dans la fin du XXème siècle, et sur le point de disparaître à l’aube du XXIème, celui de la technologie numérique.'},
        {'@xml:lang': 'en',
         '$': 'This thesis examines the literary genre of photobiography, which encompasses autobiographical works in which photographs play an essential role, be they reproduced or merely described within the text. It focuses more specifically on the works of three contemporary photobiographers, Roland Barthes, Denis Roche and Annie Ernaux. These authors share a desire to capture material traces of their own existence and to grasp the concrete reality of their lives. In doing so, they follow the model of photographic recording and produce a notational form of life writing that significantly challenges traditional autobiography. In Barthes’s photobiographical project, the photograph is not only viewed as an exemplary form of the notation of the present, but also provides a number of studium and punctum ‘biographemes’ that eventually construct a fragmented autobiographical subject. Roche’s photobiographical activity is that of a practitioner (he is both a photographer and a writer) and consists in ceaselessly accumulating graphic ‘deposits’ of life and in incorporating them within intermedial devices that exploit the principal characteristics of photography (instantaneity, mechanicity, exposability, seriality). Finally, Ernaux’s ‘auto-socio-biographical’ work provides a sociological and historical testimony that makes use of the photograph to reveal the collective dimension and alterity of the ‘self’. This body of work belongs to the paradigm of analogue photography, which is anchored in the twentieth century and is on the verge of disappearing at the dawn of the twenty-first.'}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119760284',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Notation'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Symboles'},
            {'@xml:lang': 'fr', '$': 'Graphismes'},
            {'@xml:lang': 'fr', '$': 'Symboles graphiques'}]},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001966',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Notation'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'life'},
            {'@xml:lang': 'es', '$': 'vida'},
            {'@xml:lang': 'fr', '$': 'vie'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hombre-universo'},
              {'@xml:lang': 'fr', '$': 'homme-univers'},
              {'@xml:lang': 'en', '$': 'man-universe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'homme-monde-univers'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933780m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Vie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sens de la vie'},
            {'@xml:lang': 'fr', '$': 'Philosophie de la vie'},
            {'@xml:lang': 'fr', '$': 'Vie, Sens de la'},
            {'@xml:lang': 'fr', '$': 'Vie (philosophie)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937892v',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Philosophie de la nature'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Nature, Philosophie de la'},
               {'@xml:lang': 'fr', '$': 'Nature (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Cosmologie rationnelle'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Homme, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85076807',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Life'},
           'altLabel': {'@xml:lang': 'en', '$': 'Life--Philosophy'}},
          {'@count': '7',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSVdwKcS3MI',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'roca'},
            {'@xml:lang': 'fr', '$': 'roche'},
            {'@xml:lang': 'en', '$': 'rock'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'pierre'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtIMsuG0RWTs|http://ark.frantiq.fr/ark:/26678/pcrtSVdwKcS3MI'},
           'definition': {'@xml:lang': 'fr',
            '$': "Matériaux constitutif de l'écorce terrestre, formé en général d'un assemblage de minéraux et présentant une certaine homogénéité statistique. (Dict. de géologie, Foucault et Raoult)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIMsuG0RWTs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'materiales'},
              {'@xml:lang': 'en', '$': 'materials'},
              {'@xml:lang': 'fr', '$': 'matériaux'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtIMsuG0RWTs'}}}},
          {'@count': '7',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7298',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'rock'},
            {'@xml:lang': 'es', '$': 'rocas'},
            {'@xml:lang': 'fr', '$': 'roche'}],
           'definition': {'@xml:lang': 'en',
            '$': "Any aggregate of minerals that makes up part of the earth's crust. It may be unconsolidated, such as sand, clay, or mud, or consolidated, such as granite, limestone, or coal."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4855',
             'prefLabel': [{'@xml:lang': 'en', '$': 'lithosphere'},
              {'@xml:lang': 'es', '$': 'litosfera'},
              {'@xml:lang': 'fr', '$': 'lithosphère'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The solid portion of the Earth, as compared with the atmosphere and the hydrosphere.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6628'}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '042 Professions - travail|Travail'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '042 Professions - travail'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119715347',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Tâches'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
              {'@xml:lang': 'fr', '$': 'Économie'},
              {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
              {'@xml:lang': 'fr', '$': 'Analyse économique'},
              {'@xml:lang': 'fr', '$': 'Science économique'},
              {'@xml:lang': 'fr', '$': 'Économique'},
              {'@xml:lang': 'fr', '$': 'Théorie économique'},
              {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
              {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-536'}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006403',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Occupations'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX524430',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
           'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005236',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Employment'},
           'altLabel': {'@xml:lang': 'en', '$': 'Working conditions'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
            {'@xml:lang': 'es', '$': 'trabajo'},
            {'@xml:lang': 'fr', '$': 'travail'}],
           'definition': {'@xml:lang': 'en',
            '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
            {'@uri': 'http://eurovoc.europa.eu/4543'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
            {'@xml:lang': 'fr', '$': 'travail'},
            {'@xml:lang': 'en', '$': 'work'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
             'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
              {'@xml:lang': 'fr', '$': 'société'},
              {'@xml:lang': 'en', '$': 'society'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
             'definition': {'@xml:lang': 'fr',
              '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11938467s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Activités de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche fondamentale'},
            {'@xml:lang': 'fr', '$': 'Projets de recherche'},
            {'@xml:lang': 'fr', '$': 'Programmes de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Recherche pure'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
               {'@xml:lang': 'fr', '$': 'Sciences exactes'},
               {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933704h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail intellectuel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Activité intellectuelle'},
               {'@xml:lang': 'fr', '$': 'Travail mental'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-3'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525653',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
           'label': {'@xml:lang': 'es', '$': 'Investigación'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
            {'@xml:lang': 'es', '$': 'Investigación científica'},
            {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
            {'@xml:lang': 'es', '$': 'I+D'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Projet de recherche'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Recherche'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
            {'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'},
            {'@xml:lang': 'en', '$': 'research'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'organisation de la recherche'},
              {'@xml:lang': 'es', '$': 'organización de la investigación'},
              {'@xml:lang': 'en', '$': 'organization of research'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
          {'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/63ce2558-0c0f-47d9-b408-bc3648c95b74',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Étude de genre'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Gender studies'},
            {'@xml:lang': 'fr', '$': 'Genre'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858|http://data.culture.fr/thesaurus/resource/ark:/67717/63ce2558-0c0f-47d9-b408-bc3648c95b74'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sociologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '061 Sociologie - population - loisirs|Sociologie'}}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb169590311',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photobiographie'},
           'altLabel': {'@xml:lang': 'fr',
            '$': 'Autobiographie photographique'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119600630',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Autobiographie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Écrits autobiographiques'},
               {'@xml:lang': 'fr', '$': 'Littérature autobiographique'},
               {'@xml:lang': 'fr', '$': 'Récits autobiographiques'},
               {'@xml:lang': 'fr', '$': 'Autobiographies'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120786354',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Littérature et photographie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Photographie et littérature'}}}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
            {'@xml:lang': 'fr', '$': 'Livre'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
               {'@xml:lang': 'fr', '$': 'Publications imprimées'},
               {'@xml:lang': 'fr', '$': 'Écrits publiés'},
               {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12301531v',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Documentation de bibliothèque'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Documents primaires'},
               {'@xml:lang': 'fr', '$': 'Documents de bibliothèques'},
               {'@xml:lang': 'fr', '$': 'Ressources documentaires'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4576243',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Libros'},
           'label': {'@xml:lang': 'es', '$': 'Libros'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85015738',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Books'}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6205',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photograph'},
            {'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photo'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An image captured by a camera or some other device and reproduced as a picture, usually on a sensitized surface and formed by the chemical action of light or of radiant energy.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2284',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentation'},
              {'@xml:lang': 'es', '$': 'documentación'},
              {'@xml:lang': 'fr', '$': 'documentation'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3598'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16672499z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Joue'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bucca'},
            {'@xml:lang': 'fr', '$': 'Mala (anatomie)'},
            {'@xml:lang': 'fr', '$': 'Région génienne'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935546c',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Face'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Facies (anatomie)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85022839',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Cheek'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
            {'@xml:lang': 'fr', '$': 'Gens de lettres'},
            {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
           'label': {'@xml:lang': 'es', '$': 'Escritores'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
            {'@xml:lang': 'es', '$': 'Literatos'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb144551060',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Vulgarité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Terre à terre'},
            {'@xml:lang': 'fr', '$': 'Bathos (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Banal (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Grossier'},
            {'@xml:lang': 'fr', '$': 'Trivial'},
            {'@xml:lang': 'fr', '$': 'Banalité (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Vulgaire'},
            {'@xml:lang': 'fr', '$': 'Bassesse'},
            {'@xml:lang': 'fr', '$': 'Trivialité'},
            {'@xml:lang': 'fr', '$': 'Vulgarité (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Bas (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Mauvais goût'},
            {'@xml:lang': 'fr', '$': 'Grossièreté'},
            {'@xml:lang': 'fr', '$': 'Commun'},
            {'@xml:lang': 'fr', '$': 'Prosaïque'},
            {'@xml:lang': 'fr', '$': 'Anti-sublime'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119518021',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Attitude (psychologie)'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Comportement (psychologie)'},
               {'@xml:lang': 'fr', '$': 'Opinion'},
               {'@xml:lang': 'fr', '$': 'Attitudes (psychologie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931288h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Esthétique'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Théorie de l'art"},
               {'@xml:lang': 'fr', '$': 'Théories artistiques'},
               {'@xml:lang': 'fr', '$': "Et l'esthétique"},
               {'@xml:lang': 'fr', '$': "Contribution à l'esthétique"},
               {'@xml:lang': 'fr', '$': "Art, Théorie de l'"},
               {'@xml:lang': 'fr', '$': 'Philosophie des arts'},
               {'@xml:lang': 'fr', '$': 'Théorie artistique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85012332',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bathos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002004226',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Vulgarity'},
           'altLabel': {'@xml:lang': 'en', '$': 'Coarseness (Vulgarity)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11931863t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Désir'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Appétence'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
              {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
              {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
              {'@xml:lang': 'fr', '$': 'Expression des émotions'},
              {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
              {'@xml:lang': 'fr', '$': 'Émotivité'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX554445',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Deseo'},
           'label': {'@xml:lang': 'es', '$': 'Deseo'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Apetencia'},
            {'@xml:lang': 'es', '$': 'Aspiración'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85037214',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Desire'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appetency'},
            {'@xml:lang': 'en', '$': 'Longing'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Théorie de la connaissance'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
               {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX528102',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
           'label': {'@xml:lang': 'es', '$': 'Realidad'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'modèle'},
            {'@xml:lang': 'es', '$': 'modelo'},
            {'@xml:lang': 'en', '$': 'model (object of imitation)'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0|http://ark.frantiq.fr/ark:/26678/pcrtikIy5HjYAA',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|art|art (conception of)|status of a work of art|model (object of imitation)'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0',
             'prefLabel': [{'@xml:lang': 'es', '$': 'estatus de la obra'},
              {'@xml:lang': 'en', '$': 'status of a work of art'},
              {'@xml:lang': 'fr', '$': "statut de l'oeuvre"}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrtQ2d2FOaxN5|http://ark.frantiq.fr/ark:/26678/pcrtOwnjNlokU0'}}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5325',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'model'},
            {'@xml:lang': 'es', '$': 'modelos'},
            {'@xml:lang': 'fr', '$': 'modèle'}],
           'definition': {'@xml:lang': 'en',
            '$': '1) A representation, usually on a smaller scale, of a device, structure, etc.  2) A quantitative or mathematical representation or computer simulation which attempts to describe the characteristics or relationships of physical events.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5327',
             'prefLabel': [{'@xml:lang': 'en', '$': 'modelling'},
              {'@xml:lang': 'es', '$': 'modelos y simulación'},
              {'@xml:lang': 'fr', '$': 'modélisation'}],
             'definition': {'@xml:lang': 'en',
              '$': 'An investigative technique using a mathematical or physical representation of a system or theory that accounts for all or some its known properties. Models are often used to test the effect of changes of system components on the overall performance of the system.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3663'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12651477f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Enregistrement'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11948333d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Traités'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Ententes internationales (traités)'},
               {'@xml:lang': 'fr', '$': 'Pactes internationaux'},
               {'@xml:lang': 'fr', '$': 'Accords internationaux'},
               {'@xml:lang': 'fr', '$': 'Traités internationaux'},
               {'@xml:lang': 'fr', '$': 'Pactes (traités)'},
               {'@xml:lang': 'fr', '$': 'Conventions internationales'},
               {'@xml:lang': 'fr', '$': 'Conventions (traités)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11950098f',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Contrats'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Droit du contrat'},
               {'@xml:lang': 'fr', '$': 'Droit des contrats'},
               {'@xml:lang': 'fr', '$': 'Accords de volontés'},
               {'@xml:lang': 'fr', '$': 'Pactes (contrats)'},
               {'@xml:lang': 'fr', '$': 'Conventions (contrats)'},
               {'@xml:lang': 'fr', '$': 'Obligations contractuelles'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-306'}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7082',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'registration'},
            {'@xml:lang': 'es', '$': 'registro'},
            {'@xml:lang': 'fr', '$': 'enregistrement'}],
           'definition': {'@xml:lang': 'en',
            '$': "An instance of or a certificate attesting to the fact of entering in an official list various pieces of information in order to facilitate regulation or authorization, including one's name, contact information and, in some instances, data concerning a specific possession or property."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/111',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'administrative procedure'},
              {'@xml:lang': 'es', '$': 'procedimiento administrativo'},
              {'@xml:lang': 'fr', '$': 'procédure administrative'}]}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6491'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932949s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perspective'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Perspective (art)'},
            {'@xml:lang': 'fr', '$': 'Perspective (architecture)'},
            {'@xml:lang': 'fr', '$': 'Perspective linéaire'},
            {'@xml:lang': 'fr', '$': 'Perspective aérienne (peinture)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935513d',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Espace (art)'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Espace de l'oeuvre d'art"},
              {'@xml:lang': 'fr', '$': 'Espace de la scène représentée (art)'},
              {'@xml:lang': 'fr', '$': 'Espace pictural'},
              {'@xml:lang': 'fr', '$': 'Espace plastique'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85100171',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Perspective'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Mechanical perspective'},
            {'@xml:lang': 'en', '$': 'Linear perspective'},
            {'@xml:lang': 'en', '$': 'Architectural perspective'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526251',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Perspectiva'},
           'label': {'@xml:lang': 'es', '$': 'Perspectiva'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Perspectiva arquitectónica'},
            {'@xml:lang': 'es', '$': 'Perspectiva lineal'},
            {'@xml:lang': 'es', '$': 'Perspectiva mecánica'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'perspectiva'},
            {'@xml:lang': 'en', '$': 'perspective'},
            {'@xml:lang': 'fr', '$': 'perspective'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF|http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'architectural representation'},
              {'@xml:lang': 'es', '$': 'representación arquitectural'},
              {'@xml:lang': 'fr', '$': 'représentation architecturale'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1523',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perspective'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1523'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Technique de représentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '040 Techniques de représentation|Technique de représentation'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8219',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'supply (trade)'},
            {'@xml:lang': 'es', '$': 'oferta (comercio)'},
            {'@xml:lang': 'fr', '$': 'offre'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The willingness and ability to sell a range of quantities of a good at a range of prices, during a given time period. Supply is one half of the market exchange process; the other is demand.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10940',
             'prefLabel': [{'@xml:lang': 'en', '$': 'supply and demand'},
              {'@xml:lang': 'es', '$': 'oferta y demanda'},
              {'@xml:lang': 'fr', '$': 'offre et demande'}],
             'definition': {'@xml:lang': 'en',
              '$': "The relationship between the amount or quantity of a commodity that is available for purchase and the desire or ability of consumers to buy or purchase the commodity, which, in theory, determines the commodity's price in a free market."}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
            {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
            {'@xml:lang': 'fr', '$': 'sujet'}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119764047',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Tableaux, graphiques, etc.'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Représentation graphique'},
            {'@xml:lang': 'fr', '$': 'Graphiques'},
            {'@xml:lang': 'fr', '$': 'Représentations graphiques'},
            {'@xml:lang': 'fr', '$': 'Méthodes graphiques'},
            {'@xml:lang': 'fr', '$': 'Diagrammes'},
            {'@xml:lang': 'fr', '$': 'Communication graphique'},
            {'@xml:lang': 'fr', '$': 'Facilitation graphique'},
            {'@xml:lang': 'fr', '$': 'Tableaux (recueils de données)'},
            {'@xml:lang': 'fr', '$': 'Schémas'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931755x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication visuelle'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Image, Communication par l'"},
               {'@xml:lang': 'fr', '$': 'Communication graphique'},
               {'@xml:lang': 'fr', '$': "Communication par l'image"}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932499z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Méthodologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Contribution à la méthodologie'},
               {'@xml:lang': 'fr', '$': 'Et la méthodologie'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001425',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Charts, diagrams, etc'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Charts'},
            {'@xml:lang': 'en', '$': 'Diagrams'},
            {'@xml:lang': 'en', '$': 'Outline drawings'},
            {'@xml:lang': 'en', '$': 'Charts, tables, etc'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119758341',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Méthodes graphiques'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphique'},
            {'@xml:lang': 'fr', '$': 'Représentations graphiques'},
            {'@xml:lang': 'fr', '$': 'Représentation graphique'},
            {'@xml:lang': 'fr', '$': 'Diagrammes'},
            {'@xml:lang': 'fr', '$': 'Graphiques'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931869w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Dessin géométrique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933269q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Simulation, Méthodes de'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Méthodes de simulation'},
               {'@xml:lang': 'fr', '$': 'Modèles de simulation'},
               {'@xml:lang': 'fr', '$': 'Simulation, Modèles de'},
               {'@xml:lang': 'fr', '$': 'Simulation, Techniques de'},
               {'@xml:lang': 'fr', '$': 'Techniques de simulation'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932434c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mathématiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences mathématiques'},
               {'@xml:lang': 'fr', '$': 'Mathématiques appliquées'},
               {'@xml:lang': 'fr', '$': 'Méthodes mathématiques'},
               {'@xml:lang': 'fr', '$': 'Mathématiques modernes'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb131626751',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Dessin industriel'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Dessin technique'}}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525301',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Métodos gráficos'},
           'label': {'@xml:lang': 'es', '$': 'Métodos gráficos'},
           'altLabel': {'@xml:lang': 'es', '$': 'Gráficos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005984',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphic methods'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
            {'@xml:lang': 'fr', '$': 'Art photographique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
              {'@xml:lang': 'fr', '$': 'Arts plastiques'},
              {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
              {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX4683393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-833',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Entreprise'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'GIE'},
            {'@xml:lang': 'fr', '$': 'Petites et moyennes entreprises'},
            {'@xml:lang': 'fr', '$': "Groupement d'intérêt économique"},
            {'@xml:lang': 'fr', '$': 'PME'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2149|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-833',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '072 Économie|Économie|Entreprise'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Économie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2149|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-769',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '072 Économie|Économie'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1084',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'business'},
            {'@xml:lang': 'es', '$': 'empresas'},
            {'@xml:lang': 'fr', '$': 'entreprise'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The activity, position or site associated with commerce or the earning of a livelihood.'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11976012r',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Optique'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933127h',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences physiques'},
              {'@xml:lang': 'fr', '$': 'Philosophie naturelle'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85095181',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Optics'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525900',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Óptica'},
           'label': {'@xml:lang': 'es', '$': 'Óptica'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1425',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Optique'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1425'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Aérodynamique'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '080 Sciences exactes et appliquées|Physique'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'óptica'},
            {'@xml:lang': 'en', '$': 'optics'},
            {'@xml:lang': 'fr', '$': 'optique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p|http://ark.frantiq.fr/ark:/26678/pcrtkkGJbcnyqI'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Partie de la physique qui traite de la lumière et de la vision (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p',
             'prefLabel': [{'@xml:lang': 'en', '$': 'antique physics'},
              {'@xml:lang': 'es', '$': 'física antigua'},
              {'@xml:lang': 'fr', '$': 'physique antique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK|http://ark.frantiq.fr/ark:/26678/pcrtyNJPss739p'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtADfYoq4n1R',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'témoignage'},
            {'@xml:lang': 'es', '$': 'testimonio'},
            {'@xml:lang': 'en', '$': 'testimony'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN|http://ark.frantiq.fr/ark:/26678/pcrtADfYoq4n1R'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN',
             'prefLabel': [{'@xml:lang': 'es', '$': 'procedimiento'},
              {'@xml:lang': 'en', '$': 'procedure'},
              {'@xml:lang': 'fr', '$': 'procédure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Forme suivant laquelle les affaires sont instruites devant les tribunaux (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975370h',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Témoins'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Preuve testimoniale'},
            {'@xml:lang': 'fr', '$': 'Preuve par témoins'},
            {'@xml:lang': 'fr', '$': 'Témoignage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119709552',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Preuve (droit)'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Preuve judiciaire'},
              {'@xml:lang': 'fr', '$': 'Droit de la preuve'},
              {'@xml:lang': 'fr', '$': 'Moyens de preuve'},
              {'@xml:lang': 'fr', '$': 'Règles de preuve'},
              {'@xml:lang': 'fr', '$': 'Système probatoire'},
              {'@xml:lang': 'fr', '$': 'Modes de preuve'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX532019',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Testigos'},
           'label': {'@xml:lang': 'es', '$': 'Testigos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85147165',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Witnesses'},
           'altLabel': {'@xml:lang': 'en', '$': 'Testimony'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
            {'@xml:lang': 'es', '$': 'corpus'},
            {'@xml:lang': 'fr', '$': 'corpus'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
              {'@xml:lang': 'es', '$': 'instrumento documental'},
              {'@xml:lang': 'fr', '$': 'outil documentaire'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
            {'@xml:lang': 'es', '$': 'punto'},
            {'@xml:lang': 'fr', '$': 'point'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A position on a reference system determined by a survey.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
             'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
              {'@xml:lang': 'es', '$': 'parámetro'},
              {'@xml:lang': 'fr', '$': 'paramètre'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#AUBE',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Aube'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#CHAMPAGNE-ARDENNE|http://GeoEthno#AUBE',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe occidentale|France|Bassin Parisien|Champagne-Ardenne|Aube'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#CHAMPAGNE-ARDENNE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Champagne-Ardenne'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#CHAMPAGNE-ARDENNE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France|Bassin Parisien|Champagne-Ardenne'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'technologie'},
            {'@xml:lang': 'en', '$': 'technology'},
            {'@xml:lang': 'es', '$': 'tecnología'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'technique'},
            {'@xml:lang': 'fr', '$': 'technique de fabrication'},
            {'@xml:lang': 'fr', '$': 'techniques'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|technology'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
             'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
              {'@xml:lang': 'es', '$': 'saber'},
              {'@xml:lang': 'fr', '$': 'savoir'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119338890',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Technologie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Sciences appliquées'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526277',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Tecnología'},
           'label': {'@xml:lang': 'es', '$': 'Tecnología'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009096',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Technology'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8339',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'technology'},
            {'@xml:lang': 'es', '$': 'tecnología'},
            {'@xml:lang': 'fr', '$': 'technologie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Systematic knowledge of and its application to industrial processes; closely related to engineering and science.'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_7644'},
            {'@uri': 'http://eurovoc.europa.eu/4415'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1930',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Technologie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1930',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '080 Sciences exactes et appliquées|Technologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '080 Sciences exactes et appliquées'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13771860j',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Lives'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Livoniens'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12099094n'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120228623'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119359005',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Finno-Ougriens'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Ougriens'},
               {'@xml:lang': 'fr', '$': 'Peuples finno-ougriens'},
               {'@xml:lang': 'fr', '$': 'Civilisation finno-ougrienne'},
               {'@xml:lang': 'fr', '$': 'Ouraliens'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077824',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Livonians'},
           'altLabel': {'@xml:lang': 'en', '$': 'Livs'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119600630',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Autobiographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Écrits autobiographiques'},
            {'@xml:lang': 'fr', '$': 'Littérature autobiographique'},
            {'@xml:lang': 'fr', '$': 'Récits autobiographiques'},
            {'@xml:lang': 'fr', '$': 'Autobiographies'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935764v',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biographies'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Biographies collectives'},
               {'@xml:lang': 'fr', '$': 'Notices biographiques'},
               {'@xml:lang': 'fr', '$': 'Histoires de vie (biographies)'},
               {'@xml:lang': 'fr', '$': 'Biographie'},
               {'@xml:lang': 'fr', '$': 'Récits de vie'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85010049',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Autobiographies'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-373',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Biographie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Autobiographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-373',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Biographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuQml85yvI7',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'autobiografía'},
            {'@xml:lang': 'fr', '$': 'autobiographie'},
            {'@xml:lang': 'en', '$': 'autobiography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci|http://ark.frantiq.fr/ark:/26678/pcrtuQml85yvI7',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif|biographie|autobiographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci',
             'prefLabel': [{'@xml:lang': 'es', '$': 'biografía'},
              {'@xml:lang': 'fr', '$': 'biographie'},
              {'@xml:lang': 'en', '$': 'biography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci'},
             'definition': {'@xml:lang': 'fr',
              '$': "Récit relatant la vie d'une personne (Lar.)"}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Restricted Access',
        'http://purl.org/eprint/accessRights/RestrictedAccess']}},
     {'@uri': '10670/1.r2puf7',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Du "piège" de la rhétorique à la critique de la critique : la pensée occidentale de la rhétorique de Friedrich Nietzsche à Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.'},
        {'@xml:lang': 'en',
         '$': 'From the "trap" of rhetoric to the critique of criticism : a study of Western thinking on rhetoric from Friedrich Nietzsche to Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.'}],
       'url': 'http://www.theses.fr/2009PA030091',
       'enrichedCreators': {'creator': {'@origin': 'Huang, Hai Rong',
         '@normalizedAuthor': 'Huang, Hai Rong',
         '@idAuthor': 'huang_hai_rong',
         'firstname': 'Hai Rong',
         'lastname': 'Huang',
         'title': [],
         'sameAs': {'idref': '168794357'}}},
       'date': {'@origin': '2009-10-19',
        '@startDate': '2009-10-19',
        '@endDate': '2009-10-19',
        '@treeDate': '2000/2000/2009',
        'normalizedDate': '2009-10-19',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2000'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2009'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '4623603',
         '$': 'http://www.theses.fr/2009PA030091'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Rhétorique'},
         {'@xml:lang': 'fr', '$': 'Tropes'},
         {'@xml:lang': 'fr', '$': 'Figures'},
         {'@xml:lang': 'fr', '$': 'Double nature'},
         {'@xml:lang': 'fr', '$': '"piège" de la rhétorique'},
         {'@xml:lang': 'fr', '$': 'Critique de la critique'},
         {'@xml:lang': 'en', '$': 'Rhetoric'},
         {'@xml:lang': 'en', '$': 'Tropes'},
         {'@xml:lang': 'en', '$': 'Figures'},
         {'@xml:lang': 'en', '$': 'Dual-nature'},
         {'@xml:lang': 'en', '$': '"trap" of rhetoric'},
         {'@xml:lang': 'en', '$': 'Critique if criticism'},
         []]},
       'abstract': [{'@xml:lang': 'fr',
         '$': "Cette étude est consacrée à la critique contemporaine occidentale de la rhétorique initiée par la critique nietzschéenne de la philosophie métaphysique. La rhétorique se présente comme une remise en cause et une ré-vision profonde et radicale de la nature du langage lui-même, et par la suite, de tous les aspects de la vie sociale et culturelle. Cette étude traite principalement de la pensée rhétorique chez quatre penseurs, Jacques Derrida, Michel Foucault, Paul de Man and Roland Barthes. Dans leurs héritage commun et leur critique de l'approche critique nietzschéenne, ils ont mis en lumière une double nature de la rhétorique : celle-ci non seulement caractérise le mécanisme de la métaphysique, mais aussi conduit tout usage du langage, y compris le discours critique, à un « piège » de déconstruction. Dans leur exposition de la nature et du mécanisme de la rhétorique, ils ont consacré leurs efforts, d'une part, à la réfutation d'une conception aristotélicienne du langage et de la rhétorique; et d'autre part, à une critique d'un certain aveuglement dont faisaient preuve les critiques de la métaphysique. Leur pensée critique sur la rhétorique se résume alors à deux questions: qu'est-ce que la nature de la rhétorique et à partir de là, du langage ? Comment la pensée critique — sur celle-ci et avec celle-ci — est-elle possible ? S’engageant dans une double tâche — une critique (démystification) et une auto-critique — la pensée critique se transforme alors à une « critique de la critique » en tant qu'une réflexion sur la limite de la pensée critique elle-même. C'est-à-dire, une critique — dans le sens kantien du mot — de l'[im]possibilité de la pensée rationnelle. Notre étude se concentre alors sur deux points : premièrement, la nature de la rhétorique telle que l'expose chacun de ces penseurs depuis sa propre perspective intellectuelle. Deuxièmement, la stratégie critique proposée et employée par chacun d'entre eux."},
        {'@xml:lang': 'en',
         '$': 'This thesis is a study of the contemporary Western critical approach to the problem of rhetoric pioneered by Nietzsche, in which rhetoric presents itself as a profound and radical questioning as well as a re-vision of the nature of language itself, and consequently of all aspects of social and cultural life. This study mainly addresses the rhetorical thinking of four critics — Jacques Derrida, Michel Foucault, Paul de Man and Roland Barthes — who, in their common inheritance from and critique of Nietzsche’s own critical approach, have revealed a dual-nature of rhetoric which not only characterizes the mechanism of metaphysics, but also inevitably enmeshes all human thinking — including critical thinking — in a trap of deconstruction. This double-edged character of rhetoric sets a dual-task for critical thinking: an endless criticism [demystification] and self-criticism. Critical thinking thus turns out to be a “critique of criticism” as a reflection on the limit of critical thinking itself, that is, a critique — in the Kantian sense of the word — of the [im]possibility of rational thinking. Accordingly, this study focuses on two points: firstly, the dual-nature of rhetoric as expounded by each one of the critics from his specific intellectual perspective; secondly, the strategy for critical thinking proposed and employed by each of them.'}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthJ0dPo1nlZ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'piège'},
            {'@xml:lang': 'es', '$': 'trampa'},
            {'@xml:lang': 'en', '$': 'trap'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrth0UcAMjUf4|http://ark.frantiq.fr/ark:/26678/pcrtcoV2DHQBSp|http://ark.frantiq.fr/ark:/26678/pcrthJ0dPo1nlZ'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtk9fsq49Ab1|http://ark.frantiq.fr/ark:/26678/pcrtcoV2DHQBSp|http://ark.frantiq.fr/ark:/26678/pcrthJ0dPo1nlZ'}],
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtcoV2DHQBSp',
             'prefLabel': [{'@xml:lang': 'es', '$': 'caza'},
              {'@xml:lang': 'fr', '$': 'chasse'},
              {'@xml:lang': 'en', '$': 'hunting'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'venatio'},
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtk9fsq49Ab1|http://ark.frantiq.fr/ark:/26678/pcrtcoV2DHQBSp',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|leisure|entertainment|hunting'}},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrth0UcAMjUf4|http://ark.frantiq.fr/ark:/26678/pcrtcoV2DHQBSp'}],
             'definition': {'@xml:lang': 'fr',
              '$': "Ce descripteur comprend la chasse en tant qu'activité mais aussi en tant que loisirs (BL)"}}}},
          {'@count': '13',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119452384',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Rhétorique'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939457q'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934764m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Art d'écrire"},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Écriture (rédaction)'},
               {'@xml:lang': 'fr', '$': 'Art de rédiger'},
               {'@xml:lang': 'fr', '$': "Écrit, Art de l'"},
               {'@xml:lang': 'fr', '$': "Art d'écrire (rédaction)"}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937328c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art oratoire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Discours, Art du'},
               {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
               {'@xml:lang': 'fr', '$': "Art de l'orateur"},
               {'@xml:lang': 'fr', '$': 'Art du discours'}]}}]},
          {'@count': '13',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007543',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Rhetoric'}},
          {'@count': '13',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7EYvXX8b0o',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'retórico'},
            {'@xml:lang': 'en', '$': 'rhetoric'},
            {'@xml:lang': 'fr', '$': 'rhétorique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrt7EYvXX8b0o'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Art qui donne les règles du bien dire (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
             'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Ens. des productions littéraires (Lar.)'}}}},
          {'@count': '20',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933785b',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Vie intellectuelle'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Intellectuelle, Vie'},
              {'@xml:lang': 'fr', '$': 'Vie culturelle'}]}}},
          {'@count': '20',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '20',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933067g',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Pensée'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Pensée (psychologie)'},
            {'@xml:lang': 'fr', '$': 'Pensée (philosophie)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931219p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Cognition'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Connaissance'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Théorie de la connaissance'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
               {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX528206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Pensamiento'},
           'label': {'@xml:lang': 'es', '$': 'Pensamiento'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85134988',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Thought and thinking'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Thinking'},
            {'@xml:lang': 'en', '$': 'Thoughts'},
            {'@xml:lang': 'en', '$': 'Mind'}]},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgrllU72Xv9',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'pensamiento'},
            {'@xml:lang': 'fr', '$': 'pensée'},
            {'@xml:lang': 'en', '$': 'thought'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtgrllU72Xv9'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6187',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'philosophy'},
            {'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The academic discipline concerned with making explicit the nature and significance of ordinary and scientific beliefs and investigating the intelligibility of concepts by means of rational argument concerning their presuppositions, implications, and interrelationships; in particular, the rational investigation of the nature and structure of reality (metaphysics), the resources and limits of knowledge (epistemology), the principles and import of moral judgment (ethics), and the relationship between language and reality (semantics).'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330837'},
            {'@uri': 'http://eurovoc.europa.eu/2369'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119368422',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Et la philosophie'},
            {'@xml:lang': 'fr', '$': 'Contribution à la philosophie'},
            {'@xml:lang': 'fr', '$': 'Philosophie occidentale'},
            {'@xml:lang': 'fr', '$': 'Aspect philosophique'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525257',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Filosofía'},
           'label': {'@xml:lang': 'es', '$': 'Filosofía'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005065',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Knowledge--Philosophy'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'},
            {'@xml:lang': 'en', '$': 'philosophy'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
            {'@xml:lang': 'fr', '$': 'Logique philosophique'},
            {'@xml:lang': 'fr', '$': 'Morale'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie'}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
            {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
            {'@xml:lang': 'fr', '$': 'Philosophie première'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119368422',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Et la philosophie'},
              {'@xml:lang': 'fr', '$': 'Contribution à la philosophie'},
              {'@xml:lang': 'fr', '$': 'Philosophie occidentale'},
              {'@xml:lang': 'fr', '$': 'Aspect philosophique'}]}}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX525256',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Metafísica'},
           'label': {'@xml:lang': 'es', '$': 'Metafísica'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'metafísica'},
            {'@xml:lang': 'en', '$': 'metaphysic'},
            {'@xml:lang': 'fr', '$': 'métaphysique'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'ontologie'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|métaphysique'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (aspecto)'},
              {'@xml:lang': 'fr', '$': 'philosophie (aspect)'},
              {'@xml:lang': 'en', '$': 'philosophy (aspect)'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'philosophie aspect'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119518052',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Causalité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Causation'},
            {'@xml:lang': 'fr', '$': 'Cause finale'},
            {'@xml:lang': 'fr', '$': 'Cause'},
            {'@xml:lang': 'fr', '$': 'Principe de causalité'},
            {'@xml:lang': 'fr', '$': 'Loi de causalité'},
            {'@xml:lang': 'fr', '$': 'Effet et cause'},
            {'@xml:lang': 'fr', '$': 'Cause et effet'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Théorie de la connaissance'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
               {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85021459',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Causation'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Causality'},
            {'@xml:lang': 'en', '$': 'Effect and cause'},
            {'@xml:lang': 'en', '$': 'Cause and effect'},
            {'@xml:lang': 'en', '$': 'Final cause'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526171',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Causalidad'},
           'label': {'@xml:lang': 'es', '$': 'Causalidad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Causa y efecto'}},
          {'@count': '7',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLXP4RGpOzE',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'naturaleza'},
            {'@xml:lang': 'en', '$': 'nature'},
            {'@xml:lang': 'fr', '$': 'nature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D|http://ark.frantiq.fr/ark:/26678/pcrtLXP4RGpOzE',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filosofía|filosofía (noción)|naturaleza/cultura|naturaleza'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D',
             'prefLabel': [{'@xml:lang': 'es', '$': 'naturaleza/cultura'},
              {'@xml:lang': 'en', '$': 'nature/culture'},
              {'@xml:lang': 'fr', '$': 'nature/culture'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'culture/nature'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D'}}}},
          {'@count': '7',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1400',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Nature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1400',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Nature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '7',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933874z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Nature'}},
          {'@count': '7',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85090277',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Nature'}},
          {'@count': '4',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
            {'@xml:lang': 'en', '$': 'language'},
            {'@xml:lang': 'es', '$': 'lenguaje'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
            {'@xml:lang': 'fr', '$': 'Langage et langues'},
            {'@xml:lang': 'fr', '$': 'Langues et langage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
              {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
            {'@xml:lang': 'fr', '$': 'Traditions'},
            {'@xml:lang': 'fr', '$': 'Coutumes'},
            {'@xml:lang': 'fr', '$': 'Vie sociale'},
            {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
            {'@xml:lang': 'fr', '$': 'Us et coutumes'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318485j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Ethnologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Anthropologie culturelle'},
               {'@xml:lang': 'fr', '$': 'Anthropologie sociale'},
               {'@xml:lang': 'fr', '$': 'Ethnographie'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
               {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
               {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-155'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008851',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social life and customs'},
           'altLabel': {'@xml:lang': 'en', '$': 'Customs'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'social life'},
            {'@xml:lang': 'es', '$': 'vida social'},
            {'@xml:lang': 'fr', '$': 'vie sociale'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
             'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
              {'@xml:lang': 'fr', '$': 'société'},
              {'@xml:lang': 'en', '$': 'society'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
             'definition': {'@xml:lang': 'fr',
              '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133187961',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Participation sociale'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Action collective (sciences sociales)'},
            {'@xml:lang': 'fr', '$': 'Citoyens, Participation des'},
            {'@xml:lang': 'fr', '$': 'Engagement social'},
            {'@xml:lang': 'fr',
             '$': 'Actions collectives (sciences sociales)'},
            {'@xml:lang': 'fr', '$': 'Vie publique'},
            {'@xml:lang': 'fr', '$': 'Mobilisation sociale'},
            {'@xml:lang': 'fr', '$': 'Vie sociale'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932672g',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie sociale'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Psychosociologie'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85123981',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social participation'},
           'altLabel': {'@xml:lang': 'en', '$': 'Participation, Social'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133408662',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire sociale'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Faits sociaux'},
            {'@xml:lang': 'fr', '$': 'Sociologie descriptive'},
            {'@xml:lang': 'fr', '$': 'Vie sociale'},
            {'@xml:lang': 'fr', '$': 'Climat social'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
               {'@xml:lang': 'fr', '$': 'Sciences historiques'},
               {'@xml:lang': 'fr', '$': 'Science historique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133408573',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sociologie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Aspect sociologique'},
               {'@xml:lang': 'fr', '$': 'Doctrines sociales'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85123948',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social history'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Social conditions'},
            {'@xml:lang': 'en', '$': 'Descriptive sociology'},
            {'@xml:lang': 'en', '$': 'Social history--Modern, 1500-'}]},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119321278',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Intellectuels'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Travailleurs intellectuels'},
            {'@xml:lang': 'fr', '$': 'Milieu intellectuel'},
            {'@xml:lang': 'fr', '$': 'Intelligentsia'},
            {'@xml:lang': 'fr', '$': 'Penseurs'},
            {'@xml:lang': 'fr', '$': 'Milieux intellectuels'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934124q',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Classes sociales'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Couches sociales'},
              {'@xml:lang': 'fr', '$': 'Distinctions sociales'},
              {'@xml:lang': 'fr', '$': 'Catégories sociales'},
              {'@xml:lang': 'fr', '$': 'Inégalités sociales'}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX527163',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Intelectuales'},
           'label': {'@xml:lang': 'es', '$': 'Intelectuales'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85067169',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Intellectuals'},
           'altLabel': {'@xml:lang': 'en', '$': 'Intelligentsia'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11951178b',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Successions et héritages'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Droit successoral'},
            {'@xml:lang': 'fr', '$': 'Succession (droit)'},
            {'@xml:lang': 'fr', '$': 'Biens successoraux'},
            {'@xml:lang': 'fr', '$': 'Patrimoine successoral'},
            {'@xml:lang': 'fr', '$': 'Transmission successorale'},
            {'@xml:lang': 'fr', '$': 'Héritage'},
            {'@xml:lang': 'fr', '$': 'Droit de succession'},
            {'@xml:lang': 'fr', '$': 'Droit des successions'},
            {'@xml:lang': 'fr', '$': 'Héritiers'},
            {'@xml:lang': 'fr', '$': 'Successions'},
            {'@xml:lang': 'fr', '$': 'Héritages'},
            {'@xml:lang': 'fr', '$': 'Dévolution successorale'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12649852x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Droit civil'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Droit commun (droit privé)'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11980255b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Décès (droit)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Décès'},
               {'@xml:lang': 'fr', '$': 'Mort (droit)'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85066373',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Inheritance and succession'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Intestacy'},
            {'@xml:lang': 'en', '$': 'Descents'},
            {'@xml:lang': 'en', '$': 'Intestate succession'},
            {'@xml:lang': 'en',
             '$': 'Inheritance and succession--Law and legislation'},
            {'@xml:lang': 'en', '$': 'Hereditary succession'},
            {'@xml:lang': 'en', '$': 'Law of succession'},
            {'@xml:lang': 'en', '$': 'Bequests'},
            {'@xml:lang': 'en', '$': 'Succession, Intestate'},
            {'@xml:lang': 'en', '$': 'Descent and distribution'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrte88u2W6RBs',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'herencia'},
            {'@xml:lang': 'fr', '$': 'héritage'},
            {'@xml:lang': 'en', '$': 'inheritance'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs|http://ark.frantiq.fr/ark:/26678/pcrte88u2W6RBs'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs',
             'prefLabel': [{'@xml:lang': 'en', '$': 'civil law'},
              {'@xml:lang': 'es', '$': 'derecho civil'},
              {'@xml:lang': 'fr', '$': 'droit civil'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtSaXPZf1ALs|http://ark.frantiq.fr/ark:/26678/pcrtdK3LFkQgSs'},
             'definition': {'@xml:lang': 'fr',
              '$': "Branche du droit privé portant sur l'état et la capacité des personnes, la famille, le patrimoine, la transmission des biens, les contrats et les obligations (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb144551060',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Vulgarité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Terre à terre'},
            {'@xml:lang': 'fr', '$': 'Bathos (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Banal (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Grossier'},
            {'@xml:lang': 'fr', '$': 'Trivial'},
            {'@xml:lang': 'fr', '$': 'Banalité (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Vulgaire'},
            {'@xml:lang': 'fr', '$': 'Bassesse'},
            {'@xml:lang': 'fr', '$': 'Trivialité'},
            {'@xml:lang': 'fr', '$': 'Vulgarité (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Bas (esthétique)'},
            {'@xml:lang': 'fr', '$': 'Mauvais goût'},
            {'@xml:lang': 'fr', '$': 'Grossièreté'},
            {'@xml:lang': 'fr', '$': 'Commun'},
            {'@xml:lang': 'fr', '$': 'Prosaïque'},
            {'@xml:lang': 'fr', '$': 'Anti-sublime'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119518021',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Attitude (psychologie)'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Comportement (psychologie)'},
               {'@xml:lang': 'fr', '$': 'Opinion'},
               {'@xml:lang': 'fr', '$': 'Attitudes (psychologie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931288h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Esthétique'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Théorie de l'art"},
               {'@xml:lang': 'fr', '$': 'Théories artistiques'},
               {'@xml:lang': 'fr', '$': "Et l'esthétique"},
               {'@xml:lang': 'fr', '$': "Contribution à l'esthétique"},
               {'@xml:lang': 'fr', '$': "Art, Théorie de l'"},
               {'@xml:lang': 'fr', '$': 'Philosophie des arts'},
               {'@xml:lang': 'fr', '$': 'Théorie artistique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85012332',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bathos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002004226',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Vulgarity'},
           'altLabel': {'@xml:lang': 'en', '$': 'Coarseness (Vulgarity)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
            {'@xml:lang': 'fr', '$': 'lumière'},
            {'@xml:lang': 'es', '$': 'luz'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y|http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|bien/mal|lumière/ténèbres|lumière'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y',
             'prefLabel': [{'@xml:lang': 'en', '$': 'light/dark'},
              {'@xml:lang': 'fr', '$': 'lumière/ténèbres'},
              {'@xml:lang': 'es', '$': 'luz/tinieblas'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'lumière/ombre'},
              {'@xml:lang': 'fr', '$': 'ombre/lumière'},
              {'@xml:lang': 'fr', '$': 'ténèbres/lumière'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119582471',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Ondes lumineuses'},
            {'@xml:lang': 'fr', '$': 'Rayons lumineux'},
            {'@xml:lang': 'fr', '$': 'Rayonnement optique'},
            {'@xml:lang': 'fr', '$': 'Rayonnement visible'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944510b',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Ondes électromagnétiques'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': 'Rayonnement électromagnétique'},
              {'@xml:lang': 'fr', '$': 'Radioélectricité'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85076871',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Light'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525938',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Luz'},
           'label': {'@xml:lang': 'es', '$': 'Luz'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4810',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
            {'@xml:lang': 'es', '$': 'luz'},
            {'@xml:lang': 'fr', '$': 'lumière'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Electromagnetic radiation that is capable of causing a visual sensation.'},
           'semanticExpansion': [{'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5674',
              'prefLabel': [{'@xml:lang': 'en', '$': 'non-ionising radiation'},
               {'@xml:lang': 'es', '$': 'radiación no ionizante'},
               {'@xml:lang': 'fr', '$': 'rayonnement non-ionisant'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Radiation that does not change the structure of atoms but does heat tissue and may cause harmful biological effects.'}}},
            {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6884',
              'prefLabel': [{'@xml:lang': 'en', '$': 'radiation'},
               {'@xml:lang': 'es', '$': 'radiaciones'},
               {'@xml:lang': 'fr', '$': 'rayonnement'}],
              'definition': {'@xml:lang': 'en',
               '$': "Emission of any rays from either natural or man-made origins, such as radio waves, the sun's rays, medical X-rays and the fall-out and nuclear wastes produced by nuclear weapons and nuclear energy production. Radiation is usually divided between non-ionizing radiation, such as thermal radiation (heat) and light, and nuclear radiation. Non-ionizing radiation includes ultraviolet radiation from the sun which, although it can damage cells and tissues, does not involve the ionization events of nuclear radiation."}}}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4322'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Aérodynamique'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '080 Sciences exactes et appliquées|Physique'}}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-972',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gaine'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Conduit'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-972'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Second œuvre'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Finitions des travaux'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '010 Construction|Construction|Technologie de la construction|Second œuvre'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975752p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Usage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bon usage (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Usage (linguistique)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006425',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Usage'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Idioms, corrections, errors'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Use'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
            {'@xml:lang': 'es', '$': 'habla'},
            {'@xml:lang': 'fr', '$': 'discours'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
              {'@xml:lang': 'es', '$': 'medios de comunicación'},
              {'@xml:lang': 'fr', '$': 'mass media'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Parties du discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Péroraisons'},
            {'@xml:lang': 'fr', '$': 'Speeches'},
            {'@xml:lang': 'fr', '$': 'Allocutions'},
            {'@xml:lang': 'fr', '$': 'Oraisons'},
            {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
            {'@xml:lang': 'fr', '$': 'Philippiques'},
            {'@xml:lang': 'fr', '$': 'Proclamations'},
            {'@xml:lang': 'fr', '$': 'Exortations'},
            {'@xml:lang': 'fr', '$': 'Exordes'},
            {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Harangues'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
               {'@xml:lang': 'fr', '$': 'Transmission orale'},
               {'@xml:lang': 'fr', '$': 'Communication verbale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
            {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Orations'},
            {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Discourses'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX528471',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Discursos'},
           'label': {'@xml:lang': 'es', '$': 'Discursos'},
           'altLabel': {'@xml:lang': 'es', '$': 'Alocuciones'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
            {'@xml:lang': 'es', '$': 'discurso'},
            {'@xml:lang': 'en', '$': 'speech'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
              {'@xml:lang': 'fr', '$': 'genre oratoire'},
              {'@xml:lang': 'en', '$': 'oratory genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-663',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Déconstructivisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Déconstruction'},
            {'@xml:lang': 'fr', '$': 'Architecture déconstructiviste'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2122|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1056|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-156|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-663',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "001 Histoire de l'architecture|Histoire de l'architecture|Architecture contemporaine|Déconstructivisme"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-156',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Architecture contemporaine'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2122|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1056|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-156'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119916803',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Déconstruction'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Déconstruction (analyse littéraire)'},
            {'@xml:lang': 'fr', '$': 'Déconstruction (philosophie)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932255s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Théorie littéraire'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Poétique (théorie littéraire)'},
               {'@xml:lang': 'fr', '$': 'Théories de la littérature'},
               {'@xml:lang': 'fr', '$': 'Théorie de la littérature'},
               {'@xml:lang': 'fr', '$': 'Théories littéraires'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb131942840'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119400569'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85036226',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Deconstruction'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtHIQQQOymRm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'exhibition'},
            {'@xml:lang': 'es', '$': 'exposición'},
            {'@xml:lang': 'fr', '$': 'exposition'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtHIQQQOymRm',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|exposition'},
             {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|grabación - difusión|difusión de los conocimientos|exposición'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'diffusion des connaissances'},
              {'@xml:lang': 'es', '$': 'difusión de los conocimientos'},
              {'@xml:lang': 'en', '$': 'knowledge diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3067',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'exposure'},
            {'@xml:lang': 'es', '$': 'exposición'},
            {'@xml:lang': 'fr', '$': 'exposition'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The time for which a material is illuminated or irradiated.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6228',
             'prefLabel': [{'@xml:lang': 'en', '$': 'physical process'},
              {'@xml:lang': 'es', '$': 'procesos físicos'},
              {'@xml:lang': 'fr', '$': 'processus physique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A continuous action or series of changes which alters the material form of matter.'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-904',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Exposition'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1396|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-904'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1396',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Muséologie'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Muséographie'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120733024',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Réfutation'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85112333',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Refutation (Logic)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119764523',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Conception'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006371',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Design'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Processus de conception'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Conception de projet'},
            {'@xml:lang': 'fr', '$': 'Conception'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2138|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '041 Méthodologie|Méthodologie|Méthodologie du projet|Processus de conception'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Méthodologie du projet'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6RTH82bJkr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'evidence'},
            {'@xml:lang': 'fr', '$': 'preuve'},
            {'@xml:lang': 'es', '$': 'prueba'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN|http://ark.frantiq.fr/ark:/26678/pcrt6RTH82bJkr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN',
             'prefLabel': [{'@xml:lang': 'es', '$': 'procedimiento'},
              {'@xml:lang': 'en', '$': 'procedure'},
              {'@xml:lang': 'fr', '$': 'procédure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtgx5yOalcpT|http://ark.frantiq.fr/ark:/26678/pcrtZ5ajnsPcXB|http://ark.frantiq.fr/ark:/26678/pcrt25waPGSrpN'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Forme suivant laquelle les affaires sont instruites devant les tribunaux (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901811n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critiques'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034154',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Critics'},
           'altLabel': {'@xml:lang': 'en', '$': 'Literary critics'}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12260760t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Esprit critique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sens critique'},
            {'@xml:lang': 'fr', '$': 'Intelligence critique'},
            {'@xml:lang': 'fr', '$': 'Pensée critique'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119591668',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Jugement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Jugement logique'},
               {'@xml:lang': 'fr', '$': 'Jugement (logique)'},
               {'@xml:lang': 'fr', '$': 'Jugement synthétique'},
               {'@xml:lang': 'fr', '$': 'Jugement analytique'},
               {'@xml:lang': 'fr', '$': 'Jugement (philosophie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119518021',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Attitude (psychologie)'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Comportement (psychologie)'},
               {'@xml:lang': 'fr', '$': 'Opinion'},
               {'@xml:lang': 'fr', '$': 'Attitudes (psychologie)'}]}}]},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh87003202',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Critical thinking'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Thinking, Critical'},
            {'@xml:lang': 'en', '$': 'Reflection process'},
            {'@xml:lang': 'en', '$': 'Reflection (Critical thinking)'},
            {'@xml:lang': 'en', '$': 'Thinking, Reflective'},
            {'@xml:lang': 'en', '$': 'Reflective thinking'},
            {'@xml:lang': 'en', '$': 'Critical reflection'}]},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX551093',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Pensamiento crítico'},
           'label': {'@xml:lang': 'es', '$': 'Pensamiento crítico'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
            {'@xml:lang': 'fr', '$': 'Possible'},
            {'@xml:lang': 'fr', '$': 'Impossible'},
            {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Impossibilité'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
               {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX531645',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7037',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'reflection'},
            {'@xml:lang': 'es', '$': 'reflexión'},
            {'@xml:lang': 'fr', '$': 'réflexion'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The return of waves or particles from surfaces on which they are incident.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6228',
             'prefLabel': [{'@xml:lang': 'en', '$': 'physical process'},
              {'@xml:lang': 'es', '$': 'procesos físicos'},
              {'@xml:lang': 'fr', '$': 'processus physique'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A continuous action or series of changes which alters the material form of matter.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkvLS3IY4Q6',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'reflection'},
            {'@xml:lang': 'fr', '$': 'réflexion'},
            {'@xml:lang': 'es', '$': 'reflexión'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'réflexion histoire'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtkvLS3IY4Q6',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|histoire-civilisation|réflexion'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
              {'@xml:lang': 'es', '$': 'historia-civilización'},
              {'@xml:lang': 'en', '$': 'history-civilization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
             'definition': {'@xml:lang': 'fr',
              '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1208',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Limite'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1208',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "060 Sciences humaines|Perception|Perception de l'espace|Limite"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513',
             'prefLabel': {'@xml:lang': 'fr', '$': "Perception de l'espace"},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': "060 Sciences humaines|Perception|Perception de l'espace"}}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#SENS',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sens'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#BOURGOGNE|http://GeoEthno#YONNE|http://GeoEthno#SENS',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe occidentale|France|Bassin Parisien|Bourgogne|Yonne|Sens'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#YONNE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Yonne'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE|http://GeoEthno#BASSIN_PARISIEN|http://GeoEthno#BOURGOGNE|http://GeoEthno#YONNE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France|Bassin Parisien|Bourgogne|Yonne'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
            {'@xml:lang': 'fr', '$': 'Termes'},
            {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Mots'},
            {'@xml:lang': 'fr', '$': 'Vocables'},
            {'@xml:lang': 'fr', '$': 'Mot'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527050',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
           'label': {'@xml:lang': 'es', '$': 'Terminología'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
           'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932949s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perspective'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Perspective (art)'},
            {'@xml:lang': 'fr', '$': 'Perspective (architecture)'},
            {'@xml:lang': 'fr', '$': 'Perspective linéaire'},
            {'@xml:lang': 'fr', '$': 'Perspective aérienne (peinture)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935513d',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Espace (art)'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Espace de l'oeuvre d'art"},
              {'@xml:lang': 'fr', '$': 'Espace de la scène représentée (art)'},
              {'@xml:lang': 'fr', '$': 'Espace pictural'},
              {'@xml:lang': 'fr', '$': 'Espace plastique'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85100171',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Perspective'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Mechanical perspective'},
            {'@xml:lang': 'en', '$': 'Linear perspective'},
            {'@xml:lang': 'en', '$': 'Architectural perspective'}]},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX526251',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Perspectiva'},
           'label': {'@xml:lang': 'es', '$': 'Perspectiva'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Perspectiva arquitectónica'},
            {'@xml:lang': 'es', '$': 'Perspectiva lineal'},
            {'@xml:lang': 'es', '$': 'Perspectiva mecánica'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'perspectiva'},
            {'@xml:lang': 'en', '$': 'perspective'},
            {'@xml:lang': 'fr', '$': 'perspective'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF|http://ark.frantiq.fr/ark:/26678/pcrtIB6g7W9PYD'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'architectural representation'},
              {'@xml:lang': 'es', '$': 'representación arquitectural'},
              {'@xml:lang': 'fr', '$': 'représentation architecturale'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtRnZm96c6HF'}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1523',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perspective'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1523'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Technique de représentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '040 Techniques de représentation|Technique de représentation'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'estrategia'},
            {'@xml:lang': 'fr', '$': 'stratégie'},
            {'@xml:lang': 'en', '$': 'strategy'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'stratégie défensive'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz|http://ark.frantiq.fr/ark:/26678/pcrtG6GAQWGerl'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Partie  de l’art militaire qui consiste à organiser, à coordonner et à disposer les forces armées sur un théâtre d’opérations. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'arte militar'},
              {'@xml:lang': 'fr', '$': 'art militaire'},
              {'@xml:lang': 'en', '$': 'warfare'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrtktNqY0JyPz'},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des connaissances qui se rapportent à la constitution et à l'emploi des forces armées ou, plus généralement, au métier des armes (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133183858',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Stratégie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Stratégie militaire'},
            {'@xml:lang': 'fr', '$': 'Géostratégie'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133183002',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Art et science militaires'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Combat (science militaire)'},
               {'@xml:lang': 'fr', '$': 'Art militaire'},
               {'@xml:lang': 'fr', '$': 'Science militaire'},
               {'@xml:lang': 'fr', '$': 'Art de la guerre'},
               {'@xml:lang': 'fr', '$': 'Sciences militaires'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318436b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Guerre'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Polémologie'},
               {'@xml:lang': 'fr', '$': 'Conflits armés'},
               {'@xml:lang': 'fr', '$': 'Hostilités'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85128514',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Strategy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Military strategy'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524612',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Estrategia'},
           'label': {'@xml:lang': 'es', '$': 'Estrategia'},
           'altLabel': {'@xml:lang': 'es', '$': 'Estrategia militar'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'four'},
            {'@xml:lang': 'es', '$': 'horno'},
            {'@xml:lang': 'en', '$': 'kiln'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtIqEHwJLuq0',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|kiln'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Four sans précision d'utilisation (BL)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': [{'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.phil',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Filosofía'},
             {'@xml:lang': 'fr', '$': 'Philosophie'},
             {'@xml:lang': 'en', '$': 'Philosophy'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.phil',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Philosophie"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Philosophy'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Filosofía'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie261',
               'prefLabel': [{'@xml:lang': 'es', '$': 'Filosofía'},
                {'@xml:lang': 'fr', '$': 'Philosophie'},
                {'@xml:lang': 'en', '$': 'Philosophy'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie260|http://calenda.org/categories.rdf#categorie261',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Pensamiento|Filosofía'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Pensée|Philosophie'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Thought|Philosophy'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Philosophy'}]},
           {'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Littératures"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Literature'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
               'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
                {'@xml:lang': 'en', '$': 'Literature'},
                {'@xml:lang': 'fr', '$': 'Littératures'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Literature'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Littératures'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Literature'}]}]},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': [{'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie269',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Literature'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Littératures'}]}},
           {'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie261',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Filosofía'},
             {'@xml:lang': 'fr', '$': 'Philosophie'},
             {'@xml:lang': 'en', '$': 'Philosophy'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie260|http://calenda.org/categories.rdf#categorie261',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Pensamiento|Filosofía'},
              {'@xml:lang': 'fr', '$': 'Esprit et Langage|Pensée|Philosophie'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Thought|Philosophy'}]}}]}]},
       'dc:language': 'fr',
       'dc:rights': ['Restricted Access',
        'http://purl.org/eprint/accessRights/RestrictedAccess']}},
     {'@uri': '10670/1.mde5cq',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements'},
        {'@xml:lang': 'en',
         '$': "Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons"}],
       'url': 'http://www.theses.fr/2017MON30024/document',
       'enrichedCreators': {'creator': {'@origin': 'Meng, Qingya',
         '@normalizedAuthor': 'Meng, Qingya',
         '@idAuthor': 'meng_qingya',
         'firstname': 'Qingya',
         'lastname': 'Meng',
         'title': [],
         'sameAs': {'idref': '223782645'}}},
       'date': {'@origin': '2017-12-08',
        '@startDate': '2017-12-08',
        '@endDate': '2017-12-08',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-12-08',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '11898702',
         '$': 'http://www.theses.fr/2017MON30024/document'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Tel Quel'},
         {'@xml:lang': 'fr', '$': 'Voyage en Chine'},
         {'@xml:lang': 'fr', '$': 'Sollers'},
         {'@xml:lang': 'fr', '$': 'Kristeva'},
         {'@xml:lang': 'fr', '$': 'Pleynet'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         {'@xml:lang': 'en', '$': 'Tel Quel'},
         {'@xml:lang': 'en', '$': 'Trip to China'},
         {'@xml:lang': 'en', '$': 'Sollers'},
         {'@xml:lang': 'en', '$': 'Kristeva'},
         {'@xml:lang': 'en', '$': 'Pleynet'},
         {'@xml:lang': 'en', '$': 'Barthes'},
         []]},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'La thèse est consacrée au voyage en Chine (1974) de Philippe Sollers, Julia Kristeva et Marcelin Pleynet, représentants de la revue Tel Quel, avec Roland Barthes et son éditeur François Wahl. La question principale porte sur l’hétérogénéité des textes rédigés à propos de leur séjour au pays de Mao en pleine Révolution culturelle. Les publications correspondent à différents genres textuels : essais, romans, chroniques du journal, articles de presse et carnets de voyage. Avant le départ, les écrivains fantasment sur la Chine ancienne et contemporaine. C’est ce qui fait l’objet de la première partie de la thèse. Dans la seconde partie, il s’agit d’interroger les textes du corpus qui mettent en lumière les difficultés liées à l’idéologie imposée et vécue par les auteurs pour rendre compte du réel en Chine. La troisième partie portant sur les enseignements du voyage montre que ce dernier réapparaît sous forme de souvenirs inoubliables dans plusieurs textes des écrivains. Plus on s’éloigne de 1974, et plus la mémoire individuelle réactive de façon aléatoire le temps du voyage. Pour Barthes, il s’agit de savoir comment il a vécu la Chine, pourquoi il a gardé le silence à son retour, pourquoi il n’a pas cherché à publier les carnets de notes rapportés de son séjour. La thèse s’achève sur une lecture inédite des œuvres du corpus à travers un mot clé « la fadeur de la Chine ». Cette image est la plus vraie pour décrire l’Empire du Milieu mais elle n’est pas celle que les voyageurs s’attendaient à rencontrer.'},
        {'@xml:lang': 'en',
         '$': "This thesis is devoted to the trip to China made by Philippe Sollers, Julia Kristeva, Marcelin Pleynet, Roland Barthes and François Wahl in 1974. This study mainly concerns the heterogeneity of all the publications about their stay in Mao’s country in full Cultural Revolution, including essays, novels, travel journal, press articles and travel notes. In the first part of the study, we seek to understand how the members of the literary magazine Tel Quel dreamed to China, which they considered to be both ancient and modern before the travel. In the second part, we examine each text of the corpus to see the difficulties faced by the authors when they tried to account for the real China, including the imposed ideology. In the third part, we aim to ask how the trip in Communist China becomes an unforgettable memory in these travelers’ text. The more time goes by, the more travel memories reappear. In addition, we study Barthes to understand how he lived during his stay in China, why he kept silent after he returned, and why he didn't publish his notebooks of the trip before his death. At the end of the thesis, the unprecedented reading of texts of the corpus presents a key-word, the “insipidity of China”, a metaphor that is most trued to describe the middle Empire."}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '6',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11978431m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb165537089',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité spatiale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Mobilité géographique'},
               {'@xml:lang': 'fr', '$': 'Déplacements'}]}}},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137149',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Travel'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Traveling'},
             {'@xml:lang': 'en', '$': 'Travelling'}]},
           {'@count': '6',
            '@uri': 'http://datos.bne.es/resource/XX5251191',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Viaje'},
            'label': {'@xml:lang': 'es', '$': 'Viaje'}},
           {'@count': '6',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/8658',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viajes'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Moving from one place to another generally by using a transportation mean.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8582',
              'prefLabel': [{'@xml:lang': 'en', '$': 'traffic'},
               {'@xml:lang': 'es', '$': 'tráfico'},
               {'@xml:lang': 'fr', '$': 'trafic'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) The movement of vehicles, ships, aircraft, persons, etc., in an area or over a route. 2) The vehicles, persons, etc., moving in an area or over a route.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4767'}},
           {'@count': '6',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viaje'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa|http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|vie économique|commerce|route commerciale|voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'route commerciale'},
               {'@xml:lang': 'es', '$': 'ruta comercial'},
               {'@xml:lang': 'en', '$': 'trade-route'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa'}}}},
           {'@count': '6',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341|http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '061 Sociologie - population - loisirs|Population|Mobilité|Voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341'}}}},
           {'@count': '6',
            '@uri': 'http://GeoEthno#CHINE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
             {'@xml:lang': 'es', '$': 'China'},
             {'@xml:lang': 'en', '$': 'China'}],
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Première République chinoise (1912-1949)'},
             {'@xml:lang': 'en', '$': 'Republic of China (1912-1949)'},
             {'@xml:lang': 'fr', '$': 'République de Chine (1912-1949)'}],
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Asie|Asie orientale|Chine'},
              {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|China'},
              {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|China'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ASIE_ORIENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Asie orientale'},
               {'@xml:lang': 'es', '$': 'Asia Oriental'},
               {'@xml:lang': 'en', '$': 'Eastern Asia'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Extrême-Orient'},
               {'@xml:lang': 'fr', '$': "Asie de l'Est"},
               {'@xml:lang': 'es', '$': 'Este de Asia'},
               {'@xml:lang': 'es', '$': 'Asia del Este'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental'}]}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12113910b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enseignements'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Leçons'},
             {'@xml:lang': 'fr', '$': 'Préceptes'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009094',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Teachings'}},
           {'@count': '3',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13026',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'thesis'},
             {'@xml:lang': 'es', '$': 'tesis'},
             {'@xml:lang': 'fr', '$': 'thèse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A dissertation on a particular subject, in which original research has been done, usually by a candidate for a diploma or degree, or a proposition put forward for consideration, to be discussed and proved or maintained against objections.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
              'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
               {'@xml:lang': 'es', '$': 'tipo de documento'},
               {'@xml:lang': 'fr', '$': 'type de document'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4456'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4otVkR3bqD',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'door'},
             {'@xml:lang': 'fr', '$': 'porte'},
             {'@xml:lang': 'es', '$': 'puerta'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG|http://ark.frantiq.fr/ark:/26678/pcrt4otVkR3bqD'},
            'definition': {'@xml:lang': 'fr',
             '$': "Ouverture pratiquée dans un des plans verticaux qui limitent un espace clos, permettant la communication entre cet espace et ce qui est extérieur à cet espace, et pouvant être obturée par un panneau mobile; ensemble formé par cette ouverture et le moyen de fermeture; espace, obturé ou non, délimité par l'encadrement de cette ouverture (ATLIF)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG',
              'prefLabel': [{'@xml:lang': 'es', '$': 'parte de monumento'},
               {'@xml:lang': 'fr', '$': 'partie de monument'},
               {'@xml:lang': 'en', '$': 'part of building'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Utilisé seulement pour les parties de monument qui ne sont pas liées à un type de monument (BL)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1630',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Porte'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Portail'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1630',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '010 Construction|Construction|Technologie de la construction|Second œuvre|Fermeture|Porte'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Fermeture'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Persienne'},
               {'@xml:lang': 'fr', '$': 'Grille de protection'},
               {'@xml:lang': 'fr', '$': 'Store'},
               {'@xml:lang': 'fr', '$': 'Volet'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
             {'@xml:lang': 'es', '$': 'tierra'},
             {'@xml:lang': 'fr', '$': 'pays'}],
            'definition': {'@xml:lang': 'en',
             '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16570175g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'États'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'États souverains'},
             {'@xml:lang': 'fr', '$': 'Pays'},
             {'@xml:lang': 'fr', '$': 'Puissances'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11955453s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Géographie politique'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11935877g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique musicale'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Musique et informatique'},
             {'@xml:lang': 'fr', '$': 'Informatique et musique'},
             {'@xml:lang': 'fr', '$': 'Ordinateurs et musique'},
             {'@xml:lang': 'fr', '$': 'Musique et ordinateurs'},
             {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'MAO'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932109b',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Traitement des données'},
                {'@xml:lang': 'fr',
                 '$': "Information, Traitement électronique de l'"},
                {'@xml:lang': 'fr', '$': 'Traitement intégré des données'},
                {'@xml:lang': 'fr',
                 '$': "Traitement électronique de l'information"},
                {'@xml:lang': 'fr', '$': 'Informatisation'},
                {'@xml:lang': 'fr', '$': 'Gestion des données'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133183660',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Musique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres musicales'},
                {'@xml:lang': 'fr', '$': 'Art musical'},
                {'@xml:lang': 'fr', '$': 'Musique classique'},
                {'@xml:lang': 'fr', '$': 'Chants et musique'},
                {'@xml:lang': 'fr', '$': 'Musique savante'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85088783',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Music--Data processing'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX651689',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Música--Proceso de datos'},
            'label': {'@xml:lang': 'es', '$': 'Música--Proceso de datos'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#MAO',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mao'},
            'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#TCHAD|http://GeoEthno#REGION_DU_KANEM|http://GeoEthno#MAO',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Afrique|Afrique centrale|Tchad|Région du Kanem|Mao'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#REGION_DU_KANEM',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Région du Kanem'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Kânem'},
               {'@xml:lang': 'fr', '$': 'Kanem'}],
              'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#TCHAD|http://GeoEthno#REGION_DU_KANEM',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Afrique|Afrique centrale|Tchad|Région du Kanem'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11946083n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Musique par ordinateur'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Musique algorithmique'},
             {'@xml:lang': 'fr', '$': 'Musique générée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'Ordinateurs, Musique par'},
             {'@xml:lang': 'fr', '$': 'MAO'},
             {'@xml:lang': 'fr', '$': 'Musique sur ordinateur'},
             {'@xml:lang': 'fr', '$': 'Musique numérique'},
             {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935877g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique musicale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Musique et informatique'},
                {'@xml:lang': 'fr', '$': 'Informatique et musique'},
                {'@xml:lang': 'fr', '$': 'Ordinateurs et musique'},
                {'@xml:lang': 'fr', '$': 'Musique et ordinateurs'},
                {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'},
                {'@xml:lang': 'fr', '$': 'MAO'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121323832',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Musique électroacoustique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Musique électroacoustique sur support'},
                {'@xml:lang': 'fr', '$': 'Musiques électroacoustiques'},
                {'@xml:lang': 'fr', '$': 'Électroacoustique (musique)'},
                {'@xml:lang': 'fr', '$': 'Musique pour bande magnétique'},
                {'@xml:lang': 'fr', '$': 'Bandes magnétiques, Musique pour'},
                {'@xml:lang': 'fr',
                 '$': 'Musique électroacoustique sur bande'},
                {'@xml:lang': 'fr', '$': 'Musique sur bande magnétique'},
                {'@xml:lang': 'fr', '$': 'Musique électro-acoustique'},
                {'@xml:lang': 'fr', '$': 'Musique électronique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85029511',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Computer music'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Music, Computer'},
             {'@xml:lang': 'en', '$': 'Electroacoustic music'},
             {'@xml:lang': 'en', '$': 'Electro-acoustic music'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13162962h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Maintenance automatisée'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Autodiagnostic'},
             {'@xml:lang': 'fr', '$': "Équipement d'essai incorporé"},
             {'@xml:lang': 'fr', '$': 'Maintenance assistée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'MAO'},
             {'@xml:lang': 'fr', '$': 'GMAO'},
             {'@xml:lang': 'fr', '$': 'Auto-diagnostic'},
             {'@xml:lang': 'fr',
              '$': 'Mise au point automatique, Appareils et matériels de'},
             {'@xml:lang': 'fr',
              '$': 'Appareils de mise au point automatique'},
             {'@xml:lang': 'fr', '$': "Équipement d'essai automatique"}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11972980r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Automatisation'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Automation'},
                {'@xml:lang': 'fr', '$': 'Production automatique'},
                {'@xml:lang': 'fr', '$': 'Systèmes automatisés'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11966598g',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Contrôle non destructif'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Essais non destructifs'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119824661'}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85010085',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Automatic test equipment'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Built-in test equipment'},
             {'@xml:lang': 'en', '$': 'ACE (Automatic checkout equipment)'},
             {'@xml:lang': 'en', '$': 'ATE (Automatic test equipment)'},
             {'@xml:lang': 'en', '$': 'Automatic checkout equipment'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119523277',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Révolutions'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Révolutions politiques'},
             {'@xml:lang': 'fr', '$': 'Révolution'},
             {'@xml:lang': 'fr', '$': 'Mouvements révolutionnaires'},
             {'@xml:lang': 'fr', '$': 'Soulèvements'},
             {'@xml:lang': 'fr', '$': 'Insurrections'},
             {'@xml:lang': 'fr', '$': 'Rébellions'},
             {'@xml:lang': 'fr', '$': 'Guerres révolutionnaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12534189r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Violence politique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Politique et violence'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
                {'@xml:lang': 'fr', '$': 'Sciences historiques'},
                {'@xml:lang': 'fr', '$': 'Science historique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15846779q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Conflit (sociologie)'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Sociologie du conflit'},
                {'@xml:lang': 'fr', '$': 'Situations conflictuelles'},
                {'@xml:lang': 'fr', '$': 'Conflits (sociologie)'},
                {'@xml:lang': 'fr', '$': 'Affrontement (relations humaines)'},
                {'@xml:lang': 'fr', '$': 'Affrontements'},
                {'@xml:lang': 'fr', '$': 'Antagonismes'},
                {'@xml:lang': 'fr', '$': 'Situation conflictuelle'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Revolutions'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Insurrections'},
             {'@xml:lang': 'en', '$': 'Revolutionary wars'},
             {'@xml:lang': 'en', '$': 'Revolts'},
             {'@xml:lang': 'en', '$': 'Rebellions'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524516',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Revoluciones'},
            'label': {'@xml:lang': 'es', '$': 'Revoluciones'},
            'altLabel': {'@xml:lang': 'es', '$': 'Revoluciones políticas'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'revolución'},
             {'@xml:lang': 'en', '$': 'revolution'},
             {'@xml:lang': 'fr', '$': 'révolution'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK'},
            'definition': {'@xml:lang': 'fr',
             '$': "Changement plus ou moins brusque dans la structure économique, sociale et politique d'un Etat (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
              'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
               {'@xml:lang': 'fr', '$': 'troubles'},
               {'@xml:lang': 'en', '$': 'unrest'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
               {'@xml:lang': 'fr', '$': 'soulèvement'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
             {'@xml:lang': 'fr', '$': 'Publications imprimées'},
             {'@xml:lang': 'fr', '$': 'Écrits publiés'},
             {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2004003366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Publications'},
            'altLabel': {'@xml:lang': 'en', '$': 'Published material'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005648',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Testing'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
             {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
             {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
             {'@xml:lang': 'fr', '$': 'Récits'},
             {'@xml:lang': 'fr', '$': 'Romans'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
             {'@xml:lang': 'en', '$': 'Novels'},
             {'@xml:lang': 'en', '$': 'Stories'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11954066s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chroniques'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Annales'},
             {'@xml:lang': 'fr', '$': 'Chroniques (historiographie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
                {'@xml:lang': 'fr', '$': 'Littérature universelle'},
                {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
                {'@xml:lang': 'fr', '$': 'Sciences historiques'},
                {'@xml:lang': 'fr', '$': 'Science historique'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb15611232h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Articles de périodiques'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': "Recueils d'articles de périodiques"},
             {'@xml:lang': 'fr', '$': 'Articles de revues'},
             {'@xml:lang': 'fr', '$': 'Articles de presse'},
             {'@xml:lang': 'fr', '$': 'Articles (publications)'},
             {'@xml:lang': 'fr', '$': 'Articles de journaux'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933071q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Périodiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Magazines'},
               {'@xml:lang': 'fr', '$': 'Revues (publications)'},
               {'@xml:lang': 'fr', '$': 'Hebdomadaires'}]}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11979168c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes, esquisses, etc.'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Carnets'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001659',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Notebooks, sketchbooks, etc'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sketchbooks'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12369740j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cahiers'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Cahiers d'exercices"},
             {'@xml:lang': 'fr', '$': 'Calepins'},
             {'@xml:lang': 'fr', '$': 'Notes (recueils)'},
             {'@xml:lang': 'fr', '$': 'Bloc-notes'},
             {'@xml:lang': 'fr', '$': 'Mémorandums (cahiers)'},
             {'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Mémentos'},
             {'@xml:lang': 'fr', '$': 'Carnets'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
               {'@xml:lang': 'fr', '$': 'Livre'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092792',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Notebooks'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Exercise books'},
             {'@xml:lang': 'en', '$': 'Sketchbooks'}]},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
             {'@xml:lang': 'fr', '$': 'Gens de lettres'},
             {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
           {'@count': '3',
            '@uri': 'http://datos.bne.es/resource/XX526944',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
            'label': {'@xml:lang': 'es', '$': 'Escritores'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
             {'@xml:lang': 'es', '$': 'Literatos'}]},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
            'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#CHINE_ANCIENNE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chine ancienne'},
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE|http://GeoEthno#CHINE_ANCIENNE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Asie|Asie orientale|Chine|Chine ancienne'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#CHINE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
               {'@xml:lang': 'es', '$': 'China'},
               {'@xml:lang': 'en', '$': 'China'}],
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Première République chinoise (1912-1949)'},
               {'@xml:lang': 'en', '$': 'Republic of China (1912-1949)'},
               {'@xml:lang': 'fr', '$': 'République de Chine (1912-1949)'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale|Chine'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|China'},
                {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|China'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
             {'@xml:lang': 'fr', '$': 'objet'},
             {'@xml:lang': 'es', '$': 'objeto'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
             {'@xml:lang': 'fr', '$': 'petit objet'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|object'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
              'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
               {'@xml:lang': 'es', '$': 'mobiliario'},
               {'@xml:lang': 'fr', '$': 'mobilier'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
           {'@count': '4',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
             {'@xml:lang': 'es', '$': 'corpus'},
             {'@xml:lang': 'fr', '$': 'corpus'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
             {'@xml:lang': 'fr', '$': 'lumière'},
             {'@xml:lang': 'es', '$': 'luz'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y|http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philosophie|philosophie (aspect)|éthique|bien/mal|lumière/ténèbres|lumière'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y',
              'prefLabel': [{'@xml:lang': 'en', '$': 'light/dark'},
               {'@xml:lang': 'fr', '$': 'lumière/ténèbres'},
               {'@xml:lang': 'es', '$': 'luz/tinieblas'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'lumière/ombre'},
               {'@xml:lang': 'fr', '$': 'ombre/lumière'},
               {'@xml:lang': 'fr', '$': 'ténèbres/lumière'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119582471',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ondes lumineuses'},
             {'@xml:lang': 'fr', '$': 'Rayons lumineux'},
             {'@xml:lang': 'fr', '$': 'Rayonnement optique'},
             {'@xml:lang': 'fr', '$': 'Rayonnement visible'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944510b',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Ondes électromagnétiques'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Rayonnement électromagnétique'},
               {'@xml:lang': 'fr', '$': 'Radioélectricité'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85076871',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Light'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525938',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Luz'},
            'label': {'@xml:lang': 'es', '$': 'Luz'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4810',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
             {'@xml:lang': 'es', '$': 'luz'},
             {'@xml:lang': 'fr', '$': 'lumière'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Electromagnetic radiation that is capable of causing a visual sensation.'},
            'semanticExpansion': [{'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5674',
               'prefLabel': [{'@xml:lang': 'en',
                 '$': 'non-ionising radiation'},
                {'@xml:lang': 'es', '$': 'radiación no ionizante'},
                {'@xml:lang': 'fr', '$': 'rayonnement non-ionisant'}],
               'definition': {'@xml:lang': 'en',
                '$': 'Radiation that does not change the structure of atoms but does heat tissue and may cause harmful biological effects.'}}},
             {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6884',
               'prefLabel': [{'@xml:lang': 'en', '$': 'radiation'},
                {'@xml:lang': 'es', '$': 'radiaciones'},
                {'@xml:lang': 'fr', '$': 'rayonnement'}],
               'definition': {'@xml:lang': 'en',
                '$': "Emission of any rays from either natural or man-made origins, such as radio waves, the sun's rays, medical X-rays and the fall-out and nuclear wastes produced by nuclear weapons and nuclear energy production. Radiation is usually divided between non-ionizing radiation, such as thermal radiation (heat) and light, and nuclear radiation. Non-ionizing radiation includes ultraviolet radiation from the sun which, although it can damage cells and tissues, does not involve the ionization events of nuclear radiation."}}}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4322'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Aérodynamique'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '080 Sciences exactes et appliquées|Physique'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtWeWHKVeKlB',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ideología'},
             {'@xml:lang': 'fr', '$': 'idéologie'},
             {'@xml:lang': 'en', '$': 'ideology'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtWeWHKVeKlB',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|idéologie'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Sciences des idées (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
               {'@xml:lang': 'es', '$': 'historia-civilización'},
               {'@xml:lang': 'en', '$': 'history-civilization'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
              'definition': {'@xml:lang': 'fr',
               '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4137',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'ideology'},
             {'@xml:lang': 'es', '$': 'ideología'},
             {'@xml:lang': 'fr', '$': 'idéologie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A body of ideas that reflects the beliefs and interest of a nation, political system, etc. and underlies political action.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7781',
              'prefLabel': [{'@xml:lang': 'en', '$': 'social behaviour'},
               {'@xml:lang': 'es', '$': 'comportamiento social'},
               {'@xml:lang': 'fr', '$': 'comportement social'}],
              'definition': {'@xml:lang': 'en',
               '$': "A person or community's general treatment, manner of conduct or action toward others as individuals or as members of variously identified groups."}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1085',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Idéologie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1060|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1085',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Histoire|Histoire des idées|Idéologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1060',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire des idées'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11934230x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Idéologie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Idéologies, Théorie des'},
             {'@xml:lang': 'fr', '$': 'Théorie des idéologies'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
                {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119569197',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie sociale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Philosophie des sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Sciences sociales et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la société'},
                {'@xml:lang': 'fr', '$': 'Philosophie et sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Théorie sociale'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85064155',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Ideology'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525132',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Ideología'},
            'label': {'@xml:lang': 'es', '$': 'Ideología'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Creencias'},
             {'@xml:lang': 'es', '$': 'Mentalidad'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528102',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
            'label': {'@xml:lang': 'es', '$': 'Realidad'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Morphologie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Forme'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Morphologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976851v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Récits personnels'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Témoignages'},
             {'@xml:lang': 'fr', '$': 'Récits de témoins'},
             {'@xml:lang': 'fr', '$': 'Carnets de guerre'},
             {'@xml:lang': 'fr', '$': 'Carnets de route'},
             {'@xml:lang': 'fr', '$': 'Histoires vécues'},
             {'@xml:lang': 'fr', '$': 'Souvenirs'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001714',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Personal narratives'},
            'altLabel': {'@xml:lang': 'en', '$': 'Narratives, Personal'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'mémoire/oubli'},
             {'@xml:lang': 'es', '$': 'memoria/olvido'},
             {'@xml:lang': 'en', '$': 'memory/oblivion'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'mémoire'},
             {'@xml:lang': 'fr', '$': 'oubli/mémoire'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz|http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hombre'},
               {'@xml:lang': 'fr', '$': 'homme'},
               {'@xml:lang': 'en', '$': 'man'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb131626782',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Oubli'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_36912'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85083497',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Memory'},
            'altLabel': {'@xml:lang': 'en', '$': 'Retention (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Psychologie|Mémoire'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Psychologie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb121175090',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Aléatoire'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Temps'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133189074',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119780754',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Astronomie sphérique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Astronomie pratique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946909q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Longitude'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Degrés de longitude'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524393',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Tiempo'},
            'label': {'@xml:lang': 'es', '$': 'Tiempo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Duración'},
             {'@xml:lang': 'es', '$': 'Horas (Tiempo)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
            'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
             {'@xml:lang': 'es', '$': 'saber'},
             {'@xml:lang': 'fr', '$': 'savoir'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfKnVWnMTiS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'silence'},
             {'@xml:lang': 'fr', '$': 'silence'},
             {'@xml:lang': 'es', '$': 'silencio'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw|http://ark.frantiq.fr/ark:/26678/pcrtfKnVWnMTiS'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Pratique spirituelle préconisée par la quasi-totalité des traditions religieuses, pour faciliter une approche de la divinité ou pour atteindre des niveaux élevés de pureté spirituelle. (Wikipédia)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'actitud religiosa'},
               {'@xml:lang': 'fr', '$': 'attitude religieuse'},
               {'@xml:lang': 'en', '$': 'religious attitude'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'sentiment religieux'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936571t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Silence'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85122464',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Silence'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb144972893',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gloses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Gloses marginales'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Gloses (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Gloses interlinéaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318362m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Manuscrits'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ouvrages manuscrits'},
                {'@xml:lang': 'fr', '$': 'Livres manuscrits'},
                {'@xml:lang': 'fr', '$': 'Documents manuscrits'}]}}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12047425d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes marginales'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Marginalia'},
             {'@xml:lang': 'fr', '$': 'Apostilles'},
             {'@xml:lang': 'fr', '$': 'Manchettes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
               {'@xml:lang': 'fr', '$': 'Épitexte'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85081056',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Marginalia'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Marginal notes'},
             {'@xml:lang': 'en', '$': 'Notes, Marginal'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11977203k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Prise de notes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes, Prise de'},
             {'@xml:lang': 'fr', '$': 'Notes'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953339g'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119346301',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Reportage'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Enquêtes radiodiffusées'},
                {'@xml:lang': 'fr', '$': 'Téléreportage'},
                {'@xml:lang': 'fr', '$': 'Radioreportage'},
                {'@xml:lang': 'fr', '$': 'Grand reportage'},
                {'@xml:lang': 'fr', '$': 'Reportage et reporters'},
                {'@xml:lang': 'fr', '$': 'Enquêtes télévisées'},
                {'@xml:lang': 'fr', '$': 'Reportages'},
                {'@xml:lang': 'fr',
                 '$': 'Enquête sur le terrain (journalisme)'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092791',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Note-taking'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Taking notes'},
             {'@xml:lang': 'en', '$': 'Notetaking'},
             {'@xml:lang': 'en', '$': 'Keeping notes'},
             {'@xml:lang': 'en', '$': 'Notekeeping'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX549927',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'label': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Apuntes, Toma de'},
             {'@xml:lang': 'es', '$': 'Notas, Toma de'},
             {'@xml:lang': 'es', '$': 'Toma de notas'},
             {'@xml:lang': 'es', '$': 'Tomar apuntes'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13187149q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes en bas de page'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de chapitre'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de volume'},
             {'@xml:lang': 'fr', '$': 'Notes critiques'},
             {'@xml:lang': 'fr', '$': 'Éclaircissements et notes'},
             {'@xml:lang': 'fr', '$': 'Notes et éclaircissements'},
             {'@xml:lang': 'fr', '$': 'Notes de bas de page'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119474908',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Édition savante'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Édition académique'},
                {'@xml:lang': 'fr', '$': 'Édition universitaire'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119656766',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lecture'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Lecture en langue maternelle'},
             {'@xml:lang': 'fr', '$': 'Lecture en langue seconde'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007651',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reading'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576441',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Lectura'},
            'label': {'@xml:lang': 'es', '$': 'Lectura'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'lectura'},
             {'@xml:lang': 'fr', '$': 'lecture'},
             {'@xml:lang': 'en', '$': 'reading'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
              'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
               {'@xml:lang': 'es', '$': 'práctica cotidiana'},
               {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
             {'@xml:lang': 'fr', '$': 'Termes'},
             {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Mots'},
             {'@xml:lang': 'fr', '$': 'Vocables'},
             {'@xml:lang': 'fr', '$': 'Mot'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527050',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
            'label': {'@xml:lang': 'es', '$': 'Terminología'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
            'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDoiMB7bXc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'clé'},
             {'@xml:lang': 'en', '$': 'key'},
             {'@xml:lang': 'es', '$': 'llave'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'clef'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde|http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi|http://ark.frantiq.fr/ark:/26678/pcrtnDoiMB7bXc'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi',
              'prefLabel': [{'@xml:lang': 'es', '$': 'cerradura'},
               {'@xml:lang': 'en', '$': 'lock'},
               {'@xml:lang': 'fr', '$': 'serrure'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde|http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
             {'@xml:lang': 'fr', '$': 'image'},
             {'@xml:lang': 'es', '$': 'imagen'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
               {'@xml:lang': 'es', '$': 'estética'},
               {'@xml:lang': 'fr', '$': 'esthétique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science qui traite du beau en général (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Image'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Image'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Philosophie'}}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1gL0hsgQTY',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'empire'},
             {'@xml:lang': 'fr', '$': 'empire'},
             {'@xml:lang': 'es', '$': 'imperio'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY|http://ark.frantiq.fr/ark:/26678/pcrt1gL0hsgQTY',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|régime politique|monarchie|empire'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Gouvernement par un empereur (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'monarchie'},
               {'@xml:lang': 'en', '$': 'monarchy'},
               {'@xml:lang': 'es', '$': 'monarquía'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|régime politique|monarchie'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Gouvernement d'un Etat régi par un seul chef (Lar.)"}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936603m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Empire'},
            'altLabel': {'@xml:lang': 'fr', '$': "Idée d'empire"},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16044793j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Hégémonie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Prépondérance'},
                {'@xml:lang': 'fr', '$': 'Suprématie'},
                {'@xml:lang': 'fr', '$': 'Hégémonisme'},
                {'@xml:lang': 'fr', '$': 'Supériorité'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12650518z',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Monarchie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Royauté'},
                {'@xml:lang': 'fr', '$': 'Souverains'},
                {'@xml:lang': 'fr', '$': 'Gouvernement monarchique'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11956587m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyageurs'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Touristes'},
             {'@xml:lang': 'fr', '$': 'Globe-trotters'},
             {'@xml:lang': 'fr', '$': 'Clientèle touristique'},
             {'@xml:lang': 'fr', '$': 'Visiteurs'},
             {'@xml:lang': 'fr', '$': 'Vacanciers'},
             {'@xml:lang': 'fr', '$': 'Routards'},
             {'@xml:lang': 'fr', '$': 'Estivants'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99003907',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Tourists'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sightseers'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527053',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Viajeros'},
            'label': {'@xml:lang': 'es', '$': 'Viajeros'},
            'altLabel': {'@xml:lang': 'es', '$': 'Turistas'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137170',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Travelers'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Wayfarers'},
             {'@xml:lang': 'en', '$': 'Voyagers'},
             {'@xml:lang': 'en', '$': 'Travellers'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965103m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Country'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Western music'},
             {'@xml:lang': 'fr', '$': 'Musique country'},
             {'@xml:lang': 'fr', '$': 'Western and country music'},
             {'@xml:lang': 'fr', '$': 'Musique hillbilly'},
             {'@xml:lang': 'fr', '$': 'Chansons country'},
             {'@xml:lang': 'fr', '$': 'Country music'},
             {'@xml:lang': 'fr', '$': 'Country (musique)'},
             {'@xml:lang': 'fr', '$': 'Hillbilly music'},
             {'@xml:lang': 'fr', '$': 'Musique western'},
             {'@xml:lang': 'fr', '$': 'Country and western music'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119387308',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Musique populaire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Musique de variétés'},
                {'@xml:lang': 'fr', '$': 'Chansons populaires'},
                {'@xml:lang': 'fr', '$': 'Chants populaires'},
                {'@xml:lang': 'fr', '$': 'Palmarès de la chanson'},
                {'@xml:lang': 'fr', '$': 'Chanson populaire'},
                {'@xml:lang': 'fr', '$': 'Variétés (musique)'},
                {'@xml:lang': 'fr', '$': 'Musiques populaires'},
                {'@xml:lang': 'fr', '$': 'Musiques actuelles'},
                {'@xml:lang': 'fr', '$': 'Hit parade'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11981730m'}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX536714',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Country'},
            'label': {'@xml:lang': 'es', '$': 'Country'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Country (Música)'},
             {'@xml:lang': 'es', '$': 'Hillbilly (Música)'},
             {'@xml:lang': 'es', '$': 'Música country'},
             {'@xml:lang': 'es', '$': 'Música hillbilly'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85033470',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Country music'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Western and country music'},
             {'@xml:lang': 'en', '$': 'Country and western music'},
             {'@xml:lang': 'en', '$': 'Country music--United States'},
             {'@xml:lang': 'en', '$': 'Hillbilly music'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976283t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Addition'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119762547',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Barèmes'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Calculateurs'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930953j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Arithmétique'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85000817',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Addition'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#READING',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Reading'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE|http://GeoEthno#READING',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire|Reading'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BERKSHIRE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Berkshire'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire'}}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '15',
           '@uri': 'http://sws.geonames.org/1814991/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['China',
            {'@xml:lang': 'en', '$': 'China'},
            {'@xml:lang': 'es', '$': 'República Popular China'},
            {'@xml:lang': 'fr', '$': 'République populaire de Chine'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
            {'@xml:lang': 'fr', '$': 'République populaire de Chine'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255147/|http://sws.geonames.org/1814991/',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Asie|République populaire de Chine'},
             {'@xml:lang': 'es', '$': 'Asia|República Popular China'},
             {'@xml:lang': 'en', '$': 'Asia|China'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Asie|China'},
             {'@xml:lang': 'es', '$': 'Asia|China'},
             {'@xml:lang': 'en', '$': 'Asia|China'}]},
           'latitude': '35',
           'longitude': '105',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255147/',
             'prefLabel': ['Asia',
              {'@xml:lang': 'en', '$': 'Asia'},
              {'@xml:lang': 'fr', '$': 'Asie'},
              {'@xml:lang': 'es', '$': 'Asia'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Asie'},
             'latitude': '29.84064',
             'longitude': '89.29688'}},
           'exactMatch': [[], []]}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Open Access',
        'http://purl.org/eprint/accessRights/OpenAccess']}},
     {'@uri': '10670/1.q48hre',
      'isidore': {'title': [{'@xml:lang': 'fr',
         '$': 'Roland Barthes : figures du discours de l\'amour, de la mort et du deuil dans "Fragments d\'un discours amoureux", "La chambre claire. Note sur la photographie" et "Journal de deuil"'},
        {'@xml:lang': 'en',
         '$': 'Roland Barthes : figures of the speech of love, death and mourning in "fragments of a lover’s discourse", "Camera Lucida. Reflections on Photography" and "Mourning Diary"'}],
       'url': 'http://www.theses.fr/2019PA100039',
       'enrichedCreators': {'creator': {'@origin': 'Sassi, Sonia',
         '@normalizedAuthor': 'Sassi, Sonia',
         '@idAuthor': 'sassi_sonia',
         'firstname': 'Sonia',
         'lastname': 'Sassi',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2019-06-18',
        '@startDate': '2019-06-18',
        '@endDate': '2019-06-18',
        '@treeDate': '2000/2010/2019',
        'normalizedDate': '2019-06-18',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2019'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '22991507',
         '$': 'http://www.theses.fr/2019PA100039'}},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Discours'},
         {'@xml:lang': 'fr', '$': 'Figure'},
         {'@xml:lang': 'fr', '$': 'Interdiscours'},
         {'@xml:lang': 'fr', '$': 'Métaphoricité'},
         {'@xml:lang': 'fr', '$': 'Subjectivité'},
         {'@xml:lang': 'fr', '$': 'Sujet'},
         {'@xml:lang': 'en', '$': 'Discourse'},
         {'@xml:lang': 'en', '$': 'Figure'},
         {'@xml:lang': 'en', '$': 'Interdiscourse'},
         {'@xml:lang': 'en', '$': 'Metaphoricity'},
         {'@xml:lang': 'en', '$': 'Subjectivity'},
         {'@xml:lang': 'en', '$': 'Subject'},
         '440']},
       'abstract': [{'@xml:lang': 'fr',
         '$': 'Cette thèse de doctorat s’intitule Roland Barthes : Figures du discours de l’amour, de la mort et du deuil dans Fragments d’un discours amoureux, La chambre claire. Note sur la photographie et Journal de deuil, parus respectivement en 1977, 1980 et 2009. Au point de convergence des sciences du langage et de la littérature, cette recherche de longue haleine se fonde sur une démarche générative, appréhendant les trois textes du corpus l’un par rapport à l’autre, tout le long des étapes de l’investigation menée. Dans l’analyse des trois essais qui constituent un triptyque interdépendant et solidaire, l’objectif de cette thèse est non seulement de mettre en relief leurs affinités et leurs recoupements , mais aussi leurs différences et leurs disparités, à tous les niveaux : la configuration des thèmes, des mots , des notions et des expressions clés constitutifs de l’amour, de la mort et du deuil, la morphologie et la composition des trois textes, la métaphoricité et sa sémiotique, les dispositions énonciatives du discours et de l’interdiscours qu’ils soutiennent. Ainsi sera-t-il aisé de reconnaitre ce qu’une science de l’énonciation et des formations discursives peut apporter à l’analyse littéraire : des microlectures centrées sur des lexies, des détails infimes et des séquences à travers lesquels la littérature, confrontée à la passion amoureuse, à la sidération funèbre et à l’affliction du deuil, affirme sa puissance, mais aussi son effondrement.'},
        {'@xml:lang': 'en',
         '$': 'This doctoral thesis is entitled Figures of the speech of love, death and mourning in Fragments of a lover’s discourse, Camera Lucida. Reflections on Photography and Mourning Diary, published respectively in 1977, 1980 and 2009. At the point of convergence of language sciences and literature, this long-term research is based on a generative approach, understanding the three texts of the corpus in relation to each other, throughout the stages of the investigation conducted. In the analysis of the three essays, which constitutes an interdependent triptych, the objective of this thesis is not only to highlight the affinities and their intersections, but also their differences and disparities at all levels: the configuration of the themes, words, notions and key expressions constituting love, death and mourning, the morphology and composition of the three texts, the metaphoricity and its semiotics, the enunciating dispositions of the speech and the interdiscourse they support. Thus it will be easy to recognize what a science of enunciation and discursive formations can bring to literary analysis: microreadings centered on lexis, minute details and sequences through which literature confronted with love passion, funeral amazement and grief, affirms its strength, but also its collapse.'}],
       'types': {'type': ['Electronic Thesis or Dissertation', 'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Theses.fr',
         '@handle': '10670/3.o5ieb8',
         '@collectionUuid': 'ec757956-2a3c-42f8-baaf-f0298c74e965',
         '$': 'Theses.fr'},
        'collectionOrganization': {'@organizationUrl': 'http://www.abes.fr',
         '$': "Agence bibliographique de l'enseignement supérieur"},
        'collectionURLMainSite': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'collectionInformations': {'collectionDescription': "L'ABES met en œuvre depuis 2011 un portail des thèses : ce guichet unique fédère l'accès aux thèses françaises validées et proposera un bouquet d'informations et de services depuis le choix du sujet de thèse jusqu'à la valorisation des travaux.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'yann.nicolas@abes.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.o5ieb8|10670/2.lwlrtb',
         '$': 'Theses.fr#Theses.fr'},
        'sourceCode': {'@handle': '10670/2.lwlrtb',
         '$': '0d26aed9-dfe2-46e6-8068-616c828c0693'},
        'sourceName': {'@shortLabel': 'Theses.fr', '$': 'Theses.fr'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '1069867',
         '$': 'http://www.theses.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'http://www.theses.fr',
         '$': "Le portail Theses.fr recense toutes les thèses soutenues depuis 2006 dans les établissements ayant choisi d'abandonner le dépôt de la thèse papier au profit du support électronique. Les données de Theses.fr sont validées par les personnels des établissements d'enseignements habilités à délivrer le doctorat. L'accès au texte intégral des thèses n'est pas systématique car conditionné à l'autorisation de mise en ligne accordée par le docteur et/ou les ayant-droits de la thèse. Le moissonnage de Theses.fr est vu de façon assez large sur le plan scientifique en raison de l'intérêt des SHS pour des champs très actuels de la recherche."},
        'sourceOrganization': {'label': 'ABES',
         'URI': 'http://www.abes.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'contact@abes.fr'},
        'sourceParameters': {'baseUrl': 'http://staroai.theses.fr/OAIHandler',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11940887s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Figures de rhétorique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Discours, Figures du'},
            {'@xml:lang': 'fr', '$': 'Figure (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Figures de style'},
            {'@xml:lang': 'fr', '$': 'Rhétorique, Figures de'},
            {'@xml:lang': 'fr', '$': 'Pensée, Figures de'},
            {'@xml:lang': 'fr', '$': 'Figures de discours'},
            {'@xml:lang': 'fr', '$': 'Style, Figures de'},
            {'@xml:lang': 'fr', '$': 'Tropes (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Figures rhétoriques'},
            {'@xml:lang': 'fr', '$': 'Figures de pensée'},
            {'@xml:lang': 'fr', '$': 'Figures du discours'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976573b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Stylistique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse stylistique'},
               {'@xml:lang': 'fr', '$': 'Style littéraire'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119452384',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Rhétorique'}}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005680',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Figures of speech'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX527156',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Figuras del lenguaje'},
           'label': {'@xml:lang': 'es', '$': 'Figuras del lenguaje'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Figuras de dicción'},
            {'@xml:lang': 'es', '$': 'Figuras de pensamiento'},
            {'@xml:lang': 'es', '$': 'Figuras retóricas'},
            {'@xml:lang': 'es', '$': 'Tropos'}]},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11930878m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Amour'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119489301',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Passions'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940600b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sentiments'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sensibilité'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
               {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
               {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
               {'@xml:lang': 'fr', '$': 'Expression des émotions'},
               {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
               {'@xml:lang': 'fr', '$': 'Émotivité'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85078519',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Love'},
           'altLabel': {'@xml:lang': 'en', '$': 'Affection'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'amor'},
            {'@xml:lang': 'fr', '$': 'amour'},
            {'@xml:lang': 'en', '$': 'love'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion|amour'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
             'prefLabel': [{'@xml:lang': 'es', '$': 'pasión'},
              {'@xml:lang': 'en', '$': 'passion'},
              {'@xml:lang': 'fr', '$': 'passion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion'}}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119325308',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mort'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Mort (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Philosophie de la mort'},
            {'@xml:lang': 'fr', '$': 'Décès'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937892v',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Philosophie de la nature'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Nature, Philosophie de la'},
               {'@xml:lang': 'fr', '$': 'Nature (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Cosmologie rationnelle'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Homme, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1348'}}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX525535',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Muerte'},
           'label': {'@xml:lang': 'es', '$': 'Muerte'},
           'altLabel': {'@xml:lang': 'es', '$': 'Muerte--Filosofía'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002024',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Death and burial'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Funeral and memorial services'},
            {'@xml:lang': 'en', '$': 'Biography--Last years and death'},
            {'@xml:lang': 'en', '$': 'Last illness'},
            {'@xml:lang': 'en', '$': 'Burial'},
            {'@xml:lang': 'en', '$': 'Interment'},
            {'@xml:lang': 'en', '$': 'Funeral'},
            {'@xml:lang': 'en', '$': 'Biography--Death and burial'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002023',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Death'}},
          {'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1368',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mort'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-888|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1368',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Anthropologie|Ethnologie|Mort'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-888',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Ethnologie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Rite'},
              {'@xml:lang': 'fr', '$': 'Ethnographie'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-888',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Anthropologie|Ethnologie'}}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'death'},
            {'@xml:lang': 'fr', '$': 'mort'},
            {'@xml:lang': 'es', '$': 'muerte'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Cessation complète et définitive de la vie d’un être humain, d’un animal. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '6',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'deuil'},
            {'@xml:lang': 'es', '$': 'duelo'},
            {'@xml:lang': 'en', '$': 'mourning'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh|http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Temps pendant lequel on porte les signes extérieurs liés à la mort d’un proche et consacré par l’usage. (Lar.) et/ou Douleur, affliction, éprouvée à la suite du décès de quelqu’un, état de celui qui l’éprouve. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh',
             'prefLabel': [{'@xml:lang': 'en', '$': 'death (concept)'},
              {'@xml:lang': 'fr', '$': 'mort (concept)'},
              {'@xml:lang': 'es', '$': 'muerte (concepto)'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mort concept'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Idée générale et abstraite que se fait l’esprit humain de la mort, et qui lui permet d’y rattacher les diverses perceptions qu’il en a. (Lar.)'}}}},
          {'@count': '6',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965570v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Deuil'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932531m'}}},
          {'@count': '6',
           '@uri': 'http://datos.bne.es/resource/XX548894',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Duelo'},
           'label': {'@xml:lang': 'es', '$': 'Duelo'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Duelo--Aspectos psicológicos'}},
          {'@count': '6',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85013296',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bereavement'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Loss of loved ones by death'}},
          {'@count': '4',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/12985',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'speech'},
            {'@xml:lang': 'es', '$': 'habla'},
            {'@xml:lang': 'fr', '$': 'discours'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An address or form of oral communication in which a speaker makes his thoughts and emotions known before an audience, often for a given purpose.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5079',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mass media'},
              {'@xml:lang': 'es', '$': 'medios de comunicación'},
              {'@xml:lang': 'fr', '$': 'mass media'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The means of communication that reach large numbers of people, such as television, newspapers, magazines and radio.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/452'}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11948542x',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Discours'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Parties du discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Péroraisons'},
            {'@xml:lang': 'fr', '$': 'Speeches'},
            {'@xml:lang': 'fr', '$': 'Allocutions'},
            {'@xml:lang': 'fr', '$': 'Oraisons'},
            {'@xml:lang': 'fr', '$': 'Discours (genre littéraire)'},
            {'@xml:lang': 'fr', '$': 'Philippiques'},
            {'@xml:lang': 'fr', '$': 'Proclamations'},
            {'@xml:lang': 'fr', '$': 'Exortations'},
            {'@xml:lang': 'fr', '$': 'Exordes'},
            {'@xml:lang': 'fr', '$': 'Discours (rhétorique)'},
            {'@xml:lang': 'fr', '$': 'Harangues'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
               {'@xml:lang': 'fr', '$': 'Transmission orale'},
               {'@xml:lang': 'fr', '$': 'Communication verbale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}]},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85126460',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Speeches, addresses, etc'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Addresses'},
            {'@xml:lang': 'en', '$': 'Papers, Collected (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Orations'},
            {'@xml:lang': 'en', '$': 'Collected papers (Anthologies)'},
            {'@xml:lang': 'en', '$': 'Discourses'}]},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX528471',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Discursos'},
           'label': {'@xml:lang': 'es', '$': 'Discursos'},
           'altLabel': {'@xml:lang': 'es', '$': 'Alocuciones'}},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'discours'},
            {'@xml:lang': 'es', '$': 'discurso'},
            {'@xml:lang': 'en', '$': 'speech'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'discours politique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u|http://ark.frantiq.fr/ark:/26678/pcrtSlc5i5N1Zb'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género oratorio'},
              {'@xml:lang': 'fr', '$': 'genre oratoire'},
              {'@xml:lang': 'en', '$': 'oratory genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtkGYsAjIN4u',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre oratoire'}}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb124918384',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Amoureux'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
            {'@xml:lang': 'fr', '$': 'Art photographique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
              {'@xml:lang': 'fr', '$': 'Arts plastiques'},
              {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
              {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX4683393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13026',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'thesis'},
            {'@xml:lang': 'es', '$': 'tesis'},
            {'@xml:lang': 'fr', '$': 'thèse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A dissertation on a particular subject, in which original research has been done, usually by a candidate for a diploma or degree, or a proposition put forward for consideration, to be discussed and proved or maintained against objections.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
             'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
              {'@xml:lang': 'es', '$': 'tipo de documento'},
              {'@xml:lang': 'fr', '$': 'type de document'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4456'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975290v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Doctorat'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Doctorat d'université"},
            {'@xml:lang': 'fr', '$': "Doctorat d'État"},
            {'@xml:lang': 'fr', '$': 'Doctorat du troisième cycle'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16766571s',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Écoles doctorales'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12360931z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Parus'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb165186924',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Paridés'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Paridae'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85098415',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Parus'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
            {'@xml:lang': 'es', '$': 'punto'},
            {'@xml:lang': 'fr', '$': 'point'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A position on a reference system determined by a survey.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
             'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
              {'@xml:lang': 'es', '$': 'parámetro'},
              {'@xml:lang': 'fr', '$': 'paramètre'}],
             'definition': {'@xml:lang': 'en',
              '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932194d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Linguistique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Science du langage'},
            {'@xml:lang': 'fr', '$': 'Théorie linguistique'},
            {'@xml:lang': 'fr', '$': 'Sciences du langage'},
            {'@xml:lang': 'fr', '$': 'Théories linguistiques'},
            {'@xml:lang': 'fr', '$': 'Langage, Science du'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
              {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
              {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525047',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Lingüística'},
           'label': {'@xml:lang': 'es', '$': 'Lingüística'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077222',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Linguistics'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Linguistic science'},
            {'@xml:lang': 'en', '$': 'Science of language'}]},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11938467s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Activités de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche fondamentale'},
            {'@xml:lang': 'fr', '$': 'Projets de recherche'},
            {'@xml:lang': 'fr', '$': 'Programmes de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Recherche pure'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
               {'@xml:lang': 'fr', '$': 'Sciences exactes'},
               {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933704h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail intellectuel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Activité intellectuelle'},
               {'@xml:lang': 'fr', '$': 'Travail mental'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-3'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525653',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
           'label': {'@xml:lang': 'es', '$': 'Investigación'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
            {'@xml:lang': 'es', '$': 'Investigación científica'},
            {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
            {'@xml:lang': 'es', '$': 'I+D'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Projet de recherche'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Recherche'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
            {'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'},
            {'@xml:lang': 'en', '$': 'research'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'organisation de la recherche'},
              {'@xml:lang': 'es', '$': 'organización de la investigación'},
              {'@xml:lang': 'en', '$': 'organization of research'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb131627530',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Marche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Marche à pied'},
            {'@xml:lang': 'fr', '$': 'Démarche'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11965344r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Locomotion humaine'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Marche humaine'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937804r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Locomotion animale'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Déplacements des animaux'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85144900',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Walking'},
           'altLabel': {'@xml:lang': 'en', '$': 'Pedestrianism'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85052741',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Gait in humans'},
           'altLabel': {'@xml:lang': 'en', '$': 'Human gaits'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
            {'@xml:lang': 'es', '$': 'corpus'},
            {'@xml:lang': 'fr', '$': 'corpus'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
              {'@xml:lang': 'es', '$': 'instrumento documental'},
              {'@xml:lang': 'fr', '$': 'outil documentaire'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Rapport'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Rapport'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'detection'},
            {'@xml:lang': 'es', '$': 'detección'},
            {'@xml:lang': 'fr', '$': 'investigation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The act or process of discovering evidence or proof of governmental, legal or ethical violations.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/111',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'administrative procedure'},
              {'@xml:lang': 'es', '$': 'procedimiento administrativo'},
              {'@xml:lang': 'fr', '$': 'procédure administrative'}]}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2700'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13077',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'assay'},
            {'@xml:lang': 'es', '$': 'ensayo'},
            {'@xml:lang': 'fr', '$': 'analyse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Qualitative or quantitative determination of the components of a material, such as an ore or a drug.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8405',
             'prefLabel': [{'@xml:lang': 'en', '$': 'test'},
              {'@xml:lang': 'es', '$': 'prueba'},
              {'@xml:lang': 'fr', '$': 'test'}],
             'definition': {'@xml:lang': 'en',
              '$': 'To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Analyse'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
            {'@xml:lang': 'es', '$': 'análisis'},
            {'@xml:lang': 'fr', '$': 'analyse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Examination or determination.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119756783',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse chimique'},
            {'@xml:lang': 'fr', '$': 'Dosage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
            {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
            {'@xml:lang': 'en', '$': 'Analytical methods'},
            {'@xml:lang': 'en', '$': 'Chemical analysis'},
            {'@xml:lang': 'en', '$': 'Analysis methods'},
            {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002428',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Assaying'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005648',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Testing'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4629',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'landform'},
            {'@xml:lang': 'es', '$': 'forma de relieve'},
            {'@xml:lang': 'fr', '$': 'relief'}],
           'definition': {'@xml:lang': 'en',
            '$': "Any physical, recognizable form or feature of the Earth's surface, having a characteristic shape and produced by natural causes; it includes major forms such as plane, plateau and mountain, and minor forms such as hill, valley, slope, esker, and dune. Taken together the landforms make up the surface configuration of the Earth's."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
             'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
              {'@xml:lang': 'es', '$': 'tierra'},
              {'@xml:lang': 'fr', '$': 'pays'}],
             'definition': {'@xml:lang': 'en',
              '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/10176',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'relief (land)'},
            {'@xml:lang': 'es', '$': 'relieve (tierra)'},
            {'@xml:lang': 'fr', '$': 'relief'}],
           'definition': {'@xml:lang': 'en',
            '$': "The physical shape, configuration or general unevenness of a part of the Earth's surface, considered with reference to variation of height and slope or to irregularities of the land surface; the elevation or difference in elevation, considered collectively, of a land surface."},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5405',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mountainous area'},
              {'@xml:lang': 'es', '$': 'zonas montañosas'},
              {'@xml:lang': 'fr', '$': 'zone de montagne'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Area characterized by conspicuous peaks, ridges, or mountain ranges.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1PtSvqzeS0',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'relief'},
            {'@xml:lang': 'fr', '$': 'relief'},
            {'@xml:lang': 'es', '$': 'relieve'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW|http://ark.frantiq.fr/ark:/26678/pcrt1PtSvqzeS0'},
           'definition': {'@xml:lang': 'fr',
            '$': "Ouvrage comportant des éléments qui se détachent plus ou moins d'un fond plan (Rob.). Pour le relief géographique employer     géomorphologie"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW',
             'prefLabel': [{'@xml:lang': 'es', '$': 'escultura'},
              {'@xml:lang': 'en', '$': 'sculpture'},
              {'@xml:lang': 'fr', '$': 'sculpture'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc|http://ark.frantiq.fr/ark:/26678/pcrt4rR2kyMQuW'},
             'definition': {'@xml:lang': 'fr',
              '$': "Domaine de l'art qui est concerné par la production de formes en ronde bosse ou en relief au moyen de diverses techniques : taille, moulage, modelage, fonte, repoussé, etc.  Ce terme désigne également l'oeuvre ou l'objet résultant de ces techniques. (Thésaurus Min. Culture F)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975676d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Thèmes, motifs'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sujets (thèmes)'},
            {'@xml:lang': 'fr', '$': 'Thèmes'},
            {'@xml:lang': 'fr', '$': 'Motifs (thèmes)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008982',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Themes, motives'},
           'altLabel': {'@xml:lang': 'en', '$': 'Motives, themes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008983',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literary themes, motives'},
           'altLabel': {'@xml:lang': 'en', '$': 'Themes, motives, Literary'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
            {'@xml:lang': 'fr', '$': 'Termes'},
            {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Mots'},
            {'@xml:lang': 'fr', '$': 'Vocables'},
            {'@xml:lang': 'fr', '$': 'Mot'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527050',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
           'label': {'@xml:lang': 'es', '$': 'Terminología'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
           'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5369',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'morphology'},
            {'@xml:lang': 'es', '$': 'morfología (biológica)'},
            {'@xml:lang': 'fr', '$': 'morphologie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The branch of biology concerned with the form and structure of organisms.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/881',
             'prefLabel': [{'@xml:lang': 'en', '$': 'biology'},
              {'@xml:lang': 'es', '$': 'biología'},
              {'@xml:lang': 'fr', '$': 'biologie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A division of the natural sciences concerned with the study of life and living organisms.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49903'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Morphologie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Forme'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Morphologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119758221',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Composition'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Analyse chimique'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Composition'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Results of analysis'},
            {'@xml:lang': 'en', '$': 'Analysis results'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtj2Jbe4hQGa',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'semiología'},
            {'@xml:lang': 'fr', '$': 'sémiologie'},
            {'@xml:lang': 'en', '$': 'semiology'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'sémiotique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtj2Jbe4hQGa'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Science étudiant les systèmes de signes (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11940671v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sémiotique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sémiologie (sémiotique)'},
            {'@xml:lang': 'fr', '$': 'Séméiologie'},
            {'@xml:lang': 'fr', '$': 'Séméiotique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
              {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
              {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85119950',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Semiotics'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Semiology (Linguistics)'},
            {'@xml:lang': 'en', '$': 'Semeiotics'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX530969',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Semiótica'},
           'label': {'@xml:lang': 'es', '$': 'Semiótica'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Semiología'},
            {'@xml:lang': 'es', '$': 'Semiología (Lingüística)'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11956991z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Analyse du discours littéraire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Discours littéraire'},
            {'@xml:lang': 'fr', '$': 'Analyse littéraire'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85038363',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Discourse analysis, Literary'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Literary discourse analysis'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975745d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Commentaire de texte'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Explication littéraire'},
            {'@xml:lang': 'fr', '$': 'Texte, Commentaire de'},
            {'@xml:lang': 'fr', '$': 'Analyse littéraire'},
            {'@xml:lang': 'fr', '$': 'Textes, Commentaire de'},
            {'@xml:lang': 'fr', '$': 'Explication de texte'},
            {'@xml:lang': 'fr', '$': 'Analyse de texte'},
            {'@xml:lang': 'fr', '$': 'Lecture méthodique'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005735',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Explication'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'pasión'},
            {'@xml:lang': 'en', '$': 'passion'},
            {'@xml:lang': 'fr', '$': 'passion'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT',
             'prefLabel': [{'@xml:lang': 'en', '$': 'ethics'},
              {'@xml:lang': 'fr', '$': 'éthique'},
              {'@xml:lang': 'es', '$': 'ética'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'morale'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science de la morale ; art de diriger la conduite (Rob.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119818259',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Chagrin'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Affliction'},
            {'@xml:lang': 'fr', '$': 'Peine'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
              {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
              {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
              {'@xml:lang': 'fr', '$': 'Expression des émotions'},
              {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
              {'@xml:lang': 'fr', '$': 'Émotivité'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85057330',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Grief'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Sorrow'},
            {'@xml:lang': 'en', '$': 'Mourning'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11951746c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Souffrance'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Peine'},
            {'@xml:lang': 'fr', '$': 'Souffrance morale'},
            {'@xml:lang': 'fr', '$': 'Affliction'},
            {'@xml:lang': 'fr', '$': 'Blessures morales'},
            {'@xml:lang': 'fr', '$': 'Douleur psychique'},
            {'@xml:lang': 'fr', '$': 'Douleur morale'},
            {'@xml:lang': 'fr', '$': 'Blessures psychiques'},
            {'@xml:lang': 'fr', '$': 'Souffrance psychique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119414481',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sens et sensations'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Sens (psychologie)'},
              {'@xml:lang': 'fr', '$': 'Sensation'},
              {'@xml:lang': 'fr', '$': 'Sensibilité'},
              {'@xml:lang': 'fr', '$': 'Sens (philosophie)'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527003',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Sufrimiento'},
           'label': {'@xml:lang': 'es', '$': 'Sufrimiento'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Aflicción'},
            {'@xml:lang': 'es', '$': 'Dolor psíquico'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85129634',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Suffering'},
           'altLabel': {'@xml:lang': 'en', '$': 'Affliction'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtD9Jt6A2Jia',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'potencia'},
            {'@xml:lang': 'en', '$': 'power (strength)'},
            {'@xml:lang': 'fr', '$': 'puissance'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z|http://ark.frantiq.fr/ark:/26678/pcrtD9Jt6A2Jia',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|métaphysique|puissance'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
             'prefLabel': [{'@xml:lang': 'es', '$': 'metafísica'},
              {'@xml:lang': 'en', '$': 'metaphysic'},
              {'@xml:lang': 'fr', '$': 'métaphysique'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'ontologie'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtmXe4y4LH4z',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|métaphysique'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
            {'@xml:lang': 'fr', '$': 'Sciences exactes'},
            {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527870',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias'},
           'label': {'@xml:lang': 'es', '$': 'Ciencias'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12517897m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Stages'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Programmes de stage'},
            {'@xml:lang': 'fr', '$': 'Étude et enseignement (stages)'},
            {'@xml:lang': 'fr', '$': 'Stages pratiques'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11954983v'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11951949z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Formation en alternance'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Stages préprofessionnels'},
               {'@xml:lang': 'fr', '$': 'Alternance pédagogique'},
               {'@xml:lang': 'fr', '$': 'Enseignement en alternance'},
               {'@xml:lang': 'fr', '$': 'Alternance (éducation)'},
               {'@xml:lang': 'fr', '$': 'Enseignement coopératif'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119789341',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Apprentissage par la découverte'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Pédagogie par l'action"},
               {'@xml:lang': 'fr', '$': 'Pédagogie par la découverte'},
               {'@xml:lang': 'fr', '$': 'Erlebnispädagogik'},
               {'@xml:lang': 'fr', '$': "Pédagogie de l'action"},
               {'@xml:lang': 'fr', '$': 'Découverte, Apprentissage par la'},
               {'@xml:lang': 'fr', '$': "Apprentissage par l'action"},
               {'@xml:lang': 'fr', '$': 'Pédagogie de la découverte'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX548925',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Prácticas profesionales'},
           'label': {'@xml:lang': 'es', '$': 'Prácticas profesionales'},
           'altLabel': [{'@xml:lang': 'es',
             '$': 'Prácticas profesionales externas'},
            {'@xml:lang': 'es', '$': 'Prácticas tuteladas'},
            {'@xml:lang': 'es', '$': 'Practicums'},
            {'@xml:lang': 'es', '$': 'Programas de prácticas profesionales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009011',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Study and teaching (Internship)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11945913q',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Subjectivité'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Théorie de la connaissance'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
               {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Homme, Philosophie de l'"},
               {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX534266',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Subjetividad'},
           'label': {'@xml:lang': 'es', '$': 'Subjetividad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Subjetivismo'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85129469',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Subjectivity'},
           'altLabel': {'@xml:lang': 'en', '$': 'Subjectivism'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
            {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
            {'@xml:lang': 'fr', '$': 'sujet'}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': ['Restricted Access',
        'http://purl.org/eprint/accessRights/RestrictedAccess']}},
     {'@uri': '10670/1.mhf0ku',
      'isidore': {'title': 'La mélancolie même de la photographie : Roland Barthes',
       'url': 'http://hdl.handle.net/1866/3267',
       'enrichedCreators': {'creator': {'@origin': 'Létourneau, Sophie',
         '@normalizedAuthor': 'Létourneau, Sophie',
         '@idAuthor': 'letourneau_sophie',
         'firstname': 'Sophie',
         'lastname': 'Létourneau',
         'title': [],
         'sameAs': {'idref': '192467468'}}},
       'date': {'@origin': '2010-01-19T17:21:47Z',
        '@startDate': '2010-01-19',
        '@endDate': '2010-01-19',
        '@treeDate': '2000/2010/2010',
        'normalizedDate': '2010-01-19',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2010'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '6852198',
         '$': 'http://hdl.handle.net/1866/3267'}},
       'subjects': {'subject': ['création littéraire',
         'critique littéraire',
         'narration',
         'écriture du réel',
         'écriture de la mémoire',
         'ville',
         'enfance',
         'amour',
         'deuil',
         'creative writing',
         'literary criticism',
         'narrative',
         'referential writing',
         'memory',
         'city',
         'childhood',
         'love',
         'mourning',
         'Literature - General / Littérature - Généralités (UMI : 0401)']},
       'types': {'type': 'Thèse ou mémoire / Thesis or Dissertation'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Bib. UdeM',
         '@handle': '10670/3.5o3050',
         '@collectionUuid': 'af157bb7-10f7-419d-b734-710816080fc2',
         '$': "Bibliothèques numériques de l'Université de Montréal"},
        'collectionOrganization': {'@organizationUrl': 'http://www.bib.umontreal.ca',
         '$': 'Université de Montréal'},
        'collectionURLMainSite': {'@thumbnaiId': '1884210',
         '$': 'http://www.bib.umontreal.ca'},
        'collectionInformations': {'collectionDescription': "Papyrus et Calypso sont des dépôts de données proposés par les bibliothèques de l'Université de Montréal. Vous trouverez ici différentes formes de travaux de recherche et d'enseignement (pré-publications, articles, rapports techniques, présentations, ensembles de données, etc.) produites par les professeurs et chercheurs de notre institution. Calypso vous fait découvrir une sélection d'objets numériques provenant des collections de la Direction des bibliothèques de l'Université de Montréal.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'depot@bib.umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.5o3050|10670/2.6mz01q',
         '$': "Bibliothèques numériques de l'Université de Montréal#Thèses et mémoires de l'UdeM"},
        'sourceCode': {'@handle': '10670/2.6mz01q',
         '$': '846d5562-7f37-4140-b86e-b4e1e3e64c95'},
        'sourceName': {'@shortLabel': "Thèses et mémoires de l'UdeM",
         '$': "Thèses et mémoires de l'UdeM"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '6849293',
         '$': 'http://hdl.handle.net/1866/2620'},
        'sourceScope': {'@uri': 'http://www.rechercheisidore.fr/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://hdl.handle.net/1866/2620',
         '$': "Source regroupant les thèses et mémoires (y compris les thèses électroniques) de l'Université de Montréal."},
        'sourceOrganization': {'label': "Bibliothèque de l'Université de Montréal",
         'URI': 'http://www.bib.umontreal.ca',
         'isoCountry': 'FR',
         'contactEmailAddress': 'depot@bib.umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://papyrus.bib.umontreal.ca/oai/request',
         'crawlingFrequency': '3600',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtYxWsvLQBcD',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'melancholy'},
            {'@xml:lang': 'es', '$': 'melancolía'},
            {'@xml:lang': 'fr', '$': 'mélancolie'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3|http://ark.frantiq.fr/ark:/26678/pcrtYxWsvLQBcD'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'pathologie'},
              {'@xml:lang': 'en', '$': 'pathology'},
              {'@xml:lang': 'es', '$': 'patología'}],
             'altLabel': [{'@xml:lang': 'en', '$': 'palaeopathology'},
              {'@xml:lang': 'fr', '$': 'paléopathologie'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtslhJM0KfQ3'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science des causes et des symptômes des maladies (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119324738',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mélancolie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Mal de vivre'},
            {'@xml:lang': 'fr', '$': 'Morosité'},
            {'@xml:lang': 'fr', '$': 'Abattement'},
            {'@xml:lang': 'fr', '$': 'Spleen'},
            {'@xml:lang': 'fr', '$': "Vague à l'âme"},
            {'@xml:lang': 'fr', '$': 'Déprime'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
              {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
              {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
              {'@xml:lang': 'fr', '$': 'Expression des émotions'},
              {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
              {'@xml:lang': 'fr', '$': 'Émotivité'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525217',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Melancolía'},
           'label': {'@xml:lang': 'es', '$': 'Melancolía'},
           'altLabel': {'@xml:lang': 'es', '$': 'Depresión mayor'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85083364',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Melancholy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Dejection'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
            {'@xml:lang': 'fr', '$': 'Art photographique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
              {'@xml:lang': 'fr', '$': 'Arts plastiques'},
              {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
              {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4683393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12227916r',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Création littéraire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Créativité (littérature)'},
            {'@xml:lang': 'fr', '$': "Art d'écrire (littérature)"},
            {'@xml:lang': 'fr', '$': 'Écriture (littérature)'},
            {'@xml:lang': 'fr', '$': 'Créativité littéraire'},
            {'@xml:lang': 'fr', '$': 'Génie littéraire'},
            {'@xml:lang': 'fr', '$': "Métier d'écrivain"}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13162724d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Création (esthétique)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Création (arts)'},
               {'@xml:lang': 'fr', '$': 'Création artistique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939457q'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85033847',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Creative writing'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writing (Authorship)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361722',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique littéraire'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16675880c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie littéraire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vie culturelle'},
               {'@xml:lang': 'fr', '$': 'Gens de lettres'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526725',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'label': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis literario'},
            {'@xml:lang': 'es', '$': 'Crítica de la literatura'},
            {'@xml:lang': 'es', '$': 'Literatura--Crítica'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4852',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature evaluation'},
            {'@xml:lang': 'es', '$': 'evaluación de documentación'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
             'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica literaria'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'},
            {'@xml:lang': 'en', '$': 'literary criticism'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'critique de texte'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11937212q',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Narration'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Narratologie'},
            {'@xml:lang': 'fr', '$': 'Récit'},
            {'@xml:lang': 'fr', '$': 'Narrativité'},
            {'@xml:lang': 'fr', '$': 'Techniques narratives'},
            {'@xml:lang': 'fr', '$': 'Narrateur'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85089833',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Narration (Rhetoric)'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Narrative (Rhetoric)'},
            {'@xml:lang': 'en', '$': 'Narrative writing'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
            {'@xml:lang': 'fr', '$': 'genre narratif'},
            {'@xml:lang': 'en', '$': 'narrative genre'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
              {'@xml:lang': 'fr', '$': 'genre littéraire'},
              {'@xml:lang': 'en', '$': 'literary genre'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Théorie de la connaissance'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
               {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX528102',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
           'label': {'@xml:lang': 'es', '$': 'Realidad'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'mémoire/oubli'},
            {'@xml:lang': 'es', '$': 'memoria/olvido'},
            {'@xml:lang': 'en', '$': 'memory/oblivion'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'mémoire'},
            {'@xml:lang': 'fr', '$': 'oubli/mémoire'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz|http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hombre'},
              {'@xml:lang': 'fr', '$': 'homme'},
              {'@xml:lang': 'en', '$': 'man'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb131626782',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Oubli'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_36912'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85083497',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Memory'},
           'altLabel': {'@xml:lang': 'en', '$': 'Retention (Psychology)'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Mémoire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Psychologie'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933792m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Villes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Milieu urbain'},
            {'@xml:lang': 'fr', '$': 'Espace urbain'},
            {'@xml:lang': 'fr', '$': 'Régions urbaines'},
            {'@xml:lang': 'fr', '$': 'Communes urbaines'},
            {'@xml:lang': 'fr', '$': 'Environnement urbain'},
            {'@xml:lang': 'fr', '$': 'Monde urbain'},
            {'@xml:lang': 'fr', '$': 'Cités'},
            {'@xml:lang': 'fr', '$': 'Ville'},
            {'@xml:lang': 'fr', '$': 'Zones urbaines'},
            {'@xml:lang': 'fr', '$': 'Grandes villes'},
            {'@xml:lang': 'fr', '$': 'Centres urbains'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133186257',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Établissements humains'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sol, Occupation du'},
               {'@xml:lang': 'fr', '$': 'Habitat humain'},
               {'@xml:lang': 'fr', '$': 'Implantations humaines'},
               {'@xml:lang': 'fr', '$': 'Occupation du sol'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119499021',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communes'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Municipalités'}}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85026130',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Cities and towns'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Global cities'},
            {'@xml:lang': 'en', '$': 'Towns'},
            {'@xml:lang': 'en', '$': 'Urban systems'},
            {'@xml:lang': 'en', '$': 'Municipalities'},
            {'@xml:lang': 'en', '$': 'Urban areas'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2075',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Ville'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2133|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-89|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-43|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2075',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '022 Villes et groupements habités|Analyse urbaine|Agglomération|Ville'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-43',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Agglomération'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciudad'},
            {'@xml:lang': 'en', '$': 'town'},
            {'@xml:lang': 'fr', '$': 'ville'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'agglomération'},
            {'@xml:lang': 'fr', '$': 'agglomération urbaine'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2|http://ark.frantiq.fr/ark:/26678/pcrtN5zGcqx0YR',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|nucleated settlement|town'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hábitat agrupado'},
              {'@xml:lang': 'fr', '$': 'habitat groupé'},
              {'@xml:lang': 'en', '$': 'nucleated settlement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrthXosl9QxQ2',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|habitat groupé"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|hábitat agrupado'}]},
             'definition': {'@xml:lang': 'fr',
              '$': "Sous ce terme sont regroupés tous les types d'agglomération urbaine (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/1421',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'city'},
            {'@xml:lang': 'es', '$': 'ciudades'},
            {'@xml:lang': 'fr', '$': 'ville'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Term used generically today to denote any urban form but applied particularly to large urban settlements. There are, however, no agreed definitions to separate a city from the large metropolis or the smaller town.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8797',
             'prefLabel': [{'@xml:lang': 'en', '$': 'urban area'},
              {'@xml:lang': 'es', '$': 'areas urbanas'},
              {'@xml:lang': 'fr', '$': 'zone urbaine'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Areas within the legal boundaries of cities and towns; suburban areas developed for residential, industrial or recreational purposes.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4709'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119319811',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Enfants'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Enfant'},
            {'@xml:lang': 'fr', '$': 'Enfance'},
            {'@xml:lang': 'fr', '$': 'Progéniture'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339867',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Famille'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Parents (membres d'une famille)"},
               {'@xml:lang': 'fr', '$': 'Vie familiale'},
               {'@xml:lang': 'fr', '$': 'Milieu familial'},
               {'@xml:lang': 'fr', '$': 'Relations familiales'},
               {'@xml:lang': 'fr', '$': 'Liens familiaux'},
               {'@xml:lang': 'fr', '$': 'Cellule familiale'},
               {'@xml:lang': 'fr', '$': 'Famille nucléaire'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12223381k',
              'prefLabel': {'@xml:lang': 'fr', '$': "Groupes d'âge"},
              'altLabel': [{'@xml:lang': 'fr', '$': "Classes d'âge"},
               {'@xml:lang': 'fr', '$': "Âge, Groupes d'"}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121235840',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Âges de la vie'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Âges de l'homme"},
               {'@xml:lang': 'fr', '$': 'Étapes de la vie'},
               {'@xml:lang': 'fr', '$': 'Cycle de la vie'},
               {'@xml:lang': 'fr', '$': 'Cycle vital'}]}}],
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_1547'},
            {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-946'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004941',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Children'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'childhood'},
            {'@xml:lang': 'fr', '$': 'enfance'},
            {'@xml:lang': 'es', '$': 'infancia'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs|http://ark.frantiq.fr/ark:/26678/pcrtrEpklX5nBf'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs',
             'prefLabel': [{'@xml:lang': 'en', '$': 'age group'},
              {'@xml:lang': 'es', '$': 'clase de edad'},
              {'@xml:lang': 'fr', '$': "classe d'âge"}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtuowQaT2IBK|http://ark.frantiq.fr/ark:/26678/pcrt1morFbI8Bs'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11930878m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Amour'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119489301',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Passions'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940600b',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sentiments'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sensibilité'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944030k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Émotions'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Contrôle émotionnel'},
               {'@xml:lang': 'fr', '$': 'Régulation des émotions'},
               {'@xml:lang': 'fr', '$': 'Régulation émotionnelle'},
               {'@xml:lang': 'fr', '$': 'Expression des émotions'},
               {'@xml:lang': 'fr', '$': 'Contrôle des émotions'},
               {'@xml:lang': 'fr', '$': 'Émotivité'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85078519',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Love'},
           'altLabel': {'@xml:lang': 'en', '$': 'Affection'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'amor'},
            {'@xml:lang': 'fr', '$': 'amour'},
            {'@xml:lang': 'en', '$': 'love'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE|http://ark.frantiq.fr/ark:/26678/pcrtsFdnVuIzkm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion|amour'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
             'prefLabel': [{'@xml:lang': 'es', '$': 'pasión'},
              {'@xml:lang': 'en', '$': 'passion'},
              {'@xml:lang': 'fr', '$': 'passion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'deuil'},
            {'@xml:lang': 'es', '$': 'duelo'},
            {'@xml:lang': 'en', '$': 'mourning'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh|http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Temps pendant lequel on porte les signes extérieurs liés à la mort d’un proche et consacré par l’usage. (Lar.) et/ou Douleur, affliction, éprouvée à la suite du décès de quelqu’un, état de celui qui l’éprouve. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh',
             'prefLabel': [{'@xml:lang': 'en', '$': 'death (concept)'},
              {'@xml:lang': 'fr', '$': 'mort (concept)'},
              {'@xml:lang': 'es', '$': 'muerte (concepto)'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mort concept'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Idée générale et abstraite que se fait l’esprit humain de la mort, et qui lui permet d’y rattacher les diverses perceptions qu’il en a. (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965570v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Deuil'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932531m'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX548894',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Duelo'},
           'label': {'@xml:lang': 'es', '$': 'Duelo'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Duelo--Aspectos psicológicos'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85013296',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bereavement'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Loss of loved ones by death'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb124572817',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Petite Ourse'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'UMi'},
            {'@xml:lang': 'fr', '$': 'Ursa Minor'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119369174',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Constellations'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008311',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Ursa Minor'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Lesser Bear (Constellation)'},
            {'@xml:lang': 'en', '$': 'Little Bear (Constellation)'},
            {'@xml:lang': 'en', '$': 'Little Dipper (Constellation)'}]}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'FR'}},
     {'@uri': '10670/1.1mcuau',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': 'Le Lieu habitable de Roland Barthes'},
       'url': 'https://dumas.ccsd.cnrs.fr/dumas-00736153',
       'enrichedCreators': {'creator': {'@origin': 'Panet, Florian',
         '@normalizedAuthor': 'Panet, Florian',
         '@idAuthor': 'panet_florian',
         'firstname': 'Florian',
         'lastname': 'Panet',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2012-09-25',
        '@startDate': '2012-09-25',
        '@endDate': '2012-09-25',
        '@treeDate': '2000/2010/2012',
        'normalizedDate': '2012-09-25',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2012'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00736153'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15170620',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00736153/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00736153/file/PANET_Florian_M2_RECH_2012_DUM_SANS_IMAGES.pdf'}],
        'similar': 'dumas-00736153'},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Habiter'},
         {'@xml:lang': 'fr', '$': 'Habitable'},
         {'@xml:lang': 'fr', '$': 'Lieu'},
         {'@xml:lang': 'fr', '$': 'Espace'},
         {'@xml:lang': 'fr', '$': 'Utopie'},
         {'@xml:lang': 'fr', '$': 'Atopie'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         {'@xml:lang': 'fr', '$': 'Proxémie'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': {'@xml:lang': 'fr',
        '$': 'Ce travail propose un cheminement à la recherche du lieu habitable dans l\'œuvre barthésienne. C\'est l\'occasion de s\'apercevoir que cette quête est bien délicate. En effet, qu\'il soit conflictuel, amoureux, complexe, le lien que Roland Barthes entretient avec son espace s\'est toujours accompagné de questionnements, d\'interrogations, d\'hésitations, de précautions propres à mettre à mal tout établissement d\'un lieu qui réunirait les conditions d\'habitabilité. S\'agit-il alors d\'abdiquer et, devant le caractère inhospitalier du monde, n\'avoir pour seul espoir que de "vivre dans l\'inhabitable", pour reprendre les mots de Barthes lui-même ? On ne peut toutefois se limiter à ce constat d\'échec, à ce paradoxe malheureux qui condamnerait toute tentative d\'habitation. C\'est sans doute pour cela que la maxime de l\'habitant doit être, comme l\'affirme Franz Kafka, "dans ton combat avec le monde, seconde le monde".'},
       'types': {'type': ['info:eu-repo/semantics/masterThesis',
         'Master Thesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.czoe88',
         '$': 'Archives ouvertes#DUMAS'},
        'sourceCode': {'@handle': '10670/2.czoe88',
         '$': '75d98e3b-b174-4fa2-8dab-d65eb895e16a'},
        'sourceName': {'@shortLabel': 'DUMAS',
         '$': 'Dépôt Universitaire de Mémoires Après Soutenance'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '631374',
         '$': 'http://dumas.ccsd.cnrs.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "DUMAS (Dépôt Universitaire de Mémoires Après Soutenance) est une base d'archives ouvertes de travaux d'étudiants de niveaux bac+4 et bac+5, validés par un jury, dans toutes les disciplines. La base DUMAS est hébergée par HAL.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/dumas',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'lieu'},
            {'@xml:lang': 'es', '$': 'lugar'},
            {'@xml:lang': 'en', '$': 'place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw|http://ark.frantiq.fr/ark:/26678/pcrtPZB1uLhkJZ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space|place'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
              {'@xml:lang': 'es', '$': 'espacio'},
              {'@xml:lang': 'en', '$': 'space'}],
             'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2014',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '042 Professions - travail|Travail'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2139',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '042 Professions - travail'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119715347',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Travail'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Tâches'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
              {'@xml:lang': 'fr', '$': 'Économie'},
              {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
              {'@xml:lang': 'fr', '$': 'Analyse économique'},
              {'@xml:lang': 'fr', '$': 'Science économique'},
              {'@xml:lang': 'fr', '$': 'Économique'},
              {'@xml:lang': 'fr', '$': 'Théorie économique'},
              {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
              {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-536'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006403',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Occupations'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524430',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Trabajo'},
           'label': {'@xml:lang': 'es', '$': 'Trabajo'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005236',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Employment'},
           'altLabel': {'@xml:lang': 'en', '$': 'Working conditions'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4577',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'labour'},
            {'@xml:lang': 'es', '$': 'trabajo'},
            {'@xml:lang': 'fr', '$': 'travail'}],
           'definition': {'@xml:lang': 'en',
            '$': 'One of the factors of production. It includes all the exertions - manual, physical or mental - by individuals, directed towards the production of wealth.'},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_6021'},
            {'@uri': 'http://eurovoc.europa.eu/4543'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'trabajo'},
            {'@xml:lang': 'fr', '$': 'travail'},
            {'@xml:lang': 'en', '$': 'work'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw',
             'prefLabel': [{'@xml:lang': 'es', '$': 'sociedad'},
              {'@xml:lang': 'fr', '$': 'société'},
              {'@xml:lang': 'en', '$': 'society'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw'},
             'definition': {'@xml:lang': 'fr',
              '$': "Les Notions ayant un rapport étroit avec l'économie ont été classées dans     vie économique     (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Cheminement'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Traversée'},
            {'@xml:lang': 'fr', '$': 'Parcours'},
            {'@xml:lang': 'fr', '$': 'Promenade'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '030 Paysage - environnement|Paysage|Aménagement paysager|Cheminement'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement paysager'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Urbanisme paysager'},
              {'@xml:lang': 'fr', '$': 'Aménagement de site'}]}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11938467s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Activités de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche fondamentale'},
            {'@xml:lang': 'fr', '$': 'Projets de recherche'},
            {'@xml:lang': 'fr', '$': 'Programmes de recherche'},
            {'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Recherche pure'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
               {'@xml:lang': 'fr', '$': 'Sciences exactes'},
               {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933704h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Travail intellectuel'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Activité intellectuelle'},
               {'@xml:lang': 'fr', '$': 'Travail mental'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-3'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006576',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Research'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525653',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Investigación'},
           'label': {'@xml:lang': 'es', '$': 'Investigación'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Ciencia--Investigación'},
            {'@xml:lang': 'es', '$': 'Investigación científica'},
            {'@xml:lang': 'es', '$': 'Investigación y desarrollo'},
            {'@xml:lang': 'es', '$': 'I+D'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Recherche'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Recherche scientifique'},
            {'@xml:lang': 'fr', '$': 'Projet de recherche'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1738',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Recherche'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7127',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'research'},
            {'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Scientific investigation aimed at discovering and applying new facts, techniques and natural laws.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6513'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'investigación'},
            {'@xml:lang': 'fr', '$': 'recherche'},
            {'@xml:lang': 'en', '$': 'research'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ|http://ark.frantiq.fr/ark:/26678/pcrtfi327GenVq',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Tema|metodología|utilización de los datos|organización de la investigación|investigación'},
             {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche|recherche'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'organisation de la recherche'},
              {'@xml:lang': 'es', '$': 'organización de la investigación'},
              {'@xml:lang': 'en', '$': 'organization of research'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtSPbJxwzVmX|http://ark.frantiq.fr/ark:/26678/pcrtZ50m7faghJ',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|exploitation des données|organisation de la recherche'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtR5ppaggJ0o',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'bien'},
            {'@xml:lang': 'fr', '$': 'bien'},
            {'@xml:lang': 'en', '$': 'good'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'honestum'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrtR5ppaggJ0o'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX',
             'prefLabel': [{'@xml:lang': 'es', '$': 'bien/mal'},
              {'@xml:lang': 'fr', '$': 'bien/mal'},
              {'@xml:lang': 'en', '$': 'good/evil'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mal/bien'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|bien/mal'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2562',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'effect'},
            {'@xml:lang': 'es', '$': 'efectos'},
            {'@xml:lang': 'fr', '$': 'effet'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Effects include: a) direct effects, which are caused by the action and occur at the same time and place, b) indirect effects, which are caused by the action and are later in time or farther removed in distance, that are still reasonably foreseeable.'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb124918384',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Amoureux'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'espace'},
            {'@xml:lang': 'es', '$': 'espacio'},
            {'@xml:lang': 'en', '$': 'space'}],
           'altLabel': {'@xml:lang': 'fr', '$': "notion d'espace"},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtnDIRNkhxON|http://ark.frantiq.fr/ark:/26678/pcrtXXK0nOUwSw',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|philosophy|philosophy (notion)|space-time continuum|space'}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12011791z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Espace'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003964',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Space'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtl4gxje4ai7',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'evil'},
            {'@xml:lang': 'es', '$': 'mal'},
            {'@xml:lang': 'fr', '$': 'mal'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrtl4gxje4ai7'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX',
             'prefLabel': [{'@xml:lang': 'es', '$': 'bien/mal'},
              {'@xml:lang': 'fr', '$': 'bien/mal'},
              {'@xml:lang': 'en', '$': 'good/evil'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mal/bien'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|bien/mal'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11958830z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Maladies'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Maladie'},
            {'@xml:lang': 'fr', '$': 'Maux'},
            {'@xml:lang': 'fr', '$': 'Mal'},
            {'@xml:lang': 'fr', '$': 'Pathologies'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527798',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Morbilidad'},
           'label': {'@xml:lang': 'es', '$': 'Morbilidad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Morbididad'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524957',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Enfermedades'},
           'label': {'@xml:lang': 'es', '$': 'Enfermedades'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002330',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Diseases'},
           'altLabel': {'@xml:lang': 'en', '$': 'Diseases and hygiene'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975256p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Caractère'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85022615',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Character'},
           'altLabel': {'@xml:lang': 'en', '$': 'Ethology'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526047',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Carácter'},
           'label': {'@xml:lang': 'es', '$': 'Carácter'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Caracteres (Psicología)'},
            {'@xml:lang': 'es', '$': 'Caracteriología'}]},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932363p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Monde'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_24920'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtxhEN68d3Ra',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'cosmos'},
            {'@xml:lang': 'es', '$': 'cosmos'},
            {'@xml:lang': 'fr', '$': 'cosmos'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'monde'},
            {'@xml:lang': 'fr', '$': 'univers'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtxhEN68d3Ra'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hombre-universo'},
              {'@xml:lang': 'fr', '$': 'homme-univers'},
              {'@xml:lang': 'en', '$': 'man-universe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'homme-monde-univers'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT'}}}},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/9380',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'world'},
            {'@xml:lang': 'es', '$': 'mundo'},
            {'@xml:lang': 'fr', '$': 'monde'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The Earth with all its inhabitants and all things upon it.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
             'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
              {'@xml:lang': 'es', '$': 'tierra'},
              {'@xml:lang': 'fr', '$': 'pays'}],
             'definition': {'@xml:lang': 'en',
              '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_24920'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11977007d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Richesse'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Opulence'},
            {'@xml:lang': 'fr', '$': 'Patrimoine économique national'},
            {'@xml:lang': 'fr', '$': 'Fortune'},
            {'@xml:lang': 'fr', '$': 'Biens temporels'},
            {'@xml:lang': 'fr', '$': 'Aisance'},
            {'@xml:lang': 'fr', '$': 'Richesse nationale'},
            {'@xml:lang': 'fr', '$': 'Abondance'},
            {'@xml:lang': 'fr', '$': 'Répartition des richesses'},
            {'@xml:lang': 'fr', '$': 'Richesses'},
            {'@xml:lang': 'fr', '$': 'Grandes fortunes'},
            {'@xml:lang': 'fr', '$': 'Patrimoine national'},
            {'@xml:lang': 'fr', '$': 'Fortunes'},
            {'@xml:lang': 'fr', '$': 'Avoir'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
              {'@xml:lang': 'fr', '$': 'Économie'},
              {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
              {'@xml:lang': 'fr', '$': 'Analyse économique'},
              {'@xml:lang': 'fr', '$': 'Science économique'},
              {'@xml:lang': 'fr', '$': 'Économique'},
              {'@xml:lang': 'fr', '$': 'Théorie économique'},
              {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
              {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85145828',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Wealth'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Fortunes'},
            {'@xml:lang': 'en', '$': 'Riches'},
            {'@xml:lang': 'en', '$': 'Affluence'},
            {'@xml:lang': 'en', '$': 'Distribution of wealth'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11947539s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Espérance'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Espoir'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940600b',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sentiments'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Sensibilité'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527300',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Esperanza'},
           'label': {'@xml:lang': 'es', '$': 'Esperanza'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85061922',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Hope'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
            {'@xml:lang': 'fr', '$': 'Termes'},
            {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Mots'},
            {'@xml:lang': 'fr', '$': 'Vocables'},
            {'@xml:lang': 'fr', '$': 'Mot'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527050',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
           'label': {'@xml:lang': 'es', '$': 'Terminología'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
           'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11957057j',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Échec'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Perdants'},
            {'@xml:lang': 'fr', '$': 'Losers'},
            {'@xml:lang': 'fr', '$': 'Échec (psychologie)'},
            {'@xml:lang': 'fr', '$': "Conduite d'échec"},
            {'@xml:lang': 'fr', '$': 'Loosers'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119361486',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Comportement humain'},
             'altLabel': {'@xml:lang': 'fr',
              '$': 'Comportement (psychologie)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046883',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Failure (Psychology)'},
           'altLabel': {'@xml:lang': 'en', '$': 'Losing (Psychology)'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX532613',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fracaso'},
           'label': {'@xml:lang': 'es', '$': 'Fracaso'},
           'altLabel': {'@xml:lang': 'es', '$': 'Fracaso (Psicología)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119378727',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Paradoxe'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Paradoxes'},
            {'@xml:lang': 'fr', '$': 'Raisonnement paradoxal'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097758',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradoxes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097756',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradox'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSxe2PZMWR8',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'dwelling-place'},
            {'@xml:lang': 'fr', '$': 'habitation'},
            {'@xml:lang': 'es', '$': 'vivienda'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtSxe2PZMWR8',
             'expandedLabel': [{'@xml:lang': 'en',
               '$': 'Themes|architecture|architecture (conception)|domestic architecture|settlement|dwelling-place'},
              {'@xml:lang': 'fr',
               '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat|habitation'}]},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W|http://ark.frantiq.fr/ark:/26678/pcrtSxe2PZMWR8'}],
           'definition': {'@xml:lang': 'fr',
            '$': 'Construction servant habituellement à résider (Dico archi po)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'habitat'},
              {'@xml:lang': 'es', '$': 'hábitat'},
              {'@xml:lang': 'en', '$': 'settlement'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment domestique'},
              {'@xml:lang': 'fr', '$': 'habitat dispersé'}],
             'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtxzTYzVBKas|http://ark.frantiq.fr/ark:/26678/pcrtWegewfItfX|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|architecture|architecture (conception)|architecture domestique|habitat'}},
              {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrtbptj4SOA1W'}],
             'definition': {'@xml:lang': 'fr',
              '$': "Lieu d'habitation construit."}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2387',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'dwelling'},
            {'@xml:lang': 'es', '$': 'vivienda'},
            {'@xml:lang': 'fr', '$': 'habitation'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Any enclosed space wholly or partially used or intended to be used for living, sleeping, cooking, and eating.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7144',
             'prefLabel': [{'@xml:lang': 'en', '$': 'residential building'},
              {'@xml:lang': 'es', '$': 'edificio residencial'},
              {'@xml:lang': 'fr', '$': "bâtiment d'habitation"}],
             'definition': {'@xml:lang': 'en',
              '$': 'A building allocated for residence.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1690'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11960405x',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Doute'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Doute méthodique'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Théorie de la connaissance'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
              {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
              {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
              {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85013004',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Belief and doubt'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Conviction'},
            {'@xml:lang': 'en', '$': 'Doubt'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1029',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Habitant'},
           'altLabel': {'@xml:lang': 'fr', '$': "habiter (l')"},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1861|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1029',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "061 Sociologie - population - loisirs|Sociologie|Sociologie de l'habitat|Habitant"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1861',
             'prefLabel': {'@xml:lang': 'fr', '$': "Sociologie de l'habitat"},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1861'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4323',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'inhabitant'},
            {'@xml:lang': 'es', '$': 'habitantes'},
            {'@xml:lang': 'fr', '$': 'habitant'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A person occupying a region, town, house, country, etc.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7622',
             'prefLabel': [{'@xml:lang': 'en',
               '$': 'settlement concentration'},
              {'@xml:lang': 'es', '$': 'concentración de asentamientos'},
              {'@xml:lang': 'fr', '$': 'concentration de peuplement'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The distribution or total amount of communities, villages and houses within a specified geographic area.'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119783858',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Combat'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85028791',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Combat'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Military combat'},
            {'@xml:lang': 'en', '$': 'Fighting'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5EjiIPAc1X',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'bataille'},
            {'@xml:lang': 'es', '$': 'batalla'},
            {'@xml:lang': 'en', '$': 'battle'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'combat'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6|http://ark.frantiq.fr/ark:/26678/pcrt5EjiIPAc1X'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Combat livré entre deux armées ou deux flottes (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6',
             'prefLabel': [{'@xml:lang': 'en', '$': 'acts of war'},
              {'@xml:lang': 'fr', '$': 'faits de guerre'},
              {'@xml:lang': 'es', '$': 'hechos de guerra'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtoBSSWiOt51|http://ark.frantiq.fr/ark:/26678/pcrt3P8IPYw9S6'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2046',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Utopie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Utopie sociale'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2046',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Utopie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119337395',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Utopies'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Utopie'},
            {'@xml:lang': 'fr', '$': 'Contre-utopies'},
            {'@xml:lang': 'fr', '$': 'Cité idéale (utopie)'},
            {'@xml:lang': 'fr', '$': 'Anti-utopies'},
            {'@xml:lang': 'fr', '$': 'Utopies sociales'},
            {'@xml:lang': 'fr', '$': 'Dystopies'},
            {'@xml:lang': 'fr', '$': 'Utopistes'},
            {'@xml:lang': 'fr', '$': 'Utopies politiques'},
            {'@xml:lang': 'fr', '$': 'Littérature utopique'},
            {'@xml:lang': 'fr', '$': 'Utopisme'},
            {'@xml:lang': 'fr', '$': 'Société idéale (utopie)'},
            {'@xml:lang': 'fr', '$': 'Homme nouveau (utopie)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119569197',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie sociale'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Philosophie des sciences sociales'},
               {'@xml:lang': 'fr', '$': 'Sciences sociales et philosophie'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la société'},
               {'@xml:lang': 'fr', '$': 'Philosophie et sciences sociales'},
               {'@xml:lang': 'fr', '$': 'Théorie sociale'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119342318',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Idées politiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Pensée politique'},
               {'@xml:lang': 'fr', '$': 'Théories politiques'},
               {'@xml:lang': 'fr', '$': 'Idéologie politique'},
               {'@xml:lang': 'fr', '$': 'Doctrines politiques'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Politique et philosophie'},
               {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
               {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
               {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85040350',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Dystopias'},
           'altLabel': {'@xml:lang': 'en', '$': 'Anti-utopias'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527178',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Utopías'},
           'label': {'@xml:lang': 'es', '$': 'Utopías'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Estados ideales'},
            {'@xml:lang': 'es', '$': 'Literatura utópica'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85141635',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Utopias'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Ideal states'},
            {'@xml:lang': 'en', '$': 'States, Ideal'},
            {'@xml:lang': 'en', '$': 'Utopian literature'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5TlYVs6uFd',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'utopia'},
            {'@xml:lang': 'es', '$': 'utopía'},
            {'@xml:lang': 'fr', '$': 'utopie'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEnAviSswsz|http://ark.frantiq.fr/ark:/26678/pcrt5TlYVs6uFd',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|politique|théorie politique|utopie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEnAviSswsz',
             'prefLabel': [{'@xml:lang': 'en', '$': 'political theory'},
              {'@xml:lang': 'es', '$': 'teoría política'},
              {'@xml:lang': 'fr', '$': 'théorie politique'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'politique théorie'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtEnAviSswsz'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13772600c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Atopie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Allergie atopique'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119308689',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Allergie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Anergie'},
              {'@xml:lang': 'fr', '$': 'Hypersensibilité'},
              {'@xml:lang': 'fr', '$': 'Allergologie'},
              {'@xml:lang': 'fr', '$': 'Idiosyncrasie'},
              {'@xml:lang': 'fr', '$': 'Maladies allergiques'}]}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.3c0qgd',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': "<i>L'Empire des signes</i> de Roland Barthes : essai de rencontre"},
       'url': 'https://dumas.ccsd.cnrs.fr/dumas-00496308',
       'enrichedCreators': {'creator': {'@origin': 'Panet, Florian',
         '@normalizedAuthor': 'Panet, Florian',
         '@idAuthor': 'panet_florian',
         'firstname': 'Florian',
         'lastname': 'Panet',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2010-06-28',
        '@startDate': '2010-06-28',
        '@endDate': '2010-06-28',
        '@treeDate': '2000/2010/2010',
        'normalizedDate': '2010-06-28',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2010'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00496308'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15171704',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00496308/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00496308/file/Panet_F.pdf'}],
        'similar': 'dumas-00496308'},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Japon'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         {'@xml:lang': 'fr', '$': 'Essai'},
         {'@xml:lang': 'fr', '$': 'Interstice'},
         {'@xml:lang': 'fr', '$': 'Voyage'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': {'@xml:lang': 'fr',
        '$': "<i>L'empire des signes</i> représente le compte rendu de voyage de Barthes au Japon. Dans sa tentative de dire le pays du Soleil-levant, l'auteur accepte d'emblée la limite de son point de vue occidental. Il s'agit donc de faire le deuil de cette altérité indescriptible. La fiction peut apparaître comme un moyen de dépasser l'aporie. Il faut alors rechercher un langage plus universel (le dessin, le corps) pour faire entendre la singularité du Japon. C'est l'essai qui permet ce dialogue entre les peuples, les pays, les civilisations, si différentes soient-elles. Genre intersticiel, il s'adapte à cette situation d'écriture, à cet entre-deux de la littérature."},
       'types': {'type': ['info:eu-repo/semantics/masterThesis',
         'Master thesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.czoe88',
         '$': 'Archives ouvertes#DUMAS'},
        'sourceCode': {'@handle': '10670/2.czoe88',
         '$': '75d98e3b-b174-4fa2-8dab-d65eb895e16a'},
        'sourceName': {'@shortLabel': 'DUMAS',
         '$': 'Dépôt Universitaire de Mémoires Après Soutenance'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '631374',
         '$': 'http://dumas.ccsd.cnrs.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "DUMAS (Dépôt Universitaire de Mémoires Après Soutenance) est une base d'archives ouvertes de travaux d'étudiants de niveaux bac+4 et bac+5, validés par un jury, dans toutes les disciplines. La base DUMAS est hébergée par HAL.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/dumas',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ensayo'},
             {'@xml:lang': 'fr', '$': 'essai'},
             {'@xml:lang': 'en', '$': 'essay'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtVKvXmQJeRe'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
               {'@xml:lang': 'es', '$': 'género didáctico'},
               {'@xml:lang': 'fr', '$': 'genre didactique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-688',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': "Dessin d'architecture"},
            'altLabel': {'@xml:lang': 'fr', '$': 'Rendu'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-687|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-688',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "040 Techniques de représentation|Technique de représentation|Dessin|Dessin d'architecture"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-687',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Dessin'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-687'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11978431m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb165537089',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité spatiale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Mobilité géographique'},
               {'@xml:lang': 'fr', '$': 'Déplacements'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137149',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Travel'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Traveling'},
             {'@xml:lang': 'en', '$': 'Travelling'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX5251191',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Viaje'},
            'label': {'@xml:lang': 'es', '$': 'Viaje'}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/8658',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viajes'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Moving from one place to another generally by using a transportation mean.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8582',
              'prefLabel': [{'@xml:lang': 'en', '$': 'traffic'},
               {'@xml:lang': 'es', '$': 'tráfico'},
               {'@xml:lang': 'fr', '$': 'trafic'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) The movement of vehicles, ships, aircraft, persons, etc., in an area or over a route. 2) The vehicles, persons, etc., moving in an area or over a route.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4767'}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viaje'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa|http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|vie économique|commerce|route commerciale|voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'route commerciale'},
               {'@xml:lang': 'es', '$': 'ruta comercial'},
               {'@xml:lang': 'en', '$': 'trade-route'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341|http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '061 Sociologie - population - loisirs|Population|Mobilité|Voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341'}}}},
           {'@count': '3',
            '@uri': 'http://GeoEthno#JAPON',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Japon'},
             {'@xml:lang': 'es', '$': 'Japón'},
             {'@xml:lang': 'en', '$': 'Japan'}],
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#JAPON',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Asie|Asie orientale|Japon'},
              {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|Japón'},
              {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|Japan'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ASIE_ORIENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Asie orientale'},
               {'@xml:lang': 'es', '$': 'Asia Oriental'},
               {'@xml:lang': 'en', '$': 'Eastern Asia'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Extrême-Orient'},
               {'@xml:lang': 'fr', '$': "Asie de l'Est"},
               {'@xml:lang': 'es', '$': 'Este de Asia'},
               {'@xml:lang': 'es', '$': 'Asia del Este'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental'}]}}}},
           {'@count': '2',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
             {'@xml:lang': 'es', '$': 'tierra'},
             {'@xml:lang': 'fr', '$': 'pays'}],
            'definition': {'@xml:lang': 'en',
             '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16570175g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'États'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'États souverains'},
             {'@xml:lang': 'fr', '$': 'Pays'},
             {'@xml:lang': 'fr', '$': 'Puissances'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11955453s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Géographie politique'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1208',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Limite'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1208',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "060 Sciences humaines|Perception|Perception de l'espace|Limite"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513',
              'prefLabel': {'@xml:lang': 'fr', '$': "Perception de l'espace"},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1513',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "060 Sciences humaines|Perception|Perception de l'espace"}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-352',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Belvédère'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Point de vue'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1525|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-352',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '012 Typologie des bâtiments et équipements divers|Typologie des bâtiments|Petite construction|Belvédère'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1525',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Petite construction'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1525'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'deuil'},
             {'@xml:lang': 'es', '$': 'duelo'},
             {'@xml:lang': 'en', '$': 'mourning'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh|http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Temps pendant lequel on porte les signes extérieurs liés à la mort d’un proche et consacré par l’usage. (Lar.) et/ou Douleur, affliction, éprouvée à la suite du décès de quelqu’un, état de celui qui l’éprouve. (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh',
              'prefLabel': [{'@xml:lang': 'en', '$': 'death (concept)'},
               {'@xml:lang': 'fr', '$': 'mort (concept)'},
               {'@xml:lang': 'es', '$': 'muerte (concepto)'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'mort concept'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Idée générale et abstraite que se fait l’esprit humain de la mort, et qui lui permet d’y rattacher les diverses perceptions qu’il en a. (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965570v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Deuil'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932531m'}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX548894',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Duelo'},
            'label': {'@xml:lang': 'es', '$': 'Duelo'},
            'altLabel': {'@xml:lang': 'es',
             '$': 'Duelo--Aspectos psicológicos'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85013296',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Bereavement'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Loss of loved ones by death'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12509625g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Aporie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Raisonnement aporétique'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Démonstration (logique)'},
                {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2003001706',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Aporia'},
            'altLabel': {'@xml:lang': 'en', '$': 'Aporetic'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Langage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
             {'@xml:lang': 'en', '$': 'language'},
             {'@xml:lang': 'es', '$': 'lenguaje'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
             {'@xml:lang': 'fr', '$': 'Langage et langues'},
             {'@xml:lang': 'fr', '$': 'Langues et langage'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Language (New words, slang, etc.)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119362234',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dessin'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Dessins'},
             {'@xml:lang': 'fr', '$': "Dessins d'art"},
             {'@xml:lang': 'fr', '$': "Dessin d'art"}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
               {'@xml:lang': 'fr', '$': 'Arts plastiques'},
               {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
               {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85039408',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Drawing'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Drawings'},
             {'@xml:lang': 'en', '$': 'Sketching'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525302',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Dibujo'},
            'label': {'@xml:lang': 'es', '$': 'Dibujo'},
            'altLabel': {'@xml:lang': 'es', '$': 'Dibujos'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtzmgVgArOJh',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'dessin'},
             {'@xml:lang': 'es', '$': 'dibujo'},
             {'@xml:lang': 'en', '$': 'drawing'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u|http://ark.frantiq.fr/ark:/26678/pcrtzmgVgArOJh',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme|dessin'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u',
              'prefLabel': [{'@xml:lang': 'es', '$': 'grafismo'},
               {'@xml:lang': 'en', '$': 'graphics'},
               {'@xml:lang': 'fr', '$': 'graphisme'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtwZOaTfxE7u',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|graphisme'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-687',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dessin'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2137|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-687'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1929',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Technique de représentation'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16505206p',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Corps'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Corps (anatomie)'},
             {'@xml:lang': 'fr', '$': 'Parties du corps'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'body'},
             {'@xml:lang': 'fr', '$': 'corps'},
             {'@xml:lang': 'es', '$': 'cuerpo'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm|http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm',
              'prefLabel': [{'@xml:lang': 'es', '$': 'anatomía'},
               {'@xml:lang': 'fr', '$': 'anatomie'},
               {'@xml:lang': 'en', '$': 'anatomy'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16159797h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Étrangeté'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Singularité'},
             {'@xml:lang': 'fr', '$': "Sentiment d'étrangeté"},
             {'@xml:lang': 'fr', '$': 'Inquiétante étrangeté'},
             {'@xml:lang': 'fr', '$': 'Bizarrerie'},
             {'@xml:lang': 'fr', '$': "Étrangeté, Sentiment d'"},
             {'@xml:lang': 'fr', '$': 'Étrange'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933068t',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Perception'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Psychologie de la perception'},
                {'@xml:lang': 'fr', '$': 'Perception (psychologie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932657k',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Psychanalyse'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Freudisme'}}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119771337',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Originalité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Singularité'},
             {'@xml:lang': 'fr', '$': "Crise d'originalité"}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119761439',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Aptitude'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Capacité'},
               {'@xml:lang': 'fr', '$': 'Habiletés'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85095646',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Originality'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12481481z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Dialogue'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Dialogue (communication interpersonnelle)'},
             {'@xml:lang': 'fr', '$': 'Dialogue, Analyse du'},
             {'@xml:lang': 'fr', '$': 'Analyse du dialogue'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931754k',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication orale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Expression orale'},
               {'@xml:lang': 'fr', '$': 'Transmission orale'},
               {'@xml:lang': 'fr', '$': 'Communication verbale'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh94003592',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Dialogue analysis'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Analysis of dialogue'},
             {'@xml:lang': 'en', '$': 'DA (Interpersonal communication)'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX5080451',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Análisis del diálogo'},
            'label': {'@xml:lang': 'es', '$': 'Análisis del diálogo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Análisis conversacional'},
             {'@xml:lang': 'es', '$': 'Análisis de la conversación'},
             {'@xml:lang': 'es', '$': 'Análisis del discurso dialógico'},
             {'@xml:lang': 'es', '$': 'Conversación--Análisis del discurso'},
             {'@xml:lang': 'es', '$': 'Diálogo, Análisis del'},
             {'@xml:lang': 'es',
              '$': 'Diálogo (Comunicación interpersonal)'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtxindNEQjtS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'diálogo'},
             {'@xml:lang': 'en', '$': 'dialogue'},
             {'@xml:lang': 'fr', '$': 'dialogue'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtxindNEQjtS',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philologie|littérature|genre littéraire|dialogue'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género literario'},
               {'@xml:lang': 'fr', '$': 'genre littéraire'},
               {'@xml:lang': 'en', '$': 'literary genre'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Peoples'},
             {'@xml:lang': 'fr', '$': 'Peuples'},
             {'@xml:lang': 'es', '$': 'Pueblos'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#1|http://ark.frantiq.fr/ark:/26678/pcrt7fflJKZGeG',
             'expandedLabel': {'@xml:lang': 'fr', '$': 'Peuples|Peuples'}},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#1',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Peuples'},
               {'@xml:lang': 'es', '$': 'Pueblos'},
               {'@xml:lang': 'en', '$': 'Peoples'}]}}},
           {'@count': '1',
            '@uri': 'http://pactols.frantiq.fr/#1',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Peuples'},
             {'@xml:lang': 'es', '$': 'Pueblos'},
             {'@xml:lang': 'en', '$': 'Peoples'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
             {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
             {'@xml:lang': 'fr', '$': 'Héritage culturel'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005029',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Civilization'},
            'altLabel': {'@xml:lang': 'en', '$': 'Culture (Civilization)'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/63ce2558-0c0f-47d9-b408-bc3648c95b74',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Étude de genre'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Gender studies'},
             {'@xml:lang': 'fr', '$': 'Genre'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858|http://data.culture.fr/thesaurus/resource/ark:/67717/63ce2558-0c0f-47d9-b408-bc3648c95b74'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sociologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1858',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '061 Sociologie - population - loisirs|Sociologie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
             {'@xml:lang': 'fr', '$': 'Écriture'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
             {'@xml:lang': 'es', '$': 'escritura'},
             {'@xml:lang': 'en', '$': 'writing'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
             {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
             {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
             {'@xml:lang': 'fr', '$': 'Graphémique'},
             {'@xml:lang': 'fr', '$': 'Graphie'},
             {'@xml:lang': 'fr', '$': 'Langue écrite'},
             {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Signes graphiques'},
             {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
                {'@xml:lang': 'fr', '$': 'Figures symboliques'},
                {'@xml:lang': 'fr', '$': 'Symboles'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
                {'@xml:lang': 'fr', '$': 'Langage et langues'},
                {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524426',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
            'label': {'@xml:lang': 'es', '$': 'Escritura'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
             {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
             {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
             {'@xml:lang': 'fr', '$': 'Littérature universelle'},
             {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
            'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
             {'@xml:lang': 'en',
              '$': 'Western literature (Western countries)'},
             {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
              'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
               {'@xml:lang': 'es', '$': 'patrimonio cultural'},
               {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
             {'@uri': 'http://eurovoc.europa.eu/1680'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
             {'@xml:lang': 'en', '$': 'literature'},
             {'@xml:lang': 'fr', '$': 'littérature'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Ens. des productions littéraires (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
              'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
               {'@xml:lang': 'fr', '$': 'philologie'},
               {'@xml:lang': 'en', '$': 'philology'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
              'definition': {'@xml:lang': 'fr',
               '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques|Littérature'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques'}}}}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '3',
           '@uri': 'http://sws.geonames.org/1861060/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['Japan',
            {'@xml:lang': 'es', '$': 'Japón'},
            {'@xml:lang': 'en', '$': 'Japan'},
            {'@xml:lang': 'fr', '$': 'Japon'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Japon'},
           'expanded': {'@uri': 'http://sws.geonames.org/6255147/|http://sws.geonames.org/1861060/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Asie|Japon'},
             {'@xml:lang': 'es', '$': 'Asia|Japón'},
             {'@xml:lang': 'en', '$': 'Asia|Japan'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Asie|Japan'},
             {'@xml:lang': 'es', '$': 'Asia|Japan'},
             {'@xml:lang': 'en', '$': 'Asia|Japan'}]},
           'latitude': '35.68536',
           'longitude': '139.75309',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255147/',
             'prefLabel': ['Asia',
              {'@xml:lang': 'en', '$': 'Asia'},
              {'@xml:lang': 'fr', '$': 'Asie'},
              {'@xml:lang': 'es', '$': 'Asia'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Asie'},
             'latitude': '29.84064',
             'longitude': '89.29688'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.vjkmgd',
      'isidore': {'title': 'L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes',
       'url': 'https://octaviana.fr/document/2017PA080104',
       'enrichedCreators': {'creator': {'@origin': 'Procopio de Araujo Ferraz, Paulo',
         '@normalizedAuthor': 'Procopio de Araujo Ferraz, Paulo,',
         '@idAuthor': 'procopio_de_araujo_ferraz_paulo',
         'firstname': [],
         'lastname': 'Procopio de Araujo Ferraz, Paulo',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2017/06/29',
        '@startDate': '2017-01-01',
        '@endDate': '2017-12-31',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '20053976',
         '$': 'https://octaviana.fr/document/2017PA080104'},
        'similar': '2017PA080104'},
       'subjects': {'subject': ['Imaginaire',
         'Geste',
         'Figure',
         'Critique',
         'Jean Racine',
         'Charles Mauron',
         'Lucien goldmann',
         'Robert Barthes']},
       'abstract': '<p>Dans la critique littéraire française des années 1950-1960, certains éléments apparaissent comme des évidences. Malgré les différences des méthodes, une idée sous-tendait toutes les lectures : il y aurait, dans les textes, des significations cachées qu’une interprétation devrait révéler. Dans les travaux des trois auteurs étudiés (Charles Mauron, Lucien Goldmann et Roland Barthes), on peut repérer des images qui traversent leurs œuvres et qui sont liées à leurs conceptions de l’objet littéraire. Or, ce qui est intéressant dans leur critique, c’est qu’il est impossible de trouver des éléments qui décrivent les textes qui ne soient imaginaires : en suivant le fil des interprétations de ces auteurs, il n’y a pas de moment où l’image cesse d’agir, comme si le propre du texte se dérobait à chaque fois sous le travestissement d’une autre image.Ces images montrent que la critique littéraire de l’époque étudiée accomplissait deux gestes, proches de deux figures de langage. La tautologie est ce qui ne réussit à établir un rapport de l’objet qu’avec lui-même. Le paradoxe fait le mouvement contraire, puisqu’il repose sur l’idée que les différences doivent être authentiques.Or, ce que l’imaginaire des auteurs donne à voir, c’est une certaine notion de la littérature. Leurs images témoignent de la construction de la littérature comme une pratique discursive marginale : ce qui intéresse les auteurs, c’est de voir ces textes comme un acte de résistance, capable d’utiliser un langage qui défie les usages « normaux » de la langue. Mais, paradoxalement, ils tendent à naturaliser cette position marginale et légitimer la place centrale occupée par les sciences et par la philosophie.</p> <p><em>In French literary critique of the years 1950-1960, certain elements were seen as evidences. Despite the differences between the methods the authors used, one idea was always present: for them, the texts concealed hidden meanings that their analyses were meant to reveal. In the works of the three authors we chose to study (Charles Mauron, Lucien Goldmann and Roland Barthes), it is possible to find images that are related to a certain conception of literature. It is interesting to note that in their methods, it is impossible to find definitions of the text that are not touched by an imaginary activity. Reading the authors, we realise that images are everywhere, as if the text itself constantly eluded the analysis.The images show that the literary critique of the time performed two different gestures, that correspond to two figures of speech. Tautology is the figure that establishes that an object can only be defined by itself. Paradox does the exact opposite, stating that only in difference can we find its identity.By analysing the authors’ imaginary, one can reconstruct a certain idea of literature. Their images show literature as a marginal discourse: their interest in literary texts lies in the fact that they can resist the “normal” usage of language. But, paradoxically, this way of looking at them tends to naturalise their marginal position and thus legitimate the privilege accorded to science and philosophy as the standard form of expression.</em></p>',
       'types': {'type': ['Thèse star',
         'Electronic Thesis or Dissertation',
         'Text']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Bib Univ. Paris 8',
         '@handle': '10670/3.15yiws',
         '@collectionUuid': '07d8c632-0c0a-9184-fec5-156abe9ee474',
         '$': "Bibliothèques de l'Université de Paris 8"},
        'collectionOrganization': {'@organizationUrl': 'https://www.bu.univ-paris8.fr',
         '$': "Bibliothèque universitaire de l'Université de Paris 8"},
        'collectionURLMainSite': {'@thumbnaiId': '10179553',
         '$': 'https://www.bu.univ-paris8.fr'},
        'collectionInformations': {'collectionDescription': "Collection regroupant les ressources numériques de la bibliothèque numérique de l'Université de Paris 8.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': [],
         'collectionContactEmailAddress': 'anne.sophie.pascal@univ-poitiers.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.15yiws|10670/2.1wv48m',
         '$': "Bibliothèques de l'Université de Paris 8#Octaviana"},
        'sourceCode': {'@handle': '10670/2.1wv48m',
         '$': '0c3f4cd2-76a6-0f5d-dc98-fd0e9e5b5391'},
        'sourceName': {'@shortLabel': 'Octaviana', '$': 'Octaviana'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '10179550',
         '$': 'http://paris8-omeka.biblibre.com'},
        'sourceScope': {'@uri': 'http://www.rechercheisidore.fr/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://paris8-omeka.biblibre.com',
         '$': "Le Conseil Scientifique de l'Université Paris 8 a souhaité que l'Université soit dotée d'une bibliothèque numérique lui permettant de mettre en ligne des corpus documentaires qui présentent un intérêt avéré pour les travaux de recherche. Il a confié à la bibliothèque de l'Université Paris 8 le soin de mener ce projet à bien sous le nom d'OCTAVIANA. La bibliothèque numérique OCTAVIANA est riche de plus de 100 000 documents numériques. Elle met à disposition du public des fonds patrimoniaux : fonds Armand Gatti et Jean Dresch. Elle diffuse aussi plus de 800 thèses et de nombreux colloques récents."},
        'sourceOrganization': {'label': 'Université de Paris 8',
         'URI': 'http://www.univ-paris8.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'bibliotheque.numerique@univ-paris8.fr'},
        'sourceParameters': {'baseUrl': 'http://octaviana.fr/oai-pmh-repository/request',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p (%t)',
          'dates': {'date': ['dd/MM/yyyy', 'MM/yyyy', 'yyyy']}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': [{'@uri': 'http://isidore.science/ontology#thesis',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
             {'@xml:lang': 'en', '$': 'Thesis'},
             {'@xml:lang': 'es', '$': 'Tesis'}]},
           {'@uri': 'http://isidore.science/ontology#text',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Textes imprimés'},
             {'@xml:lang': 'en', '$': 'Textual materials'},
             {'@xml:lang': 'es', '$': 'Textos'}]}]},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Imaginaire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Rêve'},
            {'@xml:lang': 'fr', '$': 'Espace Imaginaire'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Imaginaire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Psychologie'}}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'imaginaire'},
            {'@xml:lang': 'es', '$': 'imaginario'},
            {'@xml:lang': 'en', '$': 'imaginings'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361722',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique littéraire'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16675880c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie littéraire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vie culturelle'},
               {'@xml:lang': 'fr', '$': 'Gens de lettres'}]}}]},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX526725',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'label': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis literario'},
            {'@xml:lang': 'es', '$': 'Crítica de la literatura'},
            {'@xml:lang': 'es', '$': 'Literatura--Crítica'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '3',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4852',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature evaluation'},
            {'@xml:lang': 'es', '$': 'evaluación de documentación'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
             'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica literaria'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'},
            {'@xml:lang': 'en', '$': 'literary criticism'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'critique de texte'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
            {'@xml:lang': 'es', '$': 'años'},
            {'@xml:lang': 'en', '$': 'years'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
              {'@xml:lang': 'en', '$': 'division of time'},
              {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
          {'@count': '8',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119409512',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Illustrations, images, etc.'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Images'},
            {'@xml:lang': 'fr', '$': 'Documents iconographiques'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931755x',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication visuelle'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': "Image, Communication par l'"},
              {'@xml:lang': 'fr', '$': 'Communication graphique'},
              {'@xml:lang': 'fr', '$': "Communication par l'image"}]}}},
          {'@count': '8',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85102012',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Pictures'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Pictorial representations'},
            {'@xml:lang': 'en', '$': 'Iconography'}]},
          {'@count': '8',
           '@uri': 'http://datos.bne.es/resource/XX530997',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Imágenes'},
           'label': {'@xml:lang': 'es', '$': 'Imágenes'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Ilustraciones, imágenes, etc.'}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119315332',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Gestes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Mimiques'},
            {'@xml:lang': 'fr', '$': 'Langage corporel'},
            {'@xml:lang': 'fr', '$': 'Langage gestuel'},
            {'@xml:lang': 'fr', '$': 'Gestuelle'},
            {'@xml:lang': 'fr', '$': 'Langage du corps'},
            {'@xml:lang': 'fr', '$': 'Expression gestuelle'},
            {'@xml:lang': 'fr', '$': 'Expressions gestuelles'},
            {'@xml:lang': 'fr', '$': 'Attitudes corporelles'},
            {'@xml:lang': 'fr', '$': 'Geste'},
            {'@xml:lang': 'fr', '$': 'Attitude corporelle'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11936480h',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Communication non-verbale'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Langage non-verbal'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930966w',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Art dramatique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Art de l'acteur (théâtre)"},
               {'@xml:lang': 'fr', '$': "Jeu de l'acteur (théâtre)"},
               {'@xml:lang': 'fr', '$': 'Jeu dramatique'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975692n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Méthodes'},
           'altLabel': {'@xml:lang': 'fr', '$': "Méthodes d'apprentissage"}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001789',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Methods'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Instruction and study--Methods'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133183540',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Livres et lecture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Lectures'},
            {'@xml:lang': 'fr', '$': 'Lecture, Choix de'},
            {'@xml:lang': 'fr', '$': 'Lecture littéraire'},
            {'@xml:lang': 'fr', '$': 'Habitudes de lecture'},
            {'@xml:lang': 'fr', '$': 'Lectorat'},
            {'@xml:lang': 'fr', '$': 'Choix de lecture'},
            {'@xml:lang': 'fr', '$': 'Évaluation des livres'},
            {'@xml:lang': 'fr', '$': 'Lecteurs de livres'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318807v',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Éducation'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Scolarisation'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004859',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Books and reading'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Reading habits'},
            {'@xml:lang': 'en', '$': 'Books for'},
            {'@xml:lang': 'en', '$': 'Reading interests'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4596812',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'label': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Afición a la lectura'},
            {'@xml:lang': 'es', '$': 'Hábitos de lectura'},
            {'@xml:lang': 'es', '$': 'Lectores'},
            {'@xml:lang': 'es', '$': 'Lectura y libros'},
            {'@xml:lang': 'es', '$': 'Libros--Apreciación'}]},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975904c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Interprétation'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Interprétations'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006355',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Interpretation and construction'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006356',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Interpretation (Phrasing, dynamics, etc.)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'interpretación'},
            {'@xml:lang': 'en', '$': 'interpretation'},
            {'@xml:lang': 'fr', '$': 'interprétation'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv|http://ark.frantiq.fr/ark:/26678/pcrtW7lYEc93yp',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation|interprétation'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
             'prefLabel': [{'@xml:lang': 'es', '$': 'documentación'},
              {'@xml:lang': 'fr', '$': 'documentation'},
              {'@xml:lang': 'en', '$': 'source material'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtSKcTSyd4bv',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|documentation'}}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
            {'@xml:lang': 'fr', '$': 'Gens de lettres'},
            {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
          {'@count': '4',
           '@uri': 'http://datos.bne.es/resource/XX526944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
           'label': {'@xml:lang': 'es', '$': 'Escritores'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
            {'@xml:lang': 'es', '$': 'Literatos'}]},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
            {'@xml:lang': 'fr', '$': 'objet'},
            {'@xml:lang': 'es', '$': 'objeto'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
            {'@xml:lang': 'fr', '$': 'petit objet'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|object'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
             'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
              {'@xml:lang': 'es', '$': 'mobiliario'},
              {'@xml:lang': 'fr', '$': 'mobilier'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
          {'@count': '4',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}},
          {'@count': '4',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '4',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
            {'@xml:lang': 'fr', '$': 'Possible'},
            {'@xml:lang': 'fr', '$': 'Impossible'},
            {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Impossibilité'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
               {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX531645',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119782672',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Fil'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Fils (textile)'},
            {'@xml:lang': 'fr', '$': 'Fil à coudre'},
            {'@xml:lang': 'fr', '$': 'Fil (textile)'},
            {'@xml:lang': 'fr', '$': 'Bobines de fil'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11942815d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Filature'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Filage'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15037337b'}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85135003',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Thread'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85149022',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Yarn'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb122147017',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Représentations'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Interprétations'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00005755',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Performances'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
            {'@xml:lang': 'fr', '$': 'image'},
            {'@xml:lang': 'es', '$': 'imagen'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
             'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
              {'@xml:lang': 'es', '$': 'estética'},
              {'@xml:lang': 'fr', '$': 'esthétique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science qui traite du beau en général (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Image'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
            {'@xml:lang': 'en', '$': 'language'},
            {'@xml:lang': 'es', '$': 'lenguaje'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
            {'@xml:lang': 'fr', '$': 'Langage et langues'},
            {'@xml:lang': 'fr', '$': 'Langues et langage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
              {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13180391c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Tautologie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Propositions tautologiques'},
            {'@xml:lang': 'fr', '$': 'Raisonnement tautologique'},
            {'@xml:lang': 'fr', '$': 'Proposition tautologique'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Rapport'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Rapport'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119378727',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Paradoxe'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Paradoxes'},
            {'@xml:lang': 'fr', '$': 'Raisonnement paradoxal'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932723j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Raisonnement'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Démonstration (logique)'},
               {'@xml:lang': 'fr', '$': 'Raisonnement (philosophie)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935968s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Logique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la logique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la logique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097758',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradoxes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85097756',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Paradox'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtI9nGzIgVgX',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'mouvement/immobilité'},
            {'@xml:lang': 'es', '$': 'movimiento/inmovilidad'},
            {'@xml:lang': 'en', '$': 'mutability/immutability'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'immobilité/mouvement'},
            {'@xml:lang': 'fr', '$': 'mouvement'},
            {'@xml:lang': 'fr', '$': 'mouvement (concept)'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn|http://ark.frantiq.fr/ark:/26678/pcrtI9nGzIgVgX'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn',
             'prefLabel': [{'@xml:lang': 'es', '$': 'cambio'},
              {'@xml:lang': 'en', '$': 'change'},
              {'@xml:lang': 'fr', '$': 'changement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrt6Nyn939DSn'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119798925',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mouvement'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4961'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85087557',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Motion'},
           'altLabel': {'@xml:lang': 'en', '$': 'Kinetics'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361544',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Construction'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Génie architectural'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119338890',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Technologie'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Sciences appliquées'}}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-396'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85017693',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Building'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Architectural engineering'},
            {'@xml:lang': 'en', '$': 'Construction'},
            {'@xml:lang': 'en', '$': 'Buildings--Design and construction'},
            {'@xml:lang': 'en', '$': 'Engineering, Architectural'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'building (process of)'},
            {'@xml:lang': 'es', '$': 'construcción'},
            {'@xml:lang': 'fr', '$': 'construction'}],
           'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV'},
            {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtM9HMWQTGJV',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|knowledge|technology|building (process of)'}}],
           'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
              'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
               {'@xml:lang': 'fr', '$': 'architecture'},
               {'@xml:lang': 'es', '$': 'arquitectura'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Art de construire les bâtiments (Lar.)'}}},
            {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'technologie'},
               {'@xml:lang': 'en', '$': 'technology'},
               {'@xml:lang': 'es', '$': 'tecnología'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'technique'},
               {'@xml:lang': 'fr', '$': 'technique de fabrication'},
               {'@xml:lang': 'fr', '$': 'techniques'}]}}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Construction'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Appareillage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '010 Construction|Construction'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127',
             'prefLabel': {'@xml:lang': 'fr', '$': '010 Construction'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975857p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Pratique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Pratique (musique)'},
            {'@xml:lang': 'fr', '$': "Pratique d'une profession"},
            {'@xml:lang': 'fr', '$': 'Pratique musicale'},
            {'@xml:lang': 'fr', '$': 'Pratique professionnelle'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00006959',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Practice'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99014466',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Instruction and study'},
           'altLabel': {'@xml:lang': 'en', '$': 'Practicing'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'resistance'},
            {'@xml:lang': 'fr', '$': 'résistance'},
            {'@xml:lang': 'es', '$': 'resistencia'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtQGTKUNHud5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
             'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
              {'@xml:lang': 'fr', '$': 'troubles'},
              {'@xml:lang': 'en', '$': 'unrest'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
              {'@xml:lang': 'fr', '$': 'soulèvement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933227s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir-vivre'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bonnes manières'},
            {'@xml:lang': 'fr', '$': 'Bon ton'},
            {'@xml:lang': 'fr', '$': 'Manières'},
            {'@xml:lang': 'fr', '$': 'Bienséance'},
            {'@xml:lang': 'fr', '$': 'Convenances'},
            {'@xml:lang': 'fr', '$': 'Tact'},
            {'@xml:lang': 'fr', '$': 'Éducation (savoir-vivre)'},
            {'@xml:lang': 'fr', '$': 'Étiquette'},
            {'@xml:lang': 'fr', '$': 'Bonne éducation'},
            {'@xml:lang': 'fr', '$': 'Correction (savoir vivre)'},
            {'@xml:lang': 'fr', '$': 'Courtoisie (savoir-vivre)'},
            {'@xml:lang': 'fr', '$': 'Civilités'},
            {'@xml:lang': 'fr', '$': 'Politesse'},
            {'@xml:lang': 'fr', '$': 'Impolitesse'},
            {'@xml:lang': 'fr', '$': 'Usages'},
            {'@xml:lang': 'fr', '$': 'Urbanité'},
            {'@xml:lang': 'fr', '$': 'Civilité'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
              {'@xml:lang': 'fr', '$': 'Traditions'},
              {'@xml:lang': 'fr', '$': 'Coutumes'},
              {'@xml:lang': 'fr', '$': 'Vie sociale'},
              {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
              {'@xml:lang': 'fr', '$': 'Us et coutumes'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527340',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Etiqueta'},
           'label': {'@xml:lang': 'es', '$': 'Etiqueta'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Cortesía'},
            {'@xml:lang': 'es', '$': 'Modales'},
            {'@xml:lang': 'es', '$': 'Protocolo'},
            {'@xml:lang': 'es', '$': 'Trato social'},
            {'@xml:lang': 'es', '$': 'Urbanidad'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85045446',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Etiquette'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Usages'},
            {'@xml:lang': 'en', '$': 'Politeness'},
            {'@xml:lang': 'en', '$': 'Condolence, Etiquette of'},
            {'@xml:lang': 'en', '$': 'Manners'},
            {'@xml:lang': 'en', '$': 'Ceremonies'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932512b',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Moeurs et coutumes'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Usages'},
            {'@xml:lang': 'fr', '$': 'Traditions'},
            {'@xml:lang': 'fr', '$': 'Coutumes'},
            {'@xml:lang': 'fr', '$': 'Vie sociale'},
            {'@xml:lang': 'fr', '$': 'Vie quotidienne'},
            {'@xml:lang': 'fr', '$': 'Us et coutumes'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318485j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Ethnologie'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Anthropologie culturelle'},
               {'@xml:lang': 'fr', '$': 'Anthropologie sociale'},
               {'@xml:lang': 'fr', '$': 'Ethnographie'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
               {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
               {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-155'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001008851',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Social life and customs'},
           'altLabel': {'@xml:lang': 'en', '$': 'Customs'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965332r',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langue'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006382',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language, style'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
            {'@xml:lang': 'es', '$': 'plaza'},
            {'@xml:lang': 'en', '$': 'public place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Espace plus ou moins étendue (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
             'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
              {'@xml:lang': 'fr', '$': 'structure urbaine'},
              {'@xml:lang': 'en', '$': 'urban structure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias'},
            {'@xml:lang': 'en', '$': 'sciences'},
            {'@xml:lang': 'fr', '$': 'sciences'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrtUtKbZy9yLK'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
             'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|knowledge|science'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933232c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences pures'},
            {'@xml:lang': 'fr', '$': 'Sciences exactes'},
            {'@xml:lang': 'fr', '$': 'Sciences fondamentales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00007934',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527870',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Ciencias'},
           'label': {'@xml:lang': 'es', '$': 'Ciencias'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119764523',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Conception'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006371',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Design'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Processus de conception'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Conception de projet'},
            {'@xml:lang': 'fr', '$': 'Conception'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2138|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1310|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1660',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '041 Méthodologie|Méthodologie|Méthodologie du projet|Processus de conception'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1311',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'Méthodologie du projet'}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#READING',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Reading'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE|http://GeoEthno#READING',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire|Reading'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BERKSHIRE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Berkshire'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975752p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Usage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bon usage (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Usage (linguistique)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006425',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Usage'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Idioms, corrections, errors'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Use'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|knowledge|science'}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
            {'@xml:lang': 'es', '$': 'ciencia'},
            {'@xml:lang': 'fr', '$': 'science'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_37989'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb121155321',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Science'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85118553',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Science'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Natural science'},
            {'@xml:lang': 'en', '$': 'Sciences'},
            {'@xml:lang': 'en', '$': 'Science of science'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/7312',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'root'},
            {'@xml:lang': 'es', '$': 'raíz'},
            {'@xml:lang': 'fr', '$': 'racine'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The absorbing and anchoring organ of a vascular plant; it bears neither leaves nor flowers and is usually subterranean.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6300',
             'prefLabel': [{'@xml:lang': 'en', '$': 'plant component'},
              {'@xml:lang': 'es', '$': 'partes de la planta'},
              {'@xml:lang': 'fr', '$': 'partie de la plante'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The constituent parts of a plant.'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fre'}},
     {'@uri': '10670/1.6i4uuh',
      'isidore': {'title': "Les fondements de l'écriture selon Michel Foucault et Roland Barthes",
       'url': 'http://hdl.handle.net/1866/16543',
       'enrichedCreators': {'creator': {'@origin': 'Ben Osman, Farès',
         '@normalizedAuthor': 'Ben Osman, Farès',
         '@idAuthor': 'ben_osman_fares',
         'firstname': 'Farès',
         'lastname': 'Ben Osman',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2017-03-15T01:19:20Z',
        '@startDate': '2017-03-15',
        '@endDate': '2017-03-15',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-03-15',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '9945567',
         '$': 'http://hdl.handle.net/1866/16543'}},
       'subjects': {'subject': ['Philosophie',
         'Archéologie',
         'Sémiologie',
         'Épistèmê',
         'Écriture',
         'Foucault',
         'Barthes']},
       'types': {'type': 'Thèse ou mémoire / Thesis or Dissertation'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Bib. UdeM',
         '@handle': '10670/3.5o3050',
         '@collectionUuid': 'af157bb7-10f7-419d-b734-710816080fc2',
         '$': "Bibliothèques numériques de l'Université de Montréal"},
        'collectionOrganization': {'@organizationUrl': 'http://www.bib.umontreal.ca',
         '$': 'Université de Montréal'},
        'collectionURLMainSite': {'@thumbnaiId': '1884210',
         '$': 'http://www.bib.umontreal.ca'},
        'collectionInformations': {'collectionDescription': "Papyrus et Calypso sont des dépôts de données proposés par les bibliothèques de l'Université de Montréal. Vous trouverez ici différentes formes de travaux de recherche et d'enseignement (pré-publications, articles, rapports techniques, présentations, ensembles de données, etc.) produites par les professeurs et chercheurs de notre institution. Calypso vous fait découvrir une sélection d'objets numériques provenant des collections de la Direction des bibliothèques de l'Université de Montréal.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'depot@bib.umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.5o3050|10670/2.6mz01q',
         '$': "Bibliothèques numériques de l'Université de Montréal#Thèses et mémoires de l'UdeM"},
        'sourceCode': {'@handle': '10670/2.6mz01q',
         '$': '846d5562-7f37-4140-b86e-b4e1e3e64c95'},
        'sourceName': {'@shortLabel': "Thèses et mémoires de l'UdeM",
         '$': "Thèses et mémoires de l'UdeM"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '6849293',
         '$': 'http://hdl.handle.net/1866/2620'},
        'sourceScope': {'@uri': 'http://www.rechercheisidore.fr/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://hdl.handle.net/1866/2620',
         '$': "Source regroupant les thèses et mémoires (y compris les thèses électroniques) de l'Université de Montréal."},
        'sourceOrganization': {'label': "Bibliothèque de l'Université de Montréal",
         'URI': 'http://www.bib.umontreal.ca',
         'isoCountry': 'FR',
         'contactEmailAddress': 'depot@bib.umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://papyrus.bib.umontreal.ca/oai/request',
         'crawlingFrequency': '3600',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6187',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'philosophy'},
            {'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The academic discipline concerned with making explicit the nature and significance of ordinary and scientific beliefs and investigating the intelligibility of concepts by means of rational argument concerning their presuppositions, implications, and interrelationships; in particular, the rational investigation of the nature and structure of reality (metaphysics), the resources and limits of knowledge (epistemology), the principles and import of moral judgment (ethics), and the relationship between language and reality (semantics).'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330837'},
            {'@uri': 'http://eurovoc.europa.eu/2369'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119368422',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Et la philosophie'},
            {'@xml:lang': 'fr', '$': 'Contribution à la philosophie'},
            {'@xml:lang': 'fr', '$': 'Philosophie occidentale'},
            {'@xml:lang': 'fr', '$': 'Aspect philosophique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13319049t',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Civilisations'},
              {'@xml:lang': 'fr', '$': 'Civilisation universelle'},
              {'@xml:lang': 'fr', '$': 'Héritage culturel'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-143'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525257',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Filosofía'},
           'label': {'@xml:lang': 'es', '$': 'Filosofía'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005065',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Philosophy'},
           'altLabel': {'@xml:lang': 'en', '$': 'Knowledge--Philosophy'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía'},
            {'@xml:lang': 'fr', '$': 'philosophie'},
            {'@xml:lang': 'en', '$': 'philosophy'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga'},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
            {'@xml:lang': 'fr', '$': 'Logique philosophique'},
            {'@xml:lang': 'fr', '$': 'Morale'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'archaeology'},
            {'@xml:lang': 'fr', '$': 'archéologie'},
            {'@xml:lang': 'es', '$': 'arqueología'}],
           'altLabel': {'@xml:lang': 'en', '$': 'archeology'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV|http://ark.frantiq.fr/ark:/26678/pcrty05M9SVnLu',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|acquisition des données|archéologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'acquisition des données'},
              {'@xml:lang': 'en', '$': 'data collecting'},
              {'@xml:lang': 'es', '$': 'recolección de datos'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtIq8AvOPlPV'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/530',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'archaeology'},
            {'@xml:lang': 'es', '$': 'arqueología'},
            {'@xml:lang': 'fr', '$': 'archéologie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The scientific study of the material remains of the cultures of historical or prehistorical peoples.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2453'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13318444z',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Archéologie'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Archéologie de l'Antiquité"},
            {'@xml:lang': 'fr', '$': 'Archéologie classique'},
            {'@xml:lang': 'fr', '$': 'Archéologie gréco-romaine'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133191133',
              'prefLabel': {'@xml:lang': 'fr',
               '$': "Sciences auxiliaires de l'histoire"},
              'altLabel': {'@xml:lang': 'fr', '$': 'Sciences historiques'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
               {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
               {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-648'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525128',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Arqueología'},
           'label': {'@xml:lang': 'es', '$': 'Arqueología'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85006507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Archaeology'},
           'altLabel': {'@xml:lang': 'en', '$': 'Archeology'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-133',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Archéologie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Fouille archéologique'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-133',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Archéologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1839',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sémiologie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1839',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage|Sémiologie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtj2Jbe4hQGa',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'semiología'},
            {'@xml:lang': 'fr', '$': 'sémiologie'},
            {'@xml:lang': 'en', '$': 'semiology'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'sémiotique'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtj2Jbe4hQGa'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Science étudiant les systèmes de signes (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'FR'}},
     {'@uri': '10670/1.eyegu8',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': 'Perception-fiction : writing and contemporary visual creation : Roland Barthes, Samuel Beckett, Hervé Guibert'},
        {'@xml:lang': 'fr',
         '$': "Perception-fiction : L'écriture à l'épreuve de la création visuelle contemporaine : Roland Barthes, Samuel Beckett, Hervé Guibert"}],
       'url': 'https://hal.archives-ouvertes.fr/tel-02155441',
       'enrichedCreators': {'creator': {'@origin': 'Guilbard, Anne-Cécile',
         '@normalizedAuthor': 'Guilbard, Anne-Cécile',
         '@idAuthor': 'guilbard_anne_cecile',
         'firstname': 'Anne-Cécile',
         'lastname': 'Guilbard',
         'title': [],
         'sameAs': {'idref': '111270200', 'idhal': 'anne-cecile-guilbard'}}},
       'date': {'@origin': '2005-12-15',
        '@startDate': '2005-12-15',
        '@endDate': '2005-12-15',
        '@treeDate': '2000/2000/2005',
        'normalizedDate': '2005-12-15',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2000'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2005'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://hal.archives-ouvertes.fr/tel-02155441'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '20040785',
          '$': 'https://hal.archives-ouvertes.fr/tel-02155441/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://hal.archives-ouvertes.fr/tel-02155441/file/manuscrit%20th%C3%A8se%20biblioth%C3%A8que.pdf'}],
        'similar': ['NNT: 2005PA082610', 'tel-02155441']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'literature'},
         {'@xml:lang': 'en', '$': 'photography'},
         {'@xml:lang': 'en', '$': 'aesthetics'},
         {'@xml:lang': 'en', '$': 'visual arts'},
         {'@xml:lang': 'en', '$': 'pictures'},
         {'@xml:lang': 'en', '$': 'video plays'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         {'@xml:lang': 'fr', '$': 'Roland (1915-1980)'},
         {'@xml:lang': 'fr', '$': 'Beckett'},
         {'@xml:lang': 'fr', '$': 'Samuel (1906-1989)'},
         {'@xml:lang': 'fr', '$': 'Guibert'},
         {'@xml:lang': 'fr', '$': 'Hervé (1955-1991)'},
         {'@xml:lang': 'fr', '$': 'littérature'},
         {'@xml:lang': 'fr', '$': 'photographie'},
         {'@xml:lang': 'fr', '$': 'esthétique'},
         {'@xml:lang': 'fr', '$': 'arts visuels'},
         {'@xml:lang': 'fr', '$': 'image'},
         {'@xml:lang': 'fr', '$': 'film'},
         {'@xml:lang': 'fr', '$': 'vidéo'},
         '[SHS.LITT]Humanities and Social Sciences/Literature',
         '[SHS.ART]Humanities and Social Sciences/Art and art history']},
       'abstract': [{'@xml:lang': 'en',
         '$': 'Seeing is not only imagining. Barthes, Beckett and Guibert use this difference as a force of fiction, as well in their narratives as in their theoretical or critical writings Their visual works, the use they make of the Visible compared with the inevitable imaginary of language, show it too: visual perception is a system of obstacles. Thus it produces a dynamic which proves to constitute a method in Aesthetics when the image is to be told – when one does see.'},
        {'@xml:lang': 'fr',
         '$': 'Voir n’est pas seulement imaginer. Barthes, Beckett et Guibert le savent qui font de cet écart un moteur de fiction, tant dans leurs récits que dans leurs textes théoriques ou critiques. Leurs œuvres visuelles, l’usage qu’ils font du visible par rapport à l’imaginaire fatal propre au langage, le montrent également : la perception visuelle constitue un système d’empêchements. Elle produit ainsi une dynamique qui s’avère faire méthode en Esthétique lorsqu’il s’agit de dire l’image – quand on voit.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11931807b',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Création'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Création du monde'},
            {'@xml:lang': 'fr', '$': 'Création divine'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318914d',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie dogmatique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Dogmatique'},
               {'@xml:lang': 'fr', '$': 'Vérités de foi'},
               {'@xml:lang': 'fr', '$': 'Doctrine chrétienne'},
               {'@xml:lang': 'fr', '$': 'Définitions dogmatiques'},
               {'@xml:lang': 'fr', '$': 'Théologie fondamentale'},
               {'@xml:lang': 'fr', '$': 'Théologie systématique'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119731082',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Théologie naturelle'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Théologie rationnelle'},
               {'@xml:lang': 'fr', '$': 'Religion naturelle'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526689',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Creación'},
           'label': {'@xml:lang': 'es', '$': 'Creación'},
           'altLabel': {'@xml:lang': 'es', '$': 'Creación (Teología)'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85033823',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Creation'},
           'altLabel': {'@xml:lang': 'en', '$': 'Biblical cosmogony'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933068t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perception'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Psychologie de la perception'},
            {'@xml:lang': 'fr', '$': 'Perception (psychologie)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931219p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Cognition'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Connaissance'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85099708',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Perception'},
           'altLabel': {'@xml:lang': 'en', '$': 'Supraliminal perception'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perception'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Perception'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
            {'@xml:lang': 'fr', '$': 'image'},
            {'@xml:lang': 'es', '$': 'imagen'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
             'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
              {'@xml:lang': 'es', '$': 'estética'},
              {'@xml:lang': 'fr', '$': 'esthétique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science qui traite du beau en général (Lar.)'}}}},
          {'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Image'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Image'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/2754',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'engine'},
            {'@xml:lang': 'es', '$': 'motor'},
            {'@xml:lang': 'fr', '$': 'moteur'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A machine in which power is applied to do work by the conversion of various forms of energy into mechanical force and motion.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2956',
             'prefLabel': [{'@xml:lang': 'en', '$': 'equipment'},
              {'@xml:lang': 'es', '$': 'equipos'},
              {'@xml:lang': 'fr', '$': 'équipement'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Any collection of materials, supplies or apparatuses stored, furnished or provided for an undertaking or activity.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1994'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
            {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
            {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
            {'@xml:lang': 'fr', '$': 'Récits'},
            {'@xml:lang': 'fr', '$': 'Romans'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
              {'@xml:lang': 'fr', '$': 'Littérature universelle'},
              {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
            {'@xml:lang': 'en', '$': 'Novels'},
            {'@xml:lang': 'en', '$': 'Stories'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932861c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Nouvelles'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Nouvelles (littérature)'},
            {'@xml:lang': 'fr', '$': 'Récits'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
            {'@xml:lang': 'en', '$': 'Novels'},
            {'@xml:lang': 'en', '$': 'Stories'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901811n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critiques'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034154',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Critics'},
           'altLabel': {'@xml:lang': 'en', '$': 'Literary critics'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11975752p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Usage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Bon usage (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Usage (linguistique)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006425',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Usage'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Idioms, corrections, errors'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Use'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Rapport'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1716',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Rapport'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Imaginaire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Rêve'},
            {'@xml:lang': 'fr', '$': 'Espace Imaginaire'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1098',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Imaginaire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Psychologie'}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'imaginaire'},
            {'@xml:lang': 'es', '$': 'imaginario'},
            {'@xml:lang': 'en', '$': 'imaginings'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtgWd5ryyeW5'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Langage'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
            {'@xml:lang': 'en', '$': 'language'},
            {'@xml:lang': 'es', '$': 'lenguaje'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
            {'@xml:lang': 'fr', '$': 'Langage et langues'},
            {'@xml:lang': 'fr', '$': 'Langues et langage'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Language (New words, slang, etc.)'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2101',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Vue'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Perception visuelle'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1514|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2101',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Perception|Perception sensible|Vue'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1514',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Perception sensible'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Sensation'},
              {'@xml:lang': 'fr', '$': 'Affect'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1511|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1514',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Perception|Perception sensible'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11963379x',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Perception visuelle'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933068t',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Perception'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': 'Psychologie de la perception'},
              {'@xml:lang': 'fr', '$': 'Perception (psychologie)'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85143926',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Visual perception'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Vision--Psychological aspects'},
            {'@xml:lang': 'en', '$': 'Optics, Psychological'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527779',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Percepción visual'},
           'label': {'@xml:lang': 'es', '$': 'Percepción visual'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Óptica psicológica'},
            {'@xml:lang': 'es', '$': 'Vista--Aspectos psicológicos'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6660',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'product'},
            {'@xml:lang': 'es', '$': 'producto'},
            {'@xml:lang': 'fr', '$': 'produit'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Something produced by human or mechanical effort or by a natural process.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_6211'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1291',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mécanique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Cinématique'},
            {'@xml:lang': 'fr', '$': 'Dynamique'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1291'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Aérodynamique'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11942176p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Dynamique'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119531942',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mécanique analytique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Cinétique (mécanique analytique)'},
               {'@xml:lang': 'fr', '$': 'Mécanique rationnelle'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933127h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences physiques'},
               {'@xml:lang': 'fr', '$': 'Philosophie naturelle'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932434c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mathématiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Sciences mathématiques'},
               {'@xml:lang': 'fr', '$': 'Mathématiques appliquées'},
               {'@xml:lang': 'fr', '$': 'Méthodes mathématiques'},
               {'@xml:lang': 'fr', '$': 'Mathématiques modernes'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525560',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Dinámica'},
           'label': {'@xml:lang': 'es', '$': 'Dinámica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Cinética'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005727',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Dynamics'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11976246m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Méthode'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13088',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'method'},
            {'@xml:lang': 'es', '$': 'método'},
            {'@xml:lang': 'fr', '$': 'méthode'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A way of proceeding or doing something, especially a systematic or regular one.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
             'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'},
              {'@xml:lang': 'fr', '$': 'méthodologie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The system of methods and principles used in a particular discipline.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4788'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
           'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
            {'@xml:lang': 'es', '$': 'estética'},
            {'@xml:lang': 'fr', '$': 'esthétique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Science qui traite du beau en général (Lar.)'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11931288h',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Esthétique'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Théorie de l'art"},
            {'@xml:lang': 'fr', '$': 'Théories artistiques'},
            {'@xml:lang': 'fr', '$': "Et l'esthétique"},
            {'@xml:lang': 'fr', '$': "Contribution à l'esthétique"},
            {'@xml:lang': 'fr', '$': "Art, Théorie de l'"},
            {'@xml:lang': 'fr', '$': 'Philosophie des arts'},
            {'@xml:lang': 'fr', '$': 'Théorie artistique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119368422',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Et la philosophie'},
              {'@xml:lang': 'fr', '$': 'Contribution à la philosophie'},
              {'@xml:lang': 'fr', '$': 'Philosophie occidentale'},
              {'@xml:lang': 'fr', '$': 'Aspect philosophique'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002256',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Aesthetics'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/163',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
            {'@xml:lang': 'es', '$': 'estética'},
            {'@xml:lang': 'fr', '$': 'esthétique'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Considerations, values, and judgements pertaining to the quality of the human perceptual experience (including sight, sound, smell, touch, taste, and movement) evoked by phenomena or components of the environment.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6187',
             'prefLabel': [{'@xml:lang': 'en', '$': 'philosophy'},
              {'@xml:lang': 'es', '$': 'filosofía'},
              {'@xml:lang': 'fr', '$': 'philosophie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The academic discipline concerned with making explicit the nature and significance of ordinary and scientific beliefs and investigating the intelligibility of concepts by means of rational argument concerning their presuppositions, implications, and interrelationships; in particular, the rational investigation of the nature and structure of reality (metaphysics), the resources and limits of knowledge (epistemology), the principles and import of moral judgment (ethics), and the relationship between language and reality (semantics).'}}}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-875',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Esthétique'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-875',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Esthétique'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}],
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Philosophie'}}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'fr', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Arts'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc'},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble des oeuvres artistiques d'un pays, d'une époque (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11935712m',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Arts'},
           'altLabel': {'@xml:lang': 'fr', '$': "Oeuvres d'art"}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85008324',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Arts'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Arts, Occidental'},
            {'@xml:lang': 'en', '$': 'Arts, Western'},
            {'@xml:lang': 'en', '$': 'Fine arts'},
            {'@xml:lang': 'en', '$': 'Arts, Fine'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
            {'@xml:lang': 'fr', '$': 'Art photographique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
              {'@xml:lang': 'fr', '$': 'Arts plastiques'},
              {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
              {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4683393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
            {'@xml:lang': 'fr', '$': 'Arts plastiques'},
            {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
            {'@xml:lang': 'fr', '$': 'Arts visuels'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85007461',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Art'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Western art (Western countries)'},
            {'@xml:lang': 'en', '$': 'Fine arts'},
            {'@xml:lang': 'en', '$': 'Iconography'},
            {'@xml:lang': 'en', '$': 'Arts, Fine'},
            {'@xml:lang': 'en', '$': 'Art, Occidental'},
            {'@xml:lang': 'en', '$': 'Arts, Visual'},
            {'@xml:lang': 'en', '$': 'Visual arts'},
            {'@xml:lang': 'en', '$': 'Occidental art'},
            {'@xml:lang': 'en', '$': 'Art, Visual'},
            {'@xml:lang': 'en', '$': 'Art, Western (Western countries)'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'cine'},
            {'@xml:lang': 'fr', '$': 'cinéma'},
            {'@xml:lang': 'en', '$': 'film'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'film'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX|http://ark.frantiq.fr/ark:/26678/pcrtkIWuw5SNMv',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances|cinéma'},
             {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|grabación - difusión|difusión de los conocimientos|cine'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'diffusion des connaissances'},
              {'@xml:lang': 'es', '$': 'difusión de los conocimientos'},
              {'@xml:lang': 'en', '$': 'knowledge diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtmmR7IUcfSX',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|diffusion des connaissances'}}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3183',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'film'},
            {'@xml:lang': 'es', '$': 'película'},
            {'@xml:lang': 'fr', '$': 'film'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A motion picture; a thin flexible strip of cellulose coated with a photographic emission, used to make negatives and transparencies.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2284',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentation'},
              {'@xml:lang': 'es', '$': 'documentación'},
              {'@xml:lang': 'fr', '$': 'documentation'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/3805'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933779d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Vidéo'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Enregistrement vidéo'},
            {'@xml:lang': 'fr', '$': 'Vidéo-enregistrement'},
            {'@xml:lang': 'fr', '$': 'Magnétoscopie'},
            {'@xml:lang': 'fr', '$': 'Enregistrement de télévision sur bande'},
            {'@xml:lang': 'fr', '$': 'Péritélévision'},
            {'@xml:lang': 'fr', '$': 'Vidéopublication'},
            {'@xml:lang': 'fr', '$': 'Enregistrement magnétoscopique'},
            {'@xml:lang': 'fr', '$': 'Vidéoenregistrement'},
            {'@xml:lang': 'fr', '$': 'Vidéophonie'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119517649',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Audiovisuel'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Audio-visuel'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344712',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Télédiffusion'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119336465',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Télévision'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11978313d',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Enregistrement magnétique'}}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527205',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Vídeo'},
           'label': {'@xml:lang': 'es', '$': 'Vídeo'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh92003035',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Video recording'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Cinematography--Electronic methods'},
            {'@xml:lang': 'en', '$': 'Electronic cinematography'},
            {'@xml:lang': 'en', '$': 'Video tape recording'},
            {'@xml:lang': 'en', '$': 'Videography'},
            {'@xml:lang': 'en', '$': 'Video taping'},
            {'@xml:lang': 'en', '$': 'Videotaping'},
            {'@xml:lang': 'en', '$': 'Videorecording'},
            {'@xml:lang': 'en', '$': 'Videotape recording'},
            {'@xml:lang': 'en', '$': 'Video tape recorders and recording'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-247',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art vidéo'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Vidéo'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-247',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Art vidéo'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/8964',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'video'},
            {'@xml:lang': 'es', '$': 'vídeo'},
            {'@xml:lang': 'fr', '$': 'vidéo'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A format or system used to record and transmit visual or audiovisual information by translating moving or still images into electrical signals.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2284',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentation'},
              {'@xml:lang': 'es', '$': 'documentación'},
              {'@xml:lang': 'fr', '$': 'documentation'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The process of accumulating, classifying and disseminating information, often to support the claim or data given in a book or article.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/2125'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/568',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'},
            {'@xml:lang': 'fr', '$': 'art'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The creation of works of beauty or other special significance.'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "051 Analyse et théorie de l'art|Art"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141',
             'prefLabel': {'@xml:lang': 'fr',
              '$': "051 Analyse et théorie de l'art"}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': [{'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Littératures"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Literature'},
              {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
               'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
                {'@xml:lang': 'en', '$': 'Literature'},
                {'@xml:lang': 'fr', '$': 'Littératures'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Language|Literature'},
                 {'@xml:lang': 'fr',
                  '$': 'Esprit et Langage|Langage|Littératures'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Literature'}]},
           {'@proba': '1.000',
            '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.art',
            'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
            'prefLabel': [{'@xml:lang': 'en', '$': 'Art and art history'},
             {'@xml:lang': 'fr', '$': "Art et histoire de l'art"},
             {'@xml:lang': 'es', '$': 'Arte e historia del arte'}],
            'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.art',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': "Sciences de l'Homme et Société|Art et histoire de l'art"},
              {'@xml:lang': 'en',
               '$': 'Humanities and Social Sciences|Art and art history'},
              {'@xml:lang': 'es',
               '$': 'Ciencias sociales|Arte e historia del arte'}]},
            'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
               {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
               {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
              'definition': {'@xml:lang': 'fr',
               '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
            'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie278',
               'prefLabel': [{'@xml:lang': 'fr', '$': "Histoire de l'Art"},
                {'@xml:lang': 'es', '$': 'Historia del arte'},
                {'@xml:lang': 'en', '$': 'History of art'}],
               'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278',
                'expandedLabel': [{'@xml:lang': 'es',
                  '$': 'Pensamiento y lenguaje|Representación|Historia del arte'},
                 {'@xml:lang': 'fr',
                  '$': "Esprit et Langage|Représentations|Histoire de l'Art"},
                 {'@xml:lang': 'en',
                  '$': 'Mind and language|Representation|History of art'}]}}},
             {'@uri': 'http://dbpedia.org/resource/Art_history'}]}]},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': [{'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie278',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'fr', '$': "Histoire de l'Art"},
             {'@xml:lang': 'es', '$': 'Historia del arte'},
             {'@xml:lang': 'en', '$': 'History of art'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie276|http://calenda.org/categories.rdf#categorie278',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Representación|Historia del arte'},
              {'@xml:lang': 'fr',
               '$': "Esprit et Langage|Représentations|Histoire de l'Art"},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Representation|History of art'}]}},
           {'@proba': '1.000',
            '@uri': 'http://calenda.org/categories.rdf#categorie269',
            '@origin': 'hal',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
             {'@xml:lang': 'en', '$': 'Literature'},
             {'@xml:lang': 'fr', '$': 'Littératures'}],
            'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
             'expandedLabel': [{'@xml:lang': 'es',
               '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
              {'@xml:lang': 'en',
               '$': 'Mind and language|Language|Literature'},
              {'@xml:lang': 'fr',
               '$': 'Esprit et Langage|Langage|Littératures'}]}}]}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.h7hfzs',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': "Roland Barthes et <i>La Préparation du Roman</i> : « toujours penser l'écriture en termes de musique »"},
       'url': 'https://dumas.ccsd.cnrs.fr/dumas-00743181',
       'enrichedCreators': {'creator': {'@origin': 'Étienne, Valère',
         '@normalizedAuthor': 'Étienne, Valère',
         '@idAuthor': 'etienne_valere',
         'firstname': 'Valère',
         'lastname': 'Étienne',
         'title': [],
         'sameAs': {'idref': '199537348'}}},
       'date': {'@origin': '2012-09-25',
        '@startDate': '2012-09-25',
        '@endDate': '2012-09-25',
        '@treeDate': '2000/2010/2012',
        'normalizedDate': '2012-09-25',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2012'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00743181'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15170686',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00743181/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00743181/file/ETIENNE_Valere_M2_RECH_2012_DUM.pdf'}],
        'similar': 'dumas-00743181'},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Figures'},
         {'@xml:lang': 'fr', '$': 'Tonalité'},
         {'@xml:lang': 'fr', '$': 'Écriture'},
         {'@xml:lang': 'fr', '$': 'Corps'},
         {'@xml:lang': 'fr', '$': 'Musique'},
         {'@xml:lang': 'fr', '$': 'Préparation du roman'},
         {'@xml:lang': 'fr', '$': 'Roland Barthes (1915-1980)'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': {'@xml:lang': 'fr',
        '$': "« Il faut toujours penser l'écriture en termes de musique », déclare Roland Barthes à son auditoire du Collège de France, le 2 février 1980, au cours d'un séminaire visant pour lui à explorer un projet qu'il vient de concevoir : celui d'écrire un roman. Barthes se propose pour cela de vivre l'écriture comme une activité purement manuelle et corporelle, semblable à celle d'un pianiste ou d'un chanteur. Un quart de siècle plus tôt, dans <i>Le Degré zéro de l'écriture</i>, il plaçait certes déjà le corps de l'écrivain à l'origine de son écriture (c'était la définition qu'il donnait du « style ») ; mais à cette époque-là, les impératifs formels de sa langue et les injonctions de sa culture avaient tôt fait de contraindre ce geste de l'écrivain et d'en annuler toute la valeur de sensualité. Si pourtant on décide de suivre Barthes dans ses réflexions sur la musique et sur l'écriture dans les vingt-cinq années à venir, on s'aperçoit que vers la fin des années 1970, tout a changé : le corps de l'auteur va pouvoir se réintroduire totalement dans son écriture, au point que le « roman » envisagé par Barthes deviendra ni plus ni moins que la projection sensible de sa chair. Il lui aura fallu pour cela réinventer l'écriture et se mettre à la pratiquer sur le mode de la musique, afin de faire <i>vivre</i> le langage par son corps. Et pour parvenir à restituer au sein d'un livre une totalité de culture et d'expérience vécue, l'idée de Barthes aura été d'« écrire une œuvre en <i>ut</i> majeur » : ainsi la <i>tonalité</i>, qui prête à la musique son uniformité perceptible caractéristique, aura pu agir de même comme un fluide unificateur à l'égard de son langage, de sa culture et des expériences de sa vie, de sorte que son corps puisse les garder sous la forme d'une seule mémoire sensible et les reproduire tout entiers, comme un chant familier."},
       'types': {'type': ['info:eu-repo/semantics/masterThesis',
         'Master thesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.czoe88',
         '$': 'Archives ouvertes#DUMAS'},
        'sourceCode': {'@handle': '10670/2.czoe88',
         '$': '75d98e3b-b174-4fa2-8dab-d65eb895e16a'},
        'sourceName': {'@shortLabel': 'DUMAS',
         '$': 'Dépôt Universitaire de Mémoires Après Soutenance'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '631374',
         '$': 'http://dumas.ccsd.cnrs.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "DUMAS (Dépôt Universitaire de Mémoires Après Soutenance) est une base d'archives ouvertes de travaux d'étudiants de niveaux bac+4 et bac+5, validés par un jury, dans toutes les disciplines. La base DUMAS est hébergée par HAL.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/dumas',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '8',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
             {'@xml:lang': 'fr', '$': 'Écriture'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
           {'@count': '8',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
             {'@xml:lang': 'es', '$': 'escritura'},
             {'@xml:lang': 'en', '$': 'writing'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '8',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
             {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
             {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
             {'@xml:lang': 'fr', '$': 'Graphémique'},
             {'@xml:lang': 'fr', '$': 'Graphie'},
             {'@xml:lang': 'fr', '$': 'Langue écrite'},
             {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
             {'@xml:lang': 'fr', '$': 'Signes graphiques'},
             {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
                {'@xml:lang': 'fr', '$': 'Figures symboliques'},
                {'@xml:lang': 'fr', '$': 'Symboles'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
                {'@xml:lang': 'fr', '$': 'Langage et langues'},
                {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
           {'@count': '8',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
           {'@count': '8',
            '@uri': 'http://datos.bne.es/resource/XX524426',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
            'label': {'@xml:lang': 'es', '$': 'Escritura'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
             {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
             {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
           {'@count': '8',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11975743q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Noms'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Noms communs'},
             {'@xml:lang': 'fr', '$': 'Termes'},
             {'@xml:lang': 'fr', '$': 'Substantifs'},
             {'@xml:lang': 'fr', '$': 'Nom (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Noms (linguistique)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
                {'@xml:lang': 'fr', '$': 'Termes'},
                {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
                {'@xml:lang': 'fr', '$': 'Mots'},
                {'@xml:lang': 'fr', '$': 'Vocables'},
                {'@xml:lang': 'fr', '$': 'Mot'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11976361s',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Parties du discours (linguistique)'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Catégories lexicales'},
                {'@xml:lang': 'fr', '$': 'Classes de mots'},
                {'@xml:lang': 'fr', '$': 'Mots, Classes de'},
                {'@xml:lang': 'fr', '$': 'Espèces de mots'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006807',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Names'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
             {'@xml:lang': 'fr', '$': 'Termes'},
             {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Mots'},
             {'@xml:lang': 'fr', '$': 'Vocables'},
             {'@xml:lang': 'fr', '$': 'Mot'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX527050',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
            'label': {'@xml:lang': 'es', '$': 'Terminología'}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
            'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
           {'@count': '6',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/5449',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'music'},
             {'@xml:lang': 'es', '$': 'música'},
             {'@xml:lang': 'fr', '$': 'musique'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The artistic organization of sounds or tones that expresses ideas and emotions through the elements of rhythm, melody, harmony and tonal color.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
              'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
               {'@xml:lang': 'es', '$': 'patrimonio cultural'},
               {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
            'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5007'},
             {'@uri': 'http://eurovoc.europa.eu/2023'}]},
           {'@count': '6',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEnaO4jSDml',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'music'},
             {'@xml:lang': 'es', '$': 'música'},
             {'@xml:lang': 'fr', '$': 'musique'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtEnaO4jSDml'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI',
              'prefLabel': [{'@xml:lang': 'en', '$': 'leisure'},
               {'@xml:lang': 'fr', '$': 'loisirs'},
               {'@xml:lang': 'es', '$': 'ocio'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI'}}}},
           {'@count': '6',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133183660',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Musique'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres musicales'},
             {'@xml:lang': 'fr', '$': 'Art musical'},
             {'@xml:lang': 'fr', '$': 'Musique classique'},
             {'@xml:lang': 'fr', '$': 'Chants et musique'},
             {'@xml:lang': 'fr', '$': 'Musique savante'}]},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001945',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Music'}},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001806',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Songs and music'},
            'altLabel': {'@xml:lang': 'en', '$': 'Music and songs'}},
           {'@count': '6',
            '@uri': 'http://datos.bne.es/resource/XX525209',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Música'},
            'label': {'@xml:lang': 'es', '$': 'Música'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Arte musical'},
             {'@xml:lang': 'es', '$': 'Composiciones musicales'},
             {'@xml:lang': 'es', '$': 'Música clásica'},
             {'@xml:lang': 'es', '$': 'Obras musicales'}]},
           {'@count': '6',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1397',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Musique'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1397',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques|Musique'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13516396s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Publics'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Spectateurs'},
             {'@xml:lang': 'fr', '$': 'Public'},
             {'@xml:lang': 'fr', '$': 'Auditoire'},
             {'@xml:lang': 'fr', '$': 'Assistance (public)'},
             {'@xml:lang': 'fr', '$': 'Visiteurs'},
             {'@xml:lang': 'fr', '$': 'Fréquentation'},
             {'@xml:lang': 'fr', '$': 'Audience'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
               {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Collège'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-539'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Bâtiment scolaire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Groupe scolaire'},
               {'@xml:lang': 'fr', '$': 'Architecture scolaire'},
               {'@xml:lang': 'fr', '$': 'Construction scolaire'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342'}}}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#FRANCE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'France'},
             {'@xml:lang': 'en', '$': 'France'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'République française'},
             {'@xml:lang': 'en', '$': 'French Republic'},
             {'@xml:lang': 'fr', '$': 'Royaume de France'},
             {'@xml:lang': 'fr', '$': 'Royaume de France (987-1791)'}],
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#FRANCE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|France'},
              {'@xml:lang': 'en', '$': 'Europe|Western Europe|France'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#EUROPE_OCCIDENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Europe occidentale'},
               {'@xml:lang': 'en', '$': 'Western Europe'},
               {'@xml:lang': 'es', '$': 'Europa Occidental'}],
              'altLabel': [{'@xml:lang': 'fr', '$': "Europe de l'Ouest"},
               {'@xml:lang': 'es', '$': 'Europa del oeste'}],
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Europe|Europe occidentale'},
                {'@xml:lang': 'es', '$': 'Europa|Europa Occidental'},
                {'@xml:lang': 'en', '$': 'Europe|Western Europe'}]}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13195246p',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Février'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318617m',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mois'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voie urbaine'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Avenue'},
             {'@xml:lang': 'fr', '$': 'Boulevard'},
             {'@xml:lang': 'fr', '$': 'Cours'}],
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2093'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Voirie'},
              'altLabel': {'@xml:lang': 'fr',
               '$': 'Réseau des voies urbaines'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2100|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2096',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '021 Aménagement urbain|Urbanisme|VRD|Voirie'}}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/6710',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'project'},
             {'@xml:lang': 'es', '$': 'proyecto'},
             {'@xml:lang': 'fr', '$': 'projet'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The complex of actions, which have a potential for resulting in a physical change in the environment.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2889',
              'prefLabel': [{'@xml:lang': 'en', '$': 'environmental planning'},
               {'@xml:lang': 'es', '$': 'planificación ambiental'},
               {'@xml:lang': 'fr', '$': 'planification écologique'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The identification of desirable objectives for the physical environment, including social and economic objectives, and the creation of administrative procedures and programmes to meet those objectives.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb123646313',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Projet'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Projet de vie'},
             {'@xml:lang': 'fr', '$': "Projet d'avenir"},
             {'@xml:lang': 'fr', '$': 'Projets'},
             {'@xml:lang': 'fr', '$': 'Projet (psychologie)'},
             {'@xml:lang': 'fr', '$': 'Projet collectif'},
             {'@xml:lang': 'fr', '$': 'Projet personnel'},
             {'@xml:lang': 'fr', '$': 'Projet individuel'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119365903',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Motivation (psychologie)'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Motif (psychologie)'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85055484',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Goal (Psychology)'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Goal setting'},
             {'@xml:lang': 'en', '$': 'Setting of goals'}]},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
             {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
             {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
             {'@xml:lang': 'fr', '$': 'Récits'},
             {'@xml:lang': 'fr', '$': 'Romans'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
             {'@xml:lang': 'en', '$': 'Novels'},
             {'@xml:lang': 'en', '$': 'Stories'}]},
           {'@count': '3',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Art roman'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': "050 Histoire de l'art|Histoire de l'art|Art roman"}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
              'prefLabel': {'@xml:lang': 'fr', '$': "Histoire de l'art"},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': "050 Histoire de l'art|Histoire de l'art"}}}}},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'novel'},
             {'@xml:lang': 'es', '$': 'novela'},
             {'@xml:lang': 'fr', '$': 'roman'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Récit où dominent les aventures (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
              'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
               {'@xml:lang': 'fr', '$': 'genre narratif'},
               {'@xml:lang': 'en', '$': 'narrative genre'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}}}}},
           {'@count': '5',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16505206p',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Corps'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Corps (anatomie)'},
             {'@xml:lang': 'fr', '$': 'Parties du corps'}]},
           {'@count': '5',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'body'},
             {'@xml:lang': 'fr', '$': 'corps'},
             {'@xml:lang': 'es', '$': 'cuerpo'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm|http://ark.frantiq.fr/ark:/26678/pcrta44Qt67PN7'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm',
              'prefLabel': [{'@xml:lang': 'es', '$': 'anatomía'},
               {'@xml:lang': 'fr', '$': 'anatomie'},
               {'@xml:lang': 'en', '$': 'anatomy'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtLEaUqg7IZm'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPcz61Ql91w',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'écrivain'},
             {'@xml:lang': 'es', '$': 'escritor'},
             {'@xml:lang': 'en', '$': 'writer'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9|http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X|http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz|http://ark.frantiq.fr/ark:/26678/pcrtPcz61Ql91w'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz',
              'prefLabel': [{'@xml:lang': 'es', '$': 'intelectual'},
               {'@xml:lang': 'en', '$': 'intellectual'},
               {'@xml:lang': 'fr', '$': 'intellectuel'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9|http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X|http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119759229',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Style'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11965332r',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langue'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006382',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language, style'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009058',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literary style'},
            'altLabel': {'@xml:lang': 'en', '$': 'Language--Style'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00006386',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Literary art'},
            'altLabel': {'@xml:lang': 'en', '$': 'Writing skill'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009056',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Style'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965332r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langue'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006382',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language, style'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Language (New words, slang, etc.)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12048317r',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Injonctions'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Procédures d'injonction"},
             {'@xml:lang': 'fr', '$': 'Injonction (droit)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12067283f',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Procédure civile'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Droit judiciaire privé'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12484628s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Procédure sommaire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Procédures sommaires'},
                {'@xml:lang': 'fr', '$': 'Procédures accélérées'},
                {'@xml:lang': 'fr', '$': 'Procédure accélérée'},
                {'@xml:lang': 'fr', '$': 'Procédures rapides'},
                {'@xml:lang': 'fr', '$': 'Procédure simplifiée'},
                {'@xml:lang': 'fr', '$': 'Procédure à jour fixe'},
                {'@xml:lang': 'fr', '$': 'Procédure rapide'},
                {'@xml:lang': 'fr', '$': 'Saisine directe'},
                {'@xml:lang': 'fr', '$': 'Poursuites sommaires'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119803846',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Mesures provisoires'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Mesures provisionnelles'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85066451',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Injunctions'},
            'altLabel': {'@xml:lang': 'en', '$': 'Anti-injunction law'}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11931827z',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Culture'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Vie culturelle'},
            'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-786'}}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85034755',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Culture'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Cultural sociology'},
             {'@xml:lang': 'en', '$': 'Culture--Social aspects'},
             {'@xml:lang': 'en', '$': 'Sociology of culture'}]},
           {'@count': '3',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'Cultura'},
             {'@xml:lang': 'fr', '$': 'culture'},
             {'@xml:lang': 'en', '$': 'Culture'}],
            'expanded': [{'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB'},
             {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D|http://ark.frantiq.fr/ark:/26678/pcrtuQw1K0XBDB',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filosofía|filosofía (noción)|naturaleza/cultura|Cultura'}}],
            'definition': {'@xml:lang': 'fr',
             '$': "En philosophie désigne ce qui est différent de la nature, c'est-à-dire ce qui est de l'ordre de l'acquis et non de l'inné. En sociologie,  désigne ce qui est commun à un groupe d'individus et ce qui le soude, c'est-à-dire ce qui est appris, transmis, produit et créé et englobe les arts, les lettres, les sciences, les modes de vie, les droits fondamentaux de l'être humain, les systèmes de valeurs, les traditions et les croyances. (d'après Wikipédia)"},
            'semanticExpansion': [{'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
               'prefLabel': [{'@xml:lang': 'en',
                 '$': 'civilization processes'},
                {'@xml:lang': 'fr', '$': 'faits de civilisation'},
                {'@xml:lang': 'es', '$': 'hechos de civilización'}],
               'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrt2ThJS0tvuK',
                'expandedLabel': {'@xml:lang': 'fr',
                 '$': 'Sujets|histoire-civilisation|faits de civilisation'}}}},
             {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRIXSe9d00D',
               'prefLabel': [{'@xml:lang': 'es', '$': 'naturaleza/cultura'},
                {'@xml:lang': 'en', '$': 'nature/culture'},
                {'@xml:lang': 'fr', '$': 'nature/culture'}],
               'altLabel': {'@xml:lang': 'fr', '$': 'culture/nature'}}}]},
           {'@count': '3',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/1899',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'cultivation'},
             {'@xml:lang': 'es', '$': 'cultivo'},
             {'@xml:lang': 'fr', '$': 'culture'}],
            'definition': {'@xml:lang': 'en',
             '$': 'The practice of growing and nurturing plants outside of their wild habitat (i.e., in gardens, nurseries, arboreta).'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/232',
              'prefLabel': [{'@xml:lang': 'en', '$': 'agriculture'},
               {'@xml:lang': 'es', '$': 'agricultura'},
               {'@xml:lang': 'fr', '$': 'agriculture'}],
              'definition': {'@xml:lang': 'en',
               '$': 'The production of plants and animals useful to man, involving soil cultivation and the breeding and management of crops and livestock.'}}},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_2018'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119315332',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gestes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Mimiques'},
             {'@xml:lang': 'fr', '$': 'Langage corporel'},
             {'@xml:lang': 'fr', '$': 'Langage gestuel'},
             {'@xml:lang': 'fr', '$': 'Gestuelle'},
             {'@xml:lang': 'fr', '$': 'Langage du corps'},
             {'@xml:lang': 'fr', '$': 'Expression gestuelle'},
             {'@xml:lang': 'fr', '$': 'Expressions gestuelles'},
             {'@xml:lang': 'fr', '$': 'Attitudes corporelles'},
             {'@xml:lang': 'fr', '$': 'Geste'},
             {'@xml:lang': 'fr', '$': 'Attitude corporelle'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11936480h',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Communication non-verbale'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Langage non-verbal'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930966w',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Art dramatique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Art de l'acteur (théâtre)"},
                {'@xml:lang': 'fr', '$': "Jeu de l'acteur (théâtre)"},
                {'@xml:lang': 'fr', '$': 'Jeu dramatique'}]}}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXyLVOLoD5w',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'valeur'},
             {'@xml:lang': 'es', '$': 'valor'},
             {'@xml:lang': 'en', '$': 'value'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'valeur (notion)'},
             {'@xml:lang': 'fr', '$': 'valeur-virtus'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtXyLVOLoD5w'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
              'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
               {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
               {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
               {'@xml:lang': 'fr', '$': 'philosophie thème'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119512162',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Valeur'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Valeur (économie politique)'},
             {'@xml:lang': 'fr', '$': 'Valeur utilité, Théorie de la'},
             {'@xml:lang': 'fr', '$': 'Théorie de la valeur utilité'},
             {'@xml:lang': 'fr', '$': 'Étalon de valeur'},
             {'@xml:lang': 'fr', '$': 'Théorie de la valeur'},
             {'@xml:lang': 'fr', '$': "Valeur d'usage"}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975727g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Économie politique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Système économique'},
                {'@xml:lang': 'fr', '$': 'Économie'},
                {'@xml:lang': 'fr', '$': 'Doctrines économiques'},
                {'@xml:lang': 'fr', '$': 'Analyse économique'},
                {'@xml:lang': 'fr', '$': 'Science économique'},
                {'@xml:lang': 'fr', '$': 'Économique'},
                {'@xml:lang': 'fr', '$': 'Théorie économique'},
                {'@xml:lang': 'fr', '$': 'Systèmes économiques'},
                {'@xml:lang': 'fr', '$': 'Sciences économiques'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119718791',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Coût'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Coût (économie politique)'},
                {'@xml:lang': 'fr', '$': 'Coûts'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11977007d',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Richesse'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Opulence'},
                {'@xml:lang': 'fr', '$': 'Patrimoine économique national'},
                {'@xml:lang': 'fr', '$': 'Fortune'},
                {'@xml:lang': 'fr', '$': 'Biens temporels'},
                {'@xml:lang': 'fr', '$': 'Aisance'},
                {'@xml:lang': 'fr', '$': 'Richesse nationale'},
                {'@xml:lang': 'fr', '$': 'Abondance'},
                {'@xml:lang': 'fr', '$': 'Répartition des richesses'},
                {'@xml:lang': 'fr', '$': 'Richesses'},
                {'@xml:lang': 'fr', '$': 'Grandes fortunes'},
                {'@xml:lang': 'fr', '$': 'Patrimoine national'},
                {'@xml:lang': 'fr', '$': 'Fortunes'},
                {'@xml:lang': 'fr', '$': 'Avoir'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85141930',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Value'},
            'altLabel': {'@xml:lang': 'en', '$': 'Standard of value'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX533024',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Valor (Economía)'},
            'label': {'@xml:lang': 'es', '$': 'Valor (Economía)'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Teoría del valor'},
             {'@xml:lang': 'es', '$': 'Valor económico'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12120720k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sensualité'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Volupté'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85120059',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Sensuality'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sensuousness'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'années'},
             {'@xml:lang': 'es', '$': 'años'},
             {'@xml:lang': 'en', '$': 'years'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD|http://ark.frantiq.fr/ark:/26678/pcrtpWT5t7kRx6',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|saber|ciencia|medida de tiempo|subdivisión del tiempo|años'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'découpage du temps'},
               {'@xml:lang': 'en', '$': 'division of time'},
               {'@xml:lang': 'es', '$': 'subdivisión del tiempo'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrtgEqPFxaYUJ|http://ark.frantiq.fr/ark:/26678/pcrt4ISdez8Lcg|http://ark.frantiq.fr/ark:/26678/pcrtlIkBAcyJVD'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12293950d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Vers'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Animaux vermiformes'},
             {'@xml:lang': 'fr', '$': 'Vermes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932138x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Invertébrés'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85148550',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Worms'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Vermes'},
             {'@xml:lang': 'en', '$': 'Vermiform animals'}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-106',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1970'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-106',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses|Années 1970'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Trente Glorieuses'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb125431484',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1970'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Années 70 (vingtième siècle)'},
             {'@xml:lang': 'fr', '$': 'Septante, Années (vingtième siècle)'},
             {'@xml:lang': 'en', '$': 'Seventies'},
             {'@xml:lang': 'fr',
              '$': 'Années soixante-dix (vingtième siècle)'},
             {'@xml:lang': 'fr',
              '$': 'Soixante-dix, Années (vingtième siècle)'},
             {'@xml:lang': 'fr', '$': '1970 (décennie)'},
             {'@xml:lang': 'fr', '$': 'Décennie 1970'},
             {'@xml:lang': 'fr', '$': 'Années septante (vingtième siècle)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940256v',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vingtième siècle'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'XXe siècle'},
               {'@xml:lang': 'fr', '$': '20e siècle'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh96005520',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Nineteen seventies'},
            'altLabel': [{'@xml:lang': 'en',
              '$': 'Seventies (Twentieth century decade)'},
             {'@xml:lang': 'en', '$': '1970s'},
             {'@xml:lang': 'en', '$': '70s (Twentieth century decade)'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb145491256',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Ventilation alvéolaire'},
            'altLabel': {'@xml:lang': 'fr', '$': 'VA'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'poder'},
             {'@xml:lang': 'fr', '$': 'pouvoir'},
             {'@xml:lang': 'en', '$': 'power'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'pouvoir (concept de)'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtkvcoSA0U1y'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Faculté de faire (Lar.). - Pour le pouvoir politique, exécutif, législatif se reporter à ces locutions.'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
              'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
               {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
               {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
               {'@xml:lang': 'fr', '$': 'philosophie thème'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/14919',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'point'},
             {'@xml:lang': 'es', '$': 'punto'},
             {'@xml:lang': 'fr', '$': 'point'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A position on a reference system determined by a survey.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6033',
              'prefLabel': [{'@xml:lang': 'en', '$': 'parameter'},
               {'@xml:lang': 'es', '$': 'parámetro'},
               {'@xml:lang': 'fr', '$': 'paramètre'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) A quantity in an equation which must be specified beside the independent variables to obtain the solution for the dependent variables.  2) A quantity which is constant under a given set of conditions, but may be different under other conditions.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119325083',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mode'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Tendance (mode)'},
             {'@xml:lang': 'fr', '$': 'Tendances vestimentaires'},
             {'@xml:lang': 'fr', '$': 'Mode vestimentaire'},
             {'@xml:lang': 'fr', '$': 'Styles vestimentaires'},
             {'@xml:lang': 'fr', '$': 'Art de la mode'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb131626720',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Arts décoratifs'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Arts mineurs'},
               {'@xml:lang': 'fr', '$': 'Art décoratif'},
               {'@xml:lang': 'fr', '$': 'Arts appliqués'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85047377',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fashion'},
            'altLabel': {'@xml:lang': 'en', '$': 'Style in dress'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX533545',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Moda'},
            'label': {'@xml:lang': 'es', '$': 'Moda'},
            'altLabel': {'@xml:lang': 'es', '$': 'Arte de vestir'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtQ29r25xDSh',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'fashion'},
             {'@xml:lang': 'es', '$': 'moda'},
             {'@xml:lang': 'fr', '$': 'mode'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'mode vestimentaire'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q|http://ark.frantiq.fr/ark:/26678/pcrtQ29r25xDSh',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|society|standards of behaviour|fashion'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Manière de se vêtir, propre à une époque ou à une région en fonction des tendances. (Wikipédia)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q',
              'prefLabel': [{'@xml:lang': 'es', '$': 'costumbres'},
               {'@xml:lang': 'fr', '$': 'moeurs'},
               {'@xml:lang': 'en', '$': 'standards of behaviour'}],
              'altLabel': {'@xml:lang': 'en', '$': 'mores'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtBQcn1ULu4q'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Habitudes, naturelles ou acquises, relatives à la pratique du bien ou du mal (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1345',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mode'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1697|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-559|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1345',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '061 Sociologie - population - loisirs|Psychosociologie|Comportement social|Mode'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-559',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Comportement social'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Marginalité'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1697|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-559'}}}},
           {'@count': '2',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1196',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Langage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
              'prefLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines'}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'langage'},
             {'@xml:lang': 'en', '$': 'language'},
             {'@xml:lang': 'es', '$': 'lenguaje'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtVvp1ATO4pe'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
              'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
               {'@xml:lang': 'en', '$': 'linguistics'},
               {'@xml:lang': 'fr', '$': 'linguistique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science du langage humain (Lar.)'}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
             {'@xml:lang': 'fr', '$': 'Langage et langues'},
             {'@xml:lang': 'fr', '$': 'Langues et langage'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Language'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Language (New words, slang, etc.)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11938328m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sein'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Seins'},
             {'@xml:lang': 'fr', '$': 'Mamma'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975382h',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Thorax'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Cage thoracique'}}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85016677',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Breast'},
            'altLabel': {'@xml:lang': 'en', '$': 'Breasts'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX529167',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Mamas'},
            'label': {'@xml:lang': 'es', '$': 'Mamas'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Glándulas mamarias'},
             {'@xml:lang': 'es', '$': 'Pechos'},
             {'@xml:lang': 'es', '$': 'Senos'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
             {'@xml:lang': 'es', '$': 'libro'},
             {'@xml:lang': 'fr', '$': 'livre'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
              'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
               {'@xml:lang': 'fr', '$': 'objet'},
               {'@xml:lang': 'es', '$': 'objeto'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
               {'@xml:lang': 'fr', '$': 'petit objet'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
               'expandedLabel': {'@xml:lang': 'en',
                '$': 'Themes|everyday life|goods and chattels|object'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/959',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
             {'@xml:lang': 'es', '$': 'libro'},
             {'@xml:lang': 'fr', '$': 'livre'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A collection of leaves of paper, parchment or other material, usually bound or fastened together within covers, containing writing of any type or blank pages for future inscription.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
              'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
               {'@xml:lang': 'es', '$': 'tipo de documento'},
               {'@xml:lang': 'fr', '$': 'type de document'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1392'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
             {'@xml:lang': 'fr', '$': 'Livre'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
                {'@xml:lang': 'fr', '$': 'Publications imprimées'},
                {'@xml:lang': 'fr', '$': 'Écrits publiés'},
                {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12301531v',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Documentation de bibliothèque'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Documents primaires'},
                {'@xml:lang': 'fr', '$': 'Documents de bibliothèques'},
                {'@xml:lang': 'fr', '$': 'Ressources documentaires'}]}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576243',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Libros'},
            'label': {'@xml:lang': 'es', '$': 'Libros'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85015738',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Books'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119475551',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Expérience'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Expérience (philosophie)'},
             {'@xml:lang': 'fr', '$': 'Expérience (psychologie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119408497',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Psychologie individuelle'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
               'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Homme, Philosophie de l'"},
                {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85046433',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Experience'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX526465',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Experiencia'},
            'label': {'@xml:lang': 'es', '$': 'Experiencia'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb15926224t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Sollicitude'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Égard'},
             {'@xml:lang': 'fr', '$': 'Soin (morale)'},
             {'@xml:lang': 'fr', '$': 'Prévenance'},
             {'@xml:lang': 'fr', '$': 'Attention (morale)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119518021',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Attitude (psychologie)'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Comportement (psychologie)'},
                {'@xml:lang': 'fr', '$': 'Opinion'},
                {'@xml:lang': 'fr', '$': 'Attitudes (psychologie)'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11978570s',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Altruisme'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Désintéressement'},
                {'@xml:lang': 'fr', '$': 'Allocentrisme'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85009391',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Attention'},
            'altLabel': {'@xml:lang': 'en',
             '$': 'Concentration (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12321516c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Respect'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Considération'},
             {'@xml:lang': 'fr', '$': 'Déférence'},
             {'@xml:lang': 'fr', '$': 'Égard'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937314p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Morale pratique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Morale privée'},
               {'@xml:lang': 'fr', '$': 'Morale individuelle'},
               {'@xml:lang': 'fr', '$': 'Morale personnelle'},
               {'@xml:lang': 'fr', '$': 'Morale de tous les jours'},
               {'@xml:lang': 'fr', '$': 'Morale quotidienne'},
               {'@xml:lang': 'fr', '$': 'Morale spéciale'},
               {'@xml:lang': 'fr', '$': 'Conduite de la vie (morale)'},
               {'@xml:lang': 'fr', '$': 'Moralité pratique'},
               {'@xml:lang': 'fr',
                '$': 'Éthique appliquée à la vie quotidienne'},
               {'@xml:lang': 'fr',
                '$': 'Morale appliquée à la vie quotidienne'},
               {'@xml:lang': 'fr', '$': 'Morale au quotidien'},
               {'@xml:lang': 'fr', '$': 'Morale de la vie quotidienne'},
               {'@xml:lang': 'fr', '$': 'Morale domestique'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113175',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Respect'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Esteem'},
             {'@xml:lang': 'en', '$': 'Deference'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11975868b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Expériences'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Expérimentation'},
             {'@xml:lang': 'fr', '$': 'Travaux pratiques'},
             {'@xml:lang': 'fr', '$': 'Manipulations (chimie)'},
             {'@xml:lang': 'fr', '$': 'Manipulations (physique)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh00005734',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Experiments'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'life'},
             {'@xml:lang': 'es', '$': 'vida'},
             {'@xml:lang': 'fr', '$': 'vie'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtmkxcYMqVKc'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hombre-universo'},
               {'@xml:lang': 'fr', '$': 'homme-univers'},
               {'@xml:lang': 'en', '$': 'man-universe'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'homme-monde-univers'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11933780m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Vie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Sens de la vie'},
             {'@xml:lang': 'fr', '$': 'Philosophie de la vie'},
             {'@xml:lang': 'fr', '$': 'Vie, Sens de la'},
             {'@xml:lang': 'fr', '$': 'Vie (philosophie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937892v',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Philosophie de la nature'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Nature, Philosophie de la'},
                {'@xml:lang': 'fr', '$': 'Nature (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Cosmologie rationnelle'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930911m',
               'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'homme"},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': "Homme, Philosophie de l'"},
                {'@xml:lang': 'fr', '$': 'Homme (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Anthropologie philosophique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85076807',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Life'},
            'altLabel': {'@xml:lang': 'en', '$': 'Life--Philosophy'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Morphologie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Forme'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Morphologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'mémoire/oubli'},
             {'@xml:lang': 'es', '$': 'memoria/olvido'},
             {'@xml:lang': 'en', '$': 'memory/oblivion'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'mémoire'},
             {'@xml:lang': 'fr', '$': 'oubli/mémoire'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz|http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hombre'},
               {'@xml:lang': 'fr', '$': 'homme'},
               {'@xml:lang': 'en', '$': 'man'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb131626782',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Oubli'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_36912'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85083497',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Memory'},
            'altLabel': {'@xml:lang': 'en', '$': 'Retention (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Psychologie|Mémoire'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Psychologie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119590947',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chant'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Art du chant'},
             {'@xml:lang': 'fr', '$': 'Art vocal'},
             {'@xml:lang': 'fr', '$': 'Art lyrique'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119387339',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Voix'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Phonation'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133183660',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Musique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres musicales'},
                {'@xml:lang': 'fr', '$': 'Art musical'},
                {'@xml:lang': 'fr', '$': 'Musique classique'},
                {'@xml:lang': 'fr', '$': 'Chants et musique'},
                {'@xml:lang': 'fr', '$': 'Musique savante'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85122827',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Singing'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Vocal culture'},
             {'@xml:lang': 'en', '$': 'Singing and voice culture'}]},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtHfc0ScaO1k',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'canto'},
             {'@xml:lang': 'fr', '$': 'chant'},
             {'@xml:lang': 'en', '$': 'singing'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtEnaO4jSDml|http://ark.frantiq.fr/ark:/26678/pcrtHfc0ScaO1k'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Poésie lyrique ou épique, destinée à être chantée (Rob.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEnaO4jSDml',
              'prefLabel': [{'@xml:lang': 'en', '$': 'music'},
               {'@xml:lang': 'es', '$': 'música'},
               {'@xml:lang': 'fr', '$': 'musique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtajHBJm1GSI|http://ark.frantiq.fr/ark:/26678/pcrtEnaO4jSDml'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965068x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Tonalité'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ton (musique)'},
             {'@xml:lang': 'fr', '$': 'Musique tonale'},
             {'@xml:lang': 'fr', '$': 'Système tonal'},
             {'@xml:lang': 'fr', '$': 'Tons (musique)'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940596x'}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX529119',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Tonalidad'},
            'label': {'@xml:lang': 'es', '$': 'Tonalidad'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85135965',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Tonality'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Musical key'},
             {'@xml:lang': 'en', '$': 'Key (Music theory)'},
             {'@xml:lang': 'en', '$': 'Keys (Music theory)'}]}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '1',
           '@uri': 'http://sws.geonames.org/3017382/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['France',
            {'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'es', '$': 'Francia'},
            {'@xml:lang': 'en', '$': 'France'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'France'},
            {'@xml:lang': 'fr', '$': 'République Française'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255148/|http://sws.geonames.org/3017382/',
            'expandedLabel': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|Francia'},
             {'@xml:lang': 'en', '$': 'Europe|France'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Europe|France'},
             {'@xml:lang': 'es', '$': 'Europa|France'},
             {'@xml:lang': 'en', '$': 'Europe|France'}]},
           'latitude': '46',
           'longitude': '2',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255148/',
             'prefLabel': ['Europe',
              {'@xml:lang': 'en', '$': 'Europe'},
              {'@xml:lang': 'es', '$': 'Europa'},
              {'@xml:lang': 'fr', '$': 'Europe'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Europe'},
             'latitude': '48.69096',
             'longitude': '9.14062'}},
           'exactMatch': []}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '2268/127406',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': 'De la Notation au Roman. Roland Barthes et la question du Journal'},
       'url': 'https://orbi.uliege.be/handle/2268/127406',
       'enrichedCreators': {'creator': {'@origin': 'Stienon, Valérie',
         '@normalizedAuthor': 'Stienon, Valérie',
         '@idAuthor': 'stienon_valerie',
         'firstname': 'Valérie',
         'lastname': 'Stienon',
         'title': [],
         'sameAs': {'idref': '164303367', 'idhal': 'valerie-stienon'}}},
       'date': {'@origin': '2006-06',
        '@startDate': '2006-01-01',
        '@endDate': '2006-12-31',
        '@treeDate': '2000/2000/2006',
        'normalizedDate': '2006-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2000'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2006'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '12010933',
         '$': 'https://orbi.uliege.be/handle/2268/127406'},
        'similar': 'info:hdl:2268/127406'},
       'subjects': {'subject': ['Roland Barthes',
         'Critique littéraire',
         'Autobiographie',
         'Journal personnel',
         'analyse du discours',
         {'@xml:lang': 'en', '$': 'Arts & humanities'},
         {'@xml:lang': 'en', '$': 'Literature'},
         {'@xml:lang': 'fr', '$': 'Arts & sciences humaines'},
         {'@xml:lang': 'fr', '$': 'Littérature'}]},
       'types': {'type': [{'@xml:lang': 'en', '$': 'master thesis'},
         'http://purl.org/coar/resource_type/c_bdcc',
         'info:eu-repo/semantics/masterThesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'ORBi : ULiège',
         '@handle': '10670/3.t43gyd',
         '@collectionUuid': '6762a587-4b8d-4d4e-bbee-aee84007f4c7',
         '$': 'ORBi : Université de Liège'},
        'collectionOrganization': {'@organizationUrl': 'https://www.uliege.be',
         '$': 'Université de Liège'},
        'collectionURLMainSite': {'@thumbnaiId': '12220718',
         '$': 'https://www.uliege.be'},
        'collectionInformations': {'collectionDescription': "Sur proposition du Recteur, le Conseil d'Administration de l'ULg décide en date du 23 mai 2007 la création de la digithèque ULg (document CA). La décision est confirmée à l'ensemble de la communauté ULg via le blog du recteur en date du 30 juin 2007. Le 29 juin 2007 puis le 28 septembre 2007, le Conseil d'Administration de la FUSAGx décide officiellement de s'associer au projet et définit une politique institutionnelle identique à celle de l'ULg. Enfin, novembre 2008 marque le lancement officiel d'ORBi. L'acronyme ORBi signifie Open Repository and Bibliography (répertoire et bibliographie institutionnels ouverts). Il forme aussi la locution latine orbi (pour le monde) et signe la volonté de l'Université de mettre d'avantage encore sa production scientifique à disposition de tous, sans contrainte financière ou technique.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'orbi@uliege.be'},
        'collectionParameters': {'collectionNamingAuthority': 'true',
         'collectionURIPermanentPattern': 'https://orbi.uliege.be/handle/(2268/.*)',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.t43gyd|10670/2.fh1mfp',
         '$': 'ORBi : Université de Liège#ORBi'},
        'sourceCode': {'@handle': '10670/2.fh1mfp',
         '$': 'dfa5d668-78d0-d1f0-70a1-d297fc980107'},
        'sourceName': {'@shortLabel': 'ORBi',
         '$': 'ORBi : Université de Liège'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '12220716',
         '$': 'https://orbi.uliege.be'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://orbi.uliege.be',
         '$': "Dès 2001, les bibliothèques universitaires belges francophones regroupées au sein de la BICfB (Bibliothèque Interuniversitaire de la Communauté française de Belgique) développaient leur première initiative de répertoire institutionnel Open Access : le projet BICTEL/e. Ce projet avait pour but de rassembler dans un répertoire commun et de rendre librement accessible en ligne, en texte intégral, un maximum de thèses des neuf universités de la Communauté française de Belgique. A l'Université de Liège, le Conseil d'Administration décidait en juillet 2006 d'imposer à partir du 1er octobre 2006 à tous les doctorants de l'Université de Liège le dépôt de leur thèse, en tout ou en partie, sur le répertoire BICTEL/e de l'Université de Liège, suivi en juin 2007 par le Conseil d'Administration de la Faculté universitaire des Sciences agronomiques de Gembloux (FUSAGx), notre partenaire d'Académie. En octobre 2009, plus de 330 thèses avaient déjà été déposées dans les répertoires BICTEL/e-ULg et BICTEL/e-FUSAGx. En décembre 2004, en BICfB, les bibliothèques décidaient d'aller un pas plus loin et d'étudier la possibilité d'organiser, au niveau des académies universitaires, des dépôts institutionnels élargis à tous les types de publication. La phase pilote de cette étude démarre pour l'Académie Wallonie-Europe en janvier 2005, grâce en partie à un budget affecté par la BICfB. Depuis lors, celle-ci soutient ces efforts en la matière en inscrivant chaque année à son budget des moyens permettant d'aider les Académies à mettre en place leur serveur institutionnel."},
        'sourceOrganization': {'label': 'Université de Liège',
         'URI': 'https://www.uliege.be',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://preprod.orbi.ulg.ac.be/oai/request',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119760284',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Notation'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Symboles'},
            {'@xml:lang': 'fr', '$': 'Graphismes'},
            {'@xml:lang': 'fr', '$': 'Symboles graphiques'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001966',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Notation'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
            {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
            {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
            {'@xml:lang': 'fr', '$': 'Récits'},
            {'@xml:lang': 'fr', '$': 'Romans'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
              {'@xml:lang': 'fr', '$': 'Littérature universelle'},
              {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
            {'@xml:lang': 'en', '$': 'Novels'},
            {'@xml:lang': 'en', '$': 'Stories'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art roman'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Roman'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-243',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "050 Histoire de l'art|Histoire de l'art|Art roman"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
             'prefLabel': {'@xml:lang': 'fr', '$': "Histoire de l'art"},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2140|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1057',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': "050 Histoire de l'art|Histoire de l'art"}}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'novel'},
            {'@xml:lang': 'es', '$': 'novela'},
            {'@xml:lang': 'fr', '$': 'roman'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrt7mBKKg4wNT'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Récit où dominent les aventures (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
             'prefLabel': [{'@xml:lang': 'es', '$': 'género narrativo'},
              {'@xml:lang': 'fr', '$': 'genre narratif'},
              {'@xml:lang': 'en', '$': 'narrative genre'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'narration'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361722',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique littéraire'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16675880c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie littéraire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vie culturelle'},
               {'@xml:lang': 'fr', '$': 'Gens de lettres'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526725',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'label': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis literario'},
            {'@xml:lang': 'es', '$': 'Crítica de la literatura'},
            {'@xml:lang': 'es', '$': 'Literatura--Crítica'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4852',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature evaluation'},
            {'@xml:lang': 'es', '$': 'evaluación de documentación'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
             'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica literaria'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'},
            {'@xml:lang': 'en', '$': 'literary criticism'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'critique de texte'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119600630',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Autobiographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Écrits autobiographiques'},
            {'@xml:lang': 'fr', '$': 'Littérature autobiographique'},
            {'@xml:lang': 'fr', '$': 'Récits autobiographiques'},
            {'@xml:lang': 'fr', '$': 'Autobiographies'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935764v',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Biographies'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Biographies collectives'},
               {'@xml:lang': 'fr', '$': 'Notices biographiques'},
               {'@xml:lang': 'fr', '$': 'Histoires de vie (biographies)'},
               {'@xml:lang': 'fr', '$': 'Biographie'},
               {'@xml:lang': 'fr', '$': 'Récits de vie'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85010049',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Autobiographies'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-373',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Biographie'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Autobiographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-373',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '062 Information - communication|Information|Documentation|Biographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Documentation'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2146|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1112|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-712'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuQml85yvI7',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'autobiografía'},
            {'@xml:lang': 'fr', '$': 'autobiographie'},
            {'@xml:lang': 'en', '$': 'autobiography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci|http://ark.frantiq.fr/ark:/26678/pcrtuQml85yvI7',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philologie|littérature|genre littéraire|genre narratif|biographie|autobiographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci',
             'prefLabel': [{'@xml:lang': 'es', '$': 'biografía'},
              {'@xml:lang': 'fr', '$': 'biographie'},
              {'@xml:lang': 'en', '$': 'biography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtpHILfpPQc7|http://ark.frantiq.fr/ark:/26678/pcrtSjyvzecGci'},
             'definition': {'@xml:lang': 'fr',
              '$': "Récit relatant la vie d'une personne (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119757771',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Personnel'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Effectifs'},
            {'@xml:lang': 'fr', '$': 'Personnels'},
            {'@xml:lang': 'fr', '$': 'Personnel salarié'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-805'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00002753',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Employees'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Relations with employees'},
            {'@xml:lang': 'en', '$': 'Servants'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
            {'@xml:lang': 'fr', '$': 'analyse du discours'},
            {'@xml:lang': 'en', '$': 'discourse analysis'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV',
             'prefLabel': [{'@xml:lang': 'es', '$': 'gramática'},
              {'@xml:lang': 'fr', '$': 'grammaire'},
              {'@xml:lang': 'en', '$': 'grammar'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science des règles du langage (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11930887k',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse du discours'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Linguistique du discours'},
            {'@xml:lang': 'fr', '$': 'Texte, Analyse de'},
            {'@xml:lang': 'fr', '$': 'Analyse textuelle'},
            {'@xml:lang': 'fr', '$': 'Discours, Analyse du'},
            {'@xml:lang': 'fr', '$': 'Analyse de texte'},
            {'@xml:lang': 'fr', '$': 'Discours (linguistique)'},
            {'@xml:lang': 'fr', '$': 'Texte, Linguistique du'},
            {'@xml:lang': 'fr', '$': 'Linguistique textuelle'},
            {'@xml:lang': 'fr', '$': "Analyse d'énoncé"},
            {'@xml:lang': 'fr', '$': 'Analyse de discours'},
            {'@xml:lang': 'fr', '$': 'Linguistique discursive'},
            {'@xml:lang': 'fr', '$': 'Linguistique du texte'},
            {'@xml:lang': 'fr', '$': 'Discours, Linguistique du'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932194d',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Linguistique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Science du langage'},
              {'@xml:lang': 'fr', '$': 'Théorie linguistique'},
              {'@xml:lang': 'fr', '$': 'Sciences du langage'},
              {'@xml:lang': 'fr', '$': 'Théories linguistiques'},
              {'@xml:lang': 'fr', '$': 'Langage, Science du'}]}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527689',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Análisis del discurso'},
           'label': {'@xml:lang': 'es', '$': 'Análisis del discurso'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis del texto'},
            {'@xml:lang': 'es', '$': 'Análisis textual'},
            {'@xml:lang': 'es', '$': 'Discurso, Análisis del'},
            {'@xml:lang': 'es', '$': 'Gramática del discurso'},
            {'@xml:lang': 'es', '$': 'Gramática textual'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'fr', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Arts'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc'},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble des oeuvres artistiques d'un pays, d'une époque (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/568',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'},
            {'@xml:lang': 'fr', '$': 'art'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The creation of works of beauty or other special significance.'}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11935712m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Arts'},
           'altLabel': {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11931827z',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Culture'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Vie culturelle'}}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85008324',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Arts'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Arts, Occidental'},
            {'@xml:lang': 'en', '$': 'Arts, Western'},
            {'@xml:lang': 'en', '$': 'Fine arts'},
            {'@xml:lang': 'en', '$': 'Arts, Fine'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
            {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
            {'@xml:lang': 'fr', '$': 'Sciences morales'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933226f',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Savoir et érudition'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Savoirs'},
              {'@xml:lang': 'fr', '$': 'Connaissances'},
              {'@xml:lang': 'fr', '$': 'Érudition'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1005'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85062913',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Humanities'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
            {'@xml:lang': 'es', '$': 'humanidades'},
            {'@xml:lang': 'fr', '$': 'sciences humaines'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7472',
             'prefLabel': [{'@xml:lang': 'en', '$': 'science'},
              {'@xml:lang': 'es', '$': 'ciencia'},
              {'@xml:lang': 'fr', '$': 'science'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The study of the physical universe and its contents by means of reproducible observations, measurements, and experiments to establish, verify, or modify general laws to explain its nature and behaviour.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'ciencias humanas'},
            {'@xml:lang': 'fr', '$': 'sciences humaines'},
            {'@xml:lang': 'en', '$': 'social sciences'}],
           'altLabel': [{'@xml:lang': 'en', '$': 'human sciences'},
            {'@xml:lang': 'fr', '$': "science de l'homme"}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtB87XLJs3pM'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'méthodologie'},
              {'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH'},
             'definition': {'@xml:lang': 'fr',
              '$': "Toutes les méthodes d'approches de l'Antiquité ainsi que l'organisation de la recherche (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
            {'@xml:lang': 'fr', '$': 'Littérature universelle'},
            {'@xml:lang': 'fr', '$': 'Belles-lettres'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-360'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077507',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature'},
           'altLabel': [{'@xml:lang': 'en', '$': 'World literature'},
            {'@xml:lang': 'en', '$': 'Western literature (Western countries)'},
            {'@xml:lang': 'en', '$': 'Belles-lettres'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1912',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural heritage'},
              {'@xml:lang': 'es', '$': 'patrimonio cultural'},
              {'@xml:lang': 'fr', '$': 'patrimoine culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The inherited body of beliefs, customs, artistic activity and knowledge that has been transmitted by ancestors.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_330835'},
            {'@uri': 'http://eurovoc.europa.eu/1680'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
            {'@xml:lang': 'en', '$': 'literature'},
            {'@xml:lang': 'fr', '$': 'littérature'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ens. des productions littéraires (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filología'},
              {'@xml:lang': 'fr', '$': 'philologie'},
              {'@xml:lang': 'en', '$': 'philology'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML'},
             'definition': {'@xml:lang': 'fr',
              '$': "Etude d'une langue d'après les documents écrits qui nous la font connaître (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1210',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Littérature'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr'}},
     {'@uri': '10670/1.knr3ib',
      'isidore': {'title': "Etude sur la méthode d'analyse du récit de Roland Barthes",
       'url': 'https://escholarship.mcgill.ca/concern/theses/rr171z18r',
       'enrichedCreators': {'creator': {'@origin': 'Vidal, Bernard.',
         '@normalizedAuthor': 'Vidal, Bernard.',
         '@idAuthor': 'vidal_bernard',
         'firstname': 'Bernard.',
         'lastname': 'Vidal',
         'title': [],
         'sameAs': {'orcid': '0000-0001-8505-9092'}}},
       'date': {'@origin': '1983',
        '@startDate': '1983-01-01',
        '@endDate': '1983-12-31',
        '@treeDate': '1900/1980/1983',
        'normalizedDate': '1983-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '1900'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '1980'},
        'years': {'@start': '1950', '@end': '2030', 'year': '1983'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '21813352',
         '$': 'https://escholarship.mcgill.ca/concern/theses/rr171z18r'}},
       'subjects': {'subject': ['Barthes, Roland. S/Z.',
         'Semiotics and literature.',
         'Criticism, Textual.']},
       'relations': {'relation': ['Proquest: AAIML27370', 'Pid: 64725']},
       'types': {'type': 'Thesis'},
       'source_info': {'collectionLabel': {'@shortLabel': 'eScholarship McGill',
         '@handle': '10670/3.ihy5vc',
         '@collectionUuid': '5df0adf5-0a82-bf62-5d89-2b9021cbd38b',
         '$': 'eScholarship McGill'},
        'collectionOrganization': {'@organizationUrl': 'https://www.mcgill.ca',
         '$': 'McGill University'},
        'collectionURLMainSite': {'@thumbnaiId': '21159251',
         '$': 'https://www.mcgill.ca/library/find/escholarship'},
        'collectionInformations': {'collectionDescription': 'eScholarship McGill is a digital repository which stores and showcases the publications and theses of McGill University faculty, researchers, and students. The repository exists in an online, open-access environment, making it easy for researchers all over the world to find and access the University’s published research output.',
         'collectionCountry': 'CA',
         'collectionContactEmailAddress': 'elizabeth.thomson@mcgill.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.ihy5vc|10670/2.5vz7k0',
         '$': 'eScholarship McGill#eScholarship@McGill'},
        'sourceCode': {'@handle': '10670/2.5vz7k0',
         '$': 'ac551bf1-04ce-3a93-365a-77eb414c03e5'},
        'sourceName': {'@shortLabel': 'eScholarship@McGill',
         '$': 'eScholarship@McGill: Discover theses, dissertations, articles, and more'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '21752663',
         '$': 'https://escholarship.mcgill.ca'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': {'@seeAlsoURL': 'https://escholarship.mcgill.ca',
         '$': 'eScholarship@McGill is a digital repository, which collects, preserves, and showcases the publications, scholarly works, and theses of McGill University faculty members, researchers, and students.'},
        'sourceOrganization': {'label': 'McGill Library',
         'URI': 'https://www.mcgill.ca/library',
         'isoCountry': 'CA',
         'contactEmailAddress': 'dev.library@mcgill.ca'},
        'sourceParameters': {'baseUrl': 'https://escholarship.mcgill.ca/catalog/oai',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG'}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11976246m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Méthode'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13088',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'method'},
            {'@xml:lang': 'es', '$': 'método'},
            {'@xml:lang': 'fr', '$': 'méthode'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A way of proceeding or doing something, especially a systematic or regular one.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5203',
             'prefLabel': [{'@xml:lang': 'en', '$': 'methodology'},
              {'@xml:lang': 'es', '$': 'metodología'},
              {'@xml:lang': 'fr', '$': 'méthodologie'}],
             'definition': {'@xml:lang': 'en',
              '$': 'The system of methods and principles used in a particular discipline.'}}},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4788'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11966797p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Analyse du discours narratif'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Narrativité'},
            {'@xml:lang': 'fr', '$': 'Grammaire narrative'},
            {'@xml:lang': 'fr', '$': 'Discours du récit'},
            {'@xml:lang': 'fr', '$': 'Analyse du récit'},
            {'@xml:lang': 'fr', '$': 'Narratologie'},
            {'@xml:lang': 'fr', '$': 'Texte narratif'},
            {'@xml:lang': 'fr', '$': 'Critique narrative'},
            {'@xml:lang': 'fr', '$': 'Analyse structurale du récit'},
            {'@xml:lang': 'fr', '$': 'Narratologie critique'},
            {'@xml:lang': 'fr', '$': 'Grammaire du récit'},
            {'@xml:lang': 'fr', '$': 'Discours narratif'},
            {'@xml:lang': 'fr', '$': 'Critique de la narration'},
            {'@xml:lang': 'fr', '$': 'Critique narratologique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937212q',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Narration'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Narratologie'},
              {'@xml:lang': 'fr', '$': 'Récit'},
              {'@xml:lang': 'fr', '$': 'Narrativité'},
              {'@xml:lang': 'fr', '$': 'Techniques narratives'},
              {'@xml:lang': 'fr', '$': 'Narrateur'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005442',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism, Narrative'},
           'altLabel': {'@xml:lang': 'en', '$': 'Narrative criticism'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX553493',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es',
            '$': 'Análisis del discurso narrativo'},
           'label': {'@xml:lang': 'es',
            '$': 'Análisis del discurso narrativo'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis del relato'},
            {'@xml:lang': 'es', '$': 'Análisis estructural del relato'},
            {'@xml:lang': 'es', '$': 'Gramática narrativa'},
            {'@xml:lang': 'es', '$': 'Narratología'}]}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'http://id.loc.gov/vocabulary/iso639-2/fre',
       'dc:rights': 'All items in eScholarship@McGill are protected by copyright with all rights reserved unless otherwise indicated.'}},
     {'@uri': '10670/1.a6hrn4',
      'isidore': {'title': 'Relire la scène maternelle : Deuil et photographie chez Roland Barthes et Hervé Guibert',
       'url': 'http://hdl.handle.net/1866/18241',
       'enrichedCreators': {'creator': {'@origin': 'Najm, Daoud',
         '@normalizedAuthor': 'Najm, Daoud',
         '@idAuthor': 'najm_daoud',
         'firstname': 'Daoud',
         'lastname': 'Najm',
         'title': [],
         'sameAs': {'idref': '232655391'}}},
       'date': {'@origin': '2017-03-15T01:57:25Z',
        '@startDate': '2017-03-15',
        '@endDate': '2017-03-15',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-03-15',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '9946990',
         '$': 'http://hdl.handle.net/1866/18241'}},
       'subjects': {'subject': ['Roland Barthes',
         'Hervé Guilbert',
         'Deuil',
         'Mourning',
         'Photographie',
         'Photography',
         'Psychanalyse',
         'Psychoanalysis',
         'Scène maternelle',
         'Maternal scene']},
       'types': {'type': 'Thèse ou mémoire / Thesis or Dissertation'},
       'source_info': {'collectionLabel': {'@shortLabel': 'Bib. UdeM',
         '@handle': '10670/3.5o3050',
         '@collectionUuid': 'af157bb7-10f7-419d-b734-710816080fc2',
         '$': "Bibliothèques numériques de l'Université de Montréal"},
        'collectionOrganization': {'@organizationUrl': 'http://www.bib.umontreal.ca',
         '$': 'Université de Montréal'},
        'collectionURLMainSite': {'@thumbnaiId': '1884210',
         '$': 'http://www.bib.umontreal.ca'},
        'collectionInformations': {'collectionDescription': "Papyrus et Calypso sont des dépôts de données proposés par les bibliothèques de l'Université de Montréal. Vous trouverez ici différentes formes de travaux de recherche et d'enseignement (pré-publications, articles, rapports techniques, présentations, ensembles de données, etc.) produites par les professeurs et chercheurs de notre institution. Calypso vous fait découvrir une sélection d'objets numériques provenant des collections de la Direction des bibliothèques de l'Université de Montréal.",
         'collectionCountry': 'FR',
         'collectionContactEmailAddress': 'depot@bib.umontreal.ca'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.5o3050|10670/2.6mz01q',
         '$': "Bibliothèques numériques de l'Université de Montréal#Thèses et mémoires de l'UdeM"},
        'sourceCode': {'@handle': '10670/2.6mz01q',
         '$': '846d5562-7f37-4140-b86e-b4e1e3e64c95'},
        'sourceName': {'@shortLabel': "Thèses et mémoires de l'UdeM",
         '$': "Thèses et mémoires de l'UdeM"},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '6849293',
         '$': 'http://hdl.handle.net/1866/2620'},
        'sourceScope': {'@uri': 'http://www.rechercheisidore.fr/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://hdl.handle.net/1866/2620',
         '$': "Source regroupant les thèses et mémoires (y compris les thèses électroniques) de l'Université de Montréal."},
        'sourceOrganization': {'label': "Bibliothèque de l'Université de Montréal",
         'URI': 'http://www.bib.umontreal.ca',
         'isoCountry': 'FR',
         'contactEmailAddress': 'depot@bib.umontreal.ca'},
        'sourceParameters': {'baseUrl': 'http://papyrus.bib.umontreal.ca/oai/request',
         'crawlingFrequency': '3600',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'ISO8601'}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUomA7N7mHk',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'escena'},
            {'@xml:lang': 'en', '$': 'scene'},
            {'@xml:lang': 'fr', '$': 'scène'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'scénographie'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr|http://ark.frantiq.fr/ark:/26678/pcrtUomA7N7mHk'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Composition représentée dans un art (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr',
             'prefLabel': [{'@xml:lang': 'es', '$': 'iconografía'},
              {'@xml:lang': 'fr', '$': 'iconographie'},
              {'@xml:lang': 'en', '$': 'iconography'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtb4M5pvMjvr'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Etude descriptive des différentes représentations figurées (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13162689q',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Théâtre'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Art théâtral'},
            {'@xml:lang': 'fr', '$': 'Théâtre (arts du spectacle)'},
            {'@xml:lang': 'fr', '$': 'Art du théâtre'},
            {'@xml:lang': 'fr', '$': 'Scène'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933908f',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts du spectacle'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Arts de la scène'},
              {'@xml:lang': 'fr', '$': 'Spectacle vivant'},
              {'@xml:lang': 'fr', '$': 'Arts du spectacle vivant'},
              {'@xml:lang': 'fr', '$': "Arts d'interprétation"}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX524524',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Teatro'},
           'label': {'@xml:lang': 'es', '$': 'Teatro'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Representaciones teatrales'},
            {'@xml:lang': 'es', '$': 'Teatro--Representaciones'}]},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85134522',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Theater'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Stage'},
            {'@xml:lang': 'en', '$': 'Dramatics'},
            {'@xml:lang': 'en', '$': 'Histrionics'},
            {'@xml:lang': 'en', '$': 'Theatre'},
            {'@xml:lang': 'en', '$': 'Professional theater'}]},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-764',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'École maternelle'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Maternelle'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-757|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-764'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-757',
             'prefLabel': {'@xml:lang': 'fr', '$': 'École'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2129|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2028|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-880|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-342|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-757'}}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'deuil'},
            {'@xml:lang': 'es', '$': 'duelo'},
            {'@xml:lang': 'en', '$': 'mourning'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh|http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Temps pendant lequel on porte les signes extérieurs liés à la mort d’un proche et consacré par l’usage. (Lar.) et/ou Douleur, affliction, éprouvée à la suite du décès de quelqu’un, état de celui qui l’éprouve. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh',
             'prefLabel': [{'@xml:lang': 'en', '$': 'death (concept)'},
              {'@xml:lang': 'fr', '$': 'mort (concept)'},
              {'@xml:lang': 'es', '$': 'muerte (concepto)'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mort concept'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Idée générale et abstraite que se fait l’esprit humain de la mort, et qui lui permet d’y rattacher les diverses perceptions qu’il en a. (Lar.)'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965570v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Deuil'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932531m'}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX548894',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Duelo'},
           'label': {'@xml:lang': 'es', '$': 'Duelo'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Duelo--Aspectos psicológicos'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85013296',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bereavement'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Loss of loved ones by death'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'fotografía'},
            {'@xml:lang': 'fr', '$': 'photographie'},
            {'@xml:lang': 'en', '$': 'photography'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU|http://ark.frantiq.fr/ark:/26678/pcrtDnXil6KFZm',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion|photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'enregistrement-diffusion'},
              {'@xml:lang': 'es', '$': 'grabación - difusión'},
              {'@xml:lang': 'en', '$': 'record-diffusion'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtJ9V4pxnZoU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|enregistrement-diffusion'}}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933113t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Technique photographique'},
            {'@xml:lang': 'fr', '$': 'Art photographique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
              {'@xml:lang': 'fr', '$': 'Arts plastiques'},
              {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
              {'@xml:lang': 'fr', '$': 'Arts visuels'}]}}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX4683393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'label': {'@xml:lang': 'es', '$': 'Fotografía--Técnica'},
           'altLabel': {'@xml:lang': 'es', '$': 'Técnica fotográfica'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85101206',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Photography'}},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13123',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'photography'},
            {'@xml:lang': 'es', '$': 'fotografiar'},
            {'@xml:lang': 'fr', '$': 'photographie'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The process of forming visible images directly or indirectly by the action of light or other forms of radiation on sensitive surfaces.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4257',
             'prefLabel': [{'@xml:lang': 'en', '$': 'industrial process'},
              {'@xml:lang': 'es', '$': 'procesos industriales'},
              {'@xml:lang': 'fr', '$': 'processus industriel'}]}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_5808'},
            {'@uri': 'http://eurovoc.europa.eu/4096'}]},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Photographie'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1531',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '052 Disciplines et techniques artistiques|Photographie'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142',
             'prefLabel': {'@xml:lang': 'fr',
              '$': '052 Disciplines et techniques artistiques'}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#GUILBERT',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Guilbert'},
           'expanded': {'@uri': 'http://GeoEthno#OCEANIE|http://GeoEthno#MELANESIE|http://GeoEthno#PAPOUASIE-NOUVELLE-GUINEE|http://GeoEthno#REGION_MOMASE|http://GeoEthno#PROVINCE_DU_SEPIK_ORIENTAL|http://GeoEthno#DISTRICT_DE_WEWAK|http://GeoEthno#GUILBERT',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Océanie|Mélanésie|Papouasie-Nouvelle-Guinée|Région Momase|Province du Sepik Oriental|District de Wewak|Guilbert'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#DISTRICT_DE_WEWAK',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'District de Wewak'},
              {'@xml:lang': 'en', '$': 'Wewak District'}],
             'expanded': {'@uri': 'http://GeoEthno#OCEANIE|http://GeoEthno#MELANESIE|http://GeoEthno#PAPOUASIE-NOUVELLE-GUINEE|http://GeoEthno#REGION_MOMASE|http://GeoEthno#PROVINCE_DU_SEPIK_ORIENTAL|http://GeoEthno#DISTRICT_DE_WEWAK'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932657k',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Psychanalyse'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Freudisme'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
              {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
              {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85108411',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Psychoanalysis'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4659788',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Psicoanálisis'},
           'label': {'@xml:lang': 'es', '$': 'Psicoanálisis'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Psicología dinámica'},
            {'@xml:lang': 'es', '$': 'Psicología profunda'},
            {'@xml:lang': 'es', '$': 'Sicoanálisis'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1693',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Psychanalyse'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Inconscient'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1693',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Psychanalyse'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRLT4fLa8SG',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'psychanalyse'},
            {'@xml:lang': 'en', '$': 'psychoanalysis'},
            {'@xml:lang': 'es', '$': 'sicoanálisis'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1|http://ark.frantiq.fr/ark:/26678/pcrtRLT4fLa8SG'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1',
             'prefLabel': [{'@xml:lang': 'en', '$': 'medecine'},
              {'@xml:lang': 'fr', '$': 'médecine'},
              {'@xml:lang': 'es', '$': 'medicina'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt9Ps79U3TkQ|http://ark.frantiq.fr/ark:/26678/pcrtARiDUn3jr1'}}}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'FR'}},
     {'@uri': '10670/1.byo6ly',
      'isidore': {'title': {'@xml:lang': 'fr',
        '$': "L'écriture du deuil chez Roland Barthes : une étude de <i>La Chambre claire</i> et du <i>Journal de deuil</i>"},
       'url': 'https://dumas.ccsd.cnrs.fr/dumas-00835439',
       'enrichedCreators': {'creator': {'@origin': 'Fusaro, Anaïs',
         '@normalizedAuthor': 'Fusaro, Anaïs',
         '@idAuthor': 'fusaro_anais',
         'firstname': 'Anaïs',
         'lastname': 'Fusaro',
         'title': [],
         'sameAs': {'orcid': '0000-0001-6865-2978'}}},
       'date': {'@origin': '2011-09-27',
        '@startDate': '2011-09-27',
        '@endDate': '2011-09-27',
        '@treeDate': '2000/2010/2011',
        'normalizedDate': '2011-09-27',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2011'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00835439'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15169124',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00835439/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://dumas.ccsd.cnrs.fr/dumas-00835439/file/FUSARO_Anais_M2_RECH_2011_DUM.pdf'}],
        'similar': 'dumas-00835439'},
       'subjects': {'subject': [{'@xml:lang': 'fr', '$': 'Roland Barthes'},
         {'@xml:lang': 'fr', '$': 'La Chambre claire'},
         {'@xml:lang': 'fr', '$': 'Le Journal de deuil'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': ['Le mémoire a été corrigé après soutenance.',
        {'@xml:lang': 'fr',
         '$': 'L\'étude qui va suivre portera sur l\'écriture du deuil au sein de deux écrits de Roland Barthes, le <i>Journal de deuil</i> et <i>La Chambre claire</i> ; son développement se déroulera en trois temps. Ils auront pour but de montrer l\'accomplissement d\'un livre à l\'autre dans le deuil : à travers un écrit personnel et un autre public. L\'analyse commentera d\'abord les symptômes du deuil perceptible à la fois par Roland Barthes lui-même et par le lecteur de ses œuvres. Cette approche pragmatique proposera une réponse à la question "est-il possible de faire son deuil ?" que semble poser le <i>Journal</i>. L\'écriture des textes du corpus est portée par de nombreuses tentatives de faire son deuil. La constance du deuil qui en assure également sa permanence pousse le sujet à vouloir offrir l\'immortalité à sa mère, à rechercher à inscrire sa mémoire dans l\'histoire. Nous verrons ainsi que l\'écrivain, face à l\'échec de l\'accomplissement du deuil, déplace son problème en désirant construire un monument, c\'est-à-dire un objet foncièrement public et collectif. Cela implique ainsi l\'établissement d\'une poétique qui privilégie l\'art de l\'interstice : mais Barthes, qui ne s\'exprime qu\'indirectement, en se plaçant toujours les nuances du "presque", procède par fragmentation. Cela constituera l\'étude de notre dernier chapitre.'}],
       'types': {'type': ['info:eu-repo/semantics/masterThesis',
         'Master thesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.czoe88',
         '$': 'Archives ouvertes#DUMAS'},
        'sourceCode': {'@handle': '10670/2.czoe88',
         '$': '75d98e3b-b174-4fa2-8dab-d65eb895e16a'},
        'sourceName': {'@shortLabel': 'DUMAS',
         '$': 'Dépôt Universitaire de Mémoires Après Soutenance'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '631374',
         '$': 'http://dumas.ccsd.cnrs.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "DUMAS (Dépôt Universitaire de Mémoires Après Soutenance) est une base d'archives ouvertes de travaux d'étudiants de niveaux bac+4 et bac+5, validés par un jury, dans toutes les disciplines. La base DUMAS est hébergée par HAL.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'https://api.archives-ouvertes.fr/oai/dumas',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '3',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Graphisme'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Calligraphie'},
            {'@xml:lang': 'fr', '$': 'Écriture'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1019'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts graphiques'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2142|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-255',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '052 Disciplines et techniques artistiques|Arts graphiques'}}}}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écriture'},
            {'@xml:lang': 'es', '$': 'escritura'},
            {'@xml:lang': 'en', '$': 'writing'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtPv7Tb8cF80'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Système de signes graphiques servant à noter un message oral afin de pouvoir le conserver et/ou de le transmettre (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii',
             'prefLabel': [{'@xml:lang': 'es', '$': 'lingüística'},
              {'@xml:lang': 'en', '$': 'linguistics'},
              {'@xml:lang': 'fr', '$': 'linguistique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science du langage humain (Lar.)'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936326f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écriture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Graphèmes'},
            {'@xml:lang': 'fr', '$': "Systèmes d'écriture"},
            {'@xml:lang': 'fr', '$': 'Écriture manuelle'},
            {'@xml:lang': 'fr', '$': 'Graphémique'},
            {'@xml:lang': 'fr', '$': 'Graphie'},
            {'@xml:lang': 'fr', '$': 'Langue écrite'},
            {'@xml:lang': 'fr', '$': 'Écriture (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Langage écrit (système graphique)'},
            {'@xml:lang': 'fr', '$': 'Signes graphiques'},
            {'@xml:lang': 'fr', '$': 'Écritures (langage)'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938684x',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Signes et symboles'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Signes'},
               {'@xml:lang': 'fr', '$': 'Figures symboliques'},
               {'@xml:lang': 'fr', '$': 'Symboles'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006490',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Writing'}},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX524426',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritura'},
           'label': {'@xml:lang': 'es', '$': 'Escritura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Escritura manual'},
            {'@xml:lang': 'es', '$': 'Lenguaje escrito'},
            {'@xml:lang': 'es', '$': 'Sistemas de escritura'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006367',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Graphemics'}},
          {'@count': '9',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'deuil'},
            {'@xml:lang': 'es', '$': 'duelo'},
            {'@xml:lang': 'en', '$': 'mourning'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh|http://ark.frantiq.fr/ark:/26678/pcrtd9mOIWdQ57'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Temps pendant lequel on porte les signes extérieurs liés à la mort d’un proche et consacré par l’usage. (Lar.) et/ou Douleur, affliction, éprouvée à la suite du décès de quelqu’un, état de celui qui l’éprouve. (Lar.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh',
             'prefLabel': [{'@xml:lang': 'en', '$': 'death (concept)'},
              {'@xml:lang': 'fr', '$': 'mort (concept)'},
              {'@xml:lang': 'es', '$': 'muerte (concepto)'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'mort concept'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtNb90Egda4H|http://ark.frantiq.fr/ark:/26678/pcrtmp4yojZGZh'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Idée générale et abstraite que se fait l’esprit humain de la mort, et qui lui permet d’y rattacher les diverses perceptions qu’il en a. (Lar.)'}}}},
          {'@count': '9',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11965570v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Deuil'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932531m'}}},
          {'@count': '9',
           '@uri': 'http://datos.bne.es/resource/XX548894',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Duelo'},
           'label': {'@xml:lang': 'es', '$': 'Duelo'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Duelo--Aspectos psicológicos'}},
          {'@count': '9',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85013296',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Bereavement'},
           'altLabel': {'@xml:lang': 'en',
            '$': 'Loss of loved ones by death'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'mémoire/oubli'},
            {'@xml:lang': 'es', '$': 'memoria/olvido'},
            {'@xml:lang': 'en', '$': 'memory/oblivion'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'mémoire'},
            {'@xml:lang': 'fr', '$': 'oubli/mémoire'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz|http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'hombre'},
              {'@xml:lang': 'fr', '$': 'homme'},
              {'@xml:lang': 'en', '$': 'man'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb131626782',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Oubli'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_36912'}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85083497',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Memory'},
           'altLabel': {'@xml:lang': 'en', '$': 'Retention (Psychology)'}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Psychologie|Mémoire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '060 Sciences humaines|Psychologie'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb145491256',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Ventilation alvéolaire'},
           'altLabel': {'@xml:lang': 'fr', '$': 'VA'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11938328m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Sein'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Seins'},
            {'@xml:lang': 'fr', '$': 'Mamma'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975382h',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Thorax'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Cage thoracique'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85016677',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Breast'},
           'altLabel': {'@xml:lang': 'en', '$': 'Breasts'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX529167',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Mamas'},
           'label': {'@xml:lang': 'es', '$': 'Mamas'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Glándulas mamarias'},
            {'@xml:lang': 'es', '$': 'Pechos'},
            {'@xml:lang': 'es', '$': 'Senos'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12043913t',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Développement'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005534',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Development'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Philosophie|Temps'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
              {'@xml:lang': 'fr', '$': 'Logique philosophique'},
              {'@xml:lang': 'fr', '$': 'Morale'}]}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133189074',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119780754',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Astronomie sphérique'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Astronomie pratique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946909q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Longitude'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Degrés de longitude'}}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX524393',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Tiempo'},
           'label': {'@xml:lang': 'es', '$': 'Tiempo'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Duración'},
            {'@xml:lang': 'es', '$': 'Horas (Tiempo)'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
           'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
            {'@xml:lang': 'es', '$': 'libro'},
            {'@xml:lang': 'fr', '$': 'livre'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtK3Ric1GReJ'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
             'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
              {'@xml:lang': 'fr', '$': 'objet'},
              {'@xml:lang': 'es', '$': 'objeto'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
              {'@xml:lang': 'fr', '$': 'petit objet'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
              'expandedLabel': {'@xml:lang': 'en',
               '$': 'Themes|everyday life|goods and chattels|object'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/959',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'book'},
            {'@xml:lang': 'es', '$': 'libro'},
            {'@xml:lang': 'fr', '$': 'livre'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A collection of leaves of paper, parchment or other material, usually bound or fastened together within covers, containing writing of any type or blank pages for future inscription.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
             'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
              {'@xml:lang': 'es', '$': 'tipo de documento'},
              {'@xml:lang': 'fr', '$': 'type de document'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/1392'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
            {'@xml:lang': 'fr', '$': 'Livre'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
               {'@xml:lang': 'fr', '$': 'Publications imprimées'},
               {'@xml:lang': 'fr', '$': 'Écrits publiés'},
               {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12301531v',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Documentation de bibliothèque'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Documents primaires'},
               {'@xml:lang': 'fr', '$': 'Documents de bibliothèques'},
               {'@xml:lang': 'fr', '$': 'Ressources documentaires'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4576243',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Libros'},
           'label': {'@xml:lang': 'es', '$': 'Libros'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85015738',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Books'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119757771',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Personnel'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Effectifs'},
            {'@xml:lang': 'fr', '$': 'Personnels'},
            {'@xml:lang': 'fr', '$': 'Personnel salarié'}],
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-805'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh00002753',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Employees'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Relations with employees'},
            {'@xml:lang': 'en', '$': 'Servants'}]},
          {'@count': '2',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/10904',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'public'},
            {'@xml:lang': 'es', '$': 'público'},
            {'@xml:lang': 'fr', '$': 'public'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The community or people in general or a part or section of the community grouped because of a common interest or activity.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8299',
             'prefLabel': [{'@xml:lang': 'en', '$': 'target group'},
              {'@xml:lang': 'es', '$': 'grupo dirigente'},
              {'@xml:lang': 'fr', '$': 'groupe-cible'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A collection of people selected and approached by some entity for a variety of purposes, including assistance, recruitment, information dissemination, marketing and research.'}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13516396s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Publics'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Spectateurs'},
            {'@xml:lang': 'fr', '$': 'Public'},
            {'@xml:lang': 'fr', '$': 'Auditoire'},
            {'@xml:lang': 'fr', '$': 'Assistance (public)'},
            {'@xml:lang': 'fr', '$': 'Visiteurs'},
            {'@xml:lang': 'fr', '$': 'Fréquentation'},
            {'@xml:lang': 'fr', '$': 'Audience'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11938923j',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Communication'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Communication humaine'},
              {'@xml:lang': 'fr', '$': 'Moyens de communication'}]}}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwV5F3Zewnp',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'public'},
            {'@xml:lang': 'fr', '$': 'public'},
            {'@xml:lang': 'es', '$': 'público'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtYNkjSY6BFL|http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l|http://ark.frantiq.fr/ark:/26678/pcrtwV5F3Zewnp'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l',
             'prefLabel': [{'@xml:lang': 'es', '$': 'público/privado'},
              {'@xml:lang': 'en', '$': 'public/private'},
              {'@xml:lang': 'fr', '$': 'public/privé'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'privé/public'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtPXdPqLtW6N|http://ark.frantiq.fr/ark:/26678/pcrtYNkjSY6BFL|http://ark.frantiq.fr/ark:/26678/pcrtGxcJisJG0l'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/13077',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'assay'},
            {'@xml:lang': 'es', '$': 'ensayo'},
            {'@xml:lang': 'fr', '$': 'analyse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Qualitative or quantitative determination of the components of a material, such as an ore or a drug.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8405',
             'prefLabel': [{'@xml:lang': 'en', '$': 'test'},
              {'@xml:lang': 'es', '$': 'prueba'},
              {'@xml:lang': 'fr', '$': 'test'}],
             'definition': {'@xml:lang': 'en',
              '$': 'To carry out an examination on (a substance, material, or system) by applying some chemical or physical procedure designed to indicate the presence of a substance or the possession of a property.'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-76',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '099 Mots outil|Analyse'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
             'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/397',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'analysis'},
            {'@xml:lang': 'es', '$': 'análisis'},
            {'@xml:lang': 'fr', '$': 'analyse'}],
           'definition': {'@xml:lang': 'en',
            '$': 'Examination or determination.'},
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_49928'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119756783',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Analyse'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse chimique'},
            {'@xml:lang': 'fr', '$': 'Dosage'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006221',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Analysis'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Methods of analysis'},
            {'@xml:lang': 'en', '$': 'Analysis and chemistry'},
            {'@xml:lang': 'en', '$': 'Analytical methods'},
            {'@xml:lang': 'en', '$': 'Chemical analysis'},
            {'@xml:lang': 'en', '$': 'Analysis methods'},
            {'@xml:lang': 'en', '$': 'Analysis and examination'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99002428',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Assaying'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-64',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement des abords'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Abord'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-72|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-562|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-64',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '021 Aménagement urbain|Urbanisme|Aménagement urbain|Composition urbaine|Aménagement des abords'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-562',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Composition urbaine'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Collage urbain'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2132|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2036|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-72|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-562',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '021 Aménagement urbain|Urbanisme|Aménagement urbain|Composition urbaine'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13331853r',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Symptômes'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Manifestations des maladies'},
            {'@xml:lang': 'fr', '$': 'Signes et symptômes'},
            {'@xml:lang': 'fr', '$': 'Signes fonctionnels'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85131555',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Symptoms'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Semiology (Medicine)'},
            {'@xml:lang': 'en', '$': 'Diseases--Symptoms'},
            {'@xml:lang': 'en', '$': 'Symptomatology'},
            {'@xml:lang': 'en', '$': 'Signs, Clinical'},
            {'@xml:lang': 'en', '$': 'Clinical signs'},
            {'@xml:lang': 'en', '$': 'Semiology'},
            {'@xml:lang': 'en', '$': 'Symptomology'},
            {'@xml:lang': 'en', '$': 'Signs and symptoms'},
            {'@xml:lang': 'en', '$': 'Disease symptoms'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'lecteur'},
            {'@xml:lang': 'es', '$': 'lector'},
            {'@xml:lang': 'en', '$': 'reader'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
             'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
              {'@xml:lang': 'es', '$': 'práctica cotidiana'},
              {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932985n',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Pragmatique'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Linguistique pragmatique'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932194d',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Linguistique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Science du langage'},
              {'@xml:lang': 'fr', '$': 'Théorie linguistique'},
              {'@xml:lang': 'fr', '$': 'Sciences du langage'},
              {'@xml:lang': 'fr', '$': 'Théories linguistiques'},
              {'@xml:lang': 'fr', '$': 'Langage, Science du'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85106058',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Pragmatics'},
           'altLabel': {'@xml:lang': 'en', '$': 'Pragmalinguistics'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX538539',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Pragmática lingüística'},
           'label': {'@xml:lang': 'es', '$': 'Pragmática lingüística'},
           'altLabel': {'@xml:lang': 'es', '$': 'Pragmalingüística'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119814612',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Possibilité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Possibilité (logique)'},
            {'@xml:lang': 'fr', '$': 'Possible'},
            {'@xml:lang': 'fr', '$': 'Impossible'},
            {'@xml:lang': 'fr', '$': 'Possibilité (philosophie)'},
            {'@xml:lang': 'fr', '$': 'Impossibilité'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946064c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Modalité (logique)'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Logique modale'},
               {'@xml:lang': 'fr', '$': 'Modalité (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Modalités (logique)'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
               {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85105408',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Possibility'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX531645',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Posibilidad'},
           'label': {'@xml:lang': 'es', '$': 'Posibilidad'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
            {'@xml:lang': 'es', '$': 'corpus'},
            {'@xml:lang': 'fr', '$': 'corpus'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
             'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
              {'@xml:lang': 'es', '$': 'instrumento documental'},
              {'@xml:lang': 'fr', '$': 'outil documentaire'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGO3ogfZno0',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'constance'},
            {'@xml:lang': 'es', '$': 'constancia'},
            {'@xml:lang': 'en', '$': 'constancy'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtXxzIzByTAh|http://ark.frantiq.fr/ark:/26678/pcrtGO3ogfZno0',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|vertu|constance'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXxzIzByTAh',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'vertu'},
              {'@xml:lang': 'es', '$': 'virtud'},
              {'@xml:lang': 'en', '$': 'virtue'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'vertu (concept)'},
              {'@xml:lang': 'fr', '$': 'vertu (notion de)'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtXxzIzByTAh',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique|vertu'}}}}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#CONSTANCE',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Constance'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#ALLEMAGNE|http://GeoEthno#BADE-WURTEMBERG|http://GeoEthno#DISTRICT_DE_FRIBOURG-EN-BRISGAU|http://GeoEthno#CONSTANCE'},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#DISTRICT_DE_FRIBOURG-EN-BRISGAU',
             'prefLabel': {'@xml:lang': 'fr',
              '$': 'District de Fribourg-en-Brisgau'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_OCCIDENTALE|http://GeoEthno#ALLEMAGNE|http://GeoEthno#BADE-WURTEMBERG|http://GeoEthno#DISTRICT_DE_FRIBOURG-EN-BRISGAU',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe occidentale|Allemagne|Bade-Wurtemberg|District de Fribourg-en-Brisgau'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb13514784d',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Constance'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Opiniâtreté'},
            {'@xml:lang': 'fr', '$': 'Tenacité'},
            {'@xml:lang': 'fr', '$': 'Persévérance'},
            {'@xml:lang': 'fr', '$': 'Stabilité (psychologie)'},
            {'@xml:lang': 'fr', '$': 'Obstination'},
            {'@xml:lang': 'fr', '$': 'Imperturbabilité'},
            {'@xml:lang': 'fr', '$': 'Fermeté'},
            {'@xml:lang': 'fr', '$': 'Stoïcisme (morale)'},
            {'@xml:lang': 'fr', '$': 'Assiduité'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937314p',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Morale pratique'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Morale privée'},
              {'@xml:lang': 'fr', '$': 'Morale individuelle'},
              {'@xml:lang': 'fr', '$': 'Morale personnelle'},
              {'@xml:lang': 'fr', '$': 'Morale de tous les jours'},
              {'@xml:lang': 'fr', '$': 'Morale quotidienne'},
              {'@xml:lang': 'fr', '$': 'Morale spéciale'},
              {'@xml:lang': 'fr', '$': 'Conduite de la vie (morale)'},
              {'@xml:lang': 'fr', '$': 'Moralité pratique'},
              {'@xml:lang': 'fr',
               '$': 'Éthique appliquée à la vie quotidienne'},
              {'@xml:lang': 'fr',
               '$': 'Morale appliquée à la vie quotidienne'},
              {'@xml:lang': 'fr', '$': 'Morale au quotidien'},
              {'@xml:lang': 'fr', '$': 'Morale de la vie quotidienne'},
              {'@xml:lang': 'fr', '$': 'Morale domestique'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85031307',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Constancy'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX538146',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Constancia'},
           'label': {'@xml:lang': 'es', '$': 'Constancia'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85100090',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Persistence'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/14848',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'subject'},
            {'@xml:lang': 'es', '$': 'materia (sujeto, en derecho)'},
            {'@xml:lang': 'fr', '$': 'sujet'}],
           'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_330829'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11933815f',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Volonté'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Akrasie'},
            {'@xml:lang': 'fr', '$': 'Conation'},
            {'@xml:lang': 'fr', '$': 'Volition'},
            {'@xml:lang': 'fr', '$': 'Aboulie'},
            {'@xml:lang': 'fr', '$': 'Vouloir'},
            {'@xml:lang': 'fr', '$': 'Akrasia'},
            {'@xml:lang': 'fr', '$': 'Volonté, Manque de'},
            {'@xml:lang': 'fr', '$': 'Manque de volonté'},
            {'@xml:lang': 'fr', '$': 'Acrasia'},
            {'@xml:lang': 'fr', '$': 'Acrasie'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119330753',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Personnalité'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Traits de caractère'},
               {'@xml:lang': 'fr', '$': 'Traits de personnalité'},
               {'@xml:lang': 'fr', '$': 'Identité personnelle'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119756872',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Morale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Éthique'},
               {'@xml:lang': 'fr', '$': 'Philosophie morale'},
               {'@xml:lang': 'fr', '$': 'Contribution à la morale'},
               {'@xml:lang': 'fr', '$': 'Et la morale'},
               {'@xml:lang': 'fr', '$': 'Moralité'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11937522v',
              'prefLabel': {'@xml:lang': 'fr', '$': "Philosophie de l'action"},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Agir (philosophie)'},
               {'@xml:lang': 'fr', '$': "Acte (philosophie de l'action)"},
               {'@xml:lang': 'fr', '$': 'Action (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Activité (philosophie)'},
               {'@xml:lang': 'fr', '$': "Action, Philosophie de l'"}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85146775',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Will'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Conation'},
            {'@xml:lang': 'en', '$': 'Volition'},
            {'@xml:lang': 'en', '$': 'Cetanā'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2006003161',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Akrasia'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Acrasia (Ethics)'},
            {'@xml:lang': 'en', '$': 'Incontinence (Ethics)'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932095g',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Immortalité'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Immortalité (philosophie)'},
            {'@xml:lang': 'fr', '$': "Immortalité de l'âme"},
            {'@xml:lang': 'fr', '$': 'Immortalité (religion)'},
            {'@xml:lang': 'fr', '$': 'Vie après la mort'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb162510985'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133184548',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Âme'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Psukhê'},
               {'@xml:lang': 'fr', '$': 'Souffle'},
               {'@xml:lang': 'fr', '$': 'Pneûma'},
               {'@xml:lang': 'fr', '$': 'Âme (philosophie)'},
               {'@xml:lang': 'fr', '$': 'Psuché'},
               {'@xml:lang': 'fr', '$': 'Psyché'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85064531',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Immortality'},
           'altLabel': {'@xml:lang': 'en', '$': 'Life after death'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85064533',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Immortality (Philosophy)'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525593',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Inmortalidad'},
           'label': {'@xml:lang': 'es', '$': 'Inmortalidad'},
           'altLabel': {'@xml:lang': 'es', '$': 'Alma--Inmortalidad'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZ8OngFzNmw',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'immortalité'},
            {'@xml:lang': 'en', '$': 'immortality'},
            {'@xml:lang': 'es', '$': 'inmortalidad'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtZ8OngFzNmw'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3',
             'prefLabel': [{'@xml:lang': 'es', '$': 'filosofía (noción)'},
              {'@xml:lang': 'fr', '$': 'philosophie (notion)'},
              {'@xml:lang': 'en', '$': 'philosophy (notion)'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'philosophie notion'},
              {'@xml:lang': 'fr', '$': 'philosophie thème'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEo3JbgULtV',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'madre'},
            {'@xml:lang': 'fr', '$': 'mère'},
            {'@xml:lang': 'en', '$': 'mother'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM|http://ark.frantiq.fr/ark:/26678/pcrtEo3JbgULtV'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM',
             'prefLabel': [{'@xml:lang': 'es', '$': 'familia formación'},
              {'@xml:lang': 'fr', '$': 'famille formation'},
              {'@xml:lang': 'en', '$': 'family formation'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtgOPqvnJgdU|http://ark.frantiq.fr/ark:/26678/pcrtiRopPQPQqM'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/3983',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'history'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'fr', '$': 'histoire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'A systematic written account comprising a chronological record of events (as affecting a city, state, nation, institution, science, or art) and usually including a philosophical explanation of the cause and origin of such events.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/10019',
             'prefLabel': [{'@xml:lang': 'en', '$': 'human science'},
              {'@xml:lang': 'es', '$': 'humanidades'},
              {'@xml:lang': 'fr', '$': 'sciences humaines'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Group of sciences including sociology, anthropology, psychology, pedagogy, etc. as opposed to the humanistic group.'}}},
           'exactMatch': [{'@uri': 'http://aims.fao.org/aos/agrovoc/c_3635'},
            {'@uri': 'http://eurovoc.europa.eu/1245'}]},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire'},
            {'@xml:lang': 'es', '$': 'historia'},
            {'@xml:lang': 'en', '$': 'history'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtJHV6SKuS8I',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|histoire-civilisation|histoire'}},
           'definition': {'@xml:lang': 'fr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
              {'@xml:lang': 'es', '$': 'historia-civilización'},
              {'@xml:lang': 'en', '$': 'history-civilization'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
             'definition': {'@xml:lang': 'fr',
              '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
            {'@xml:lang': 'fr', '$': 'Sciences historiques'},
            {'@xml:lang': 'fr', '$': 'Science historique'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119331908',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Sciences humaines'},
             'altLabel': [{'@xml:lang': 'fr', '$': "Sciences de l'homme"},
              {'@xml:lang': 'fr', '$': "Homme, Sciences de l'"},
              {'@xml:lang': 'fr', '$': 'Sciences morales'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99005024',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'History'},
           'altLabel': {'@xml:lang': 'en', '$': 'Frontier troubles'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525283',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Historia'},
           'label': {'@xml:lang': 'es', '$': 'Historia'}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '060 Sciences humaines|Histoire'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144',
             'prefLabel': {'@xml:lang': 'fr', '$': '060 Sciences humaines'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtPcz61Ql91w',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'écrivain'},
            {'@xml:lang': 'es', '$': 'escritor'},
            {'@xml:lang': 'en', '$': 'writer'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9|http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X|http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz|http://ark.frantiq.fr/ark:/26678/pcrtPcz61Ql91w'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz',
             'prefLabel': [{'@xml:lang': 'es', '$': 'intelectual'},
              {'@xml:lang': 'en', '$': 'intellectual'},
              {'@xml:lang': 'fr', '$': 'intellectuel'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt5Vyzd3D9vw|http://ark.frantiq.fr/ark:/26678/pcrtLAIHHPQYx9|http://ark.frantiq.fr/ark:/26678/pcrt6pIYbznT9X|http://ark.frantiq.fr/ark:/26678/pcrt0A4m1yi6Bz'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11935546c',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Face'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Facies (anatomie)'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11975932m',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Tête'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Caput'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046785',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Face'},
           'altLabel': {'@xml:lang': 'en', '$': 'Human face'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11957057j',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Échec'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Perdants'},
            {'@xml:lang': 'fr', '$': 'Losers'},
            {'@xml:lang': 'fr', '$': 'Échec (psychologie)'},
            {'@xml:lang': 'fr', '$': "Conduite d'échec"},
            {'@xml:lang': 'fr', '$': 'Loosers'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119361486',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Comportement humain'},
             'altLabel': {'@xml:lang': 'fr',
              '$': 'Comportement (psychologie)'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85046883',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Failure (Psychology)'},
           'altLabel': {'@xml:lang': 'en', '$': 'Losing (Psychology)'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX532613',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Fracaso'},
           'label': {'@xml:lang': 'es', '$': 'Fracaso'},
           'altLabel': {'@xml:lang': 'es', '$': 'Fracaso (Psicología)'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'edifice'},
            {'@xml:lang': 'fr', '$': 'édifice'},
            {'@xml:lang': 'es', '$': 'edificio'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'bâtiment'},
            {'@xml:lang': 'en', '$': 'building'},
            {'@xml:lang': 'fr', '$': 'monument'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo'},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ouvrage architectural aux proportions importantes (TLF)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET',
             'prefLabel': [{'@xml:lang': 'en', '$': 'architecture'},
              {'@xml:lang': 'fr', '$': 'architecture'},
              {'@xml:lang': 'es', '$': 'arquitectura'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Art de construire les bâtiments (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/5360',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'monument'},
            {'@xml:lang': 'es', '$': 'monumento'},
            {'@xml:lang': 'fr', '$': 'monument'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An object, especially large and made of stone, built to remember and show respect to a person or group of people, or a special place made for this purpose.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/1911',
             'prefLabel': [{'@xml:lang': 'en', '$': 'cultural facility'},
              {'@xml:lang': 'es', '$': 'equipamiento cultural'},
              {'@xml:lang': 'fr', '$': 'équipement culturel'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Any building or structure used for programs or activities involving the arts or other endeavors that encourage refinement or development of the mind.'}}},
           'exactMatch': {'@uri': 'http://eurovoc.europa.eu/5747'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
           'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
            {'@xml:lang': 'fr', '$': 'objet'},
            {'@xml:lang': 'es', '$': 'objeto'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
            {'@xml:lang': 'fr', '$': 'petit objet'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|everyday life|goods and chattels|object'}},
           'definition': {'@xml:lang': 'fr',
            '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt07DVcalKRc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'poético'},
            {'@xml:lang': 'en', '$': 'poetics'},
            {'@xml:lang': 'fr', '$': 'poétique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrt07DVcalKRc'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP',
             'prefLabel': [{'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP'},
             'definition': {'@xml:lang': 'fr',
              '$': 'Ens. des productions littéraires (Lar.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119400538',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Poétique'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Poétique (poésie)'},
            {'@xml:lang': 'fr', '$': 'Création poétique'},
            {'@xml:lang': 'fr', '$': 'Écriture poétique'},
            {'@xml:lang': 'fr', '$': 'Technique poétique'},
            {'@xml:lang': 'fr', '$': 'Langage poétique'},
            {'@xml:lang': 'fr', '$': 'Métier de poète'},
            {'@xml:lang': 'fr', '$': 'Art poétique'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526404',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Poética'},
           'label': {'@xml:lang': 'es', '$': 'Poética'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Poesía--Técnica'},
            {'@xml:lang': 'es', '$': 'Poesía--Teoría y técnica'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85103703',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Poetics'},
           'altLabel': {'@xml:lang': 'en', '$': 'Poetry--Technique'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85103705',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Poetry--Authorship'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX772350',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Poesía--Arte de escribir'},
           'label': {'@xml:lang': 'es', '$': 'Poesía--Arte de escribir'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'fr', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'Arts'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrttq9gp2ZMuc'},
           'definition': {'@xml:lang': 'fr',
            '$': "Ensemble des oeuvres artistiques d'un pays, d'une époque (Lar.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
              {'@xml:lang': 'en', '$': 'Themes'},
              {'@xml:lang': 'es', '$': 'Tema'}]}}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/568',
           'prefLabel': [{'@xml:lang': 'en', '$': 'art'},
            {'@xml:lang': 'es', '$': 'arte'},
            {'@xml:lang': 'fr', '$': 'art'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The creation of works of beauty or other special significance.'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11934758p',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Beaux-arts'},
            {'@xml:lang': 'fr', '$': 'Arts plastiques'},
            {'@xml:lang': 'fr', '$': "Oeuvres d'art"},
            {'@xml:lang': 'fr', '$': 'Arts visuels'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935712m',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Arts'},
             'altLabel': {'@xml:lang': 'fr', '$': "Oeuvres d'art"}}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-608'}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85007461',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Art'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Western art (Western countries)'},
            {'@xml:lang': 'en', '$': 'Fine arts'},
            {'@xml:lang': 'en', '$': 'Iconography'},
            {'@xml:lang': 'en', '$': 'Arts, Fine'},
            {'@xml:lang': 'en', '$': 'Art, Occidental'},
            {'@xml:lang': 'en', '$': 'Arts, Visual'},
            {'@xml:lang': 'en', '$': 'Visual arts'},
            {'@xml:lang': 'en', '$': 'Occidental art'},
            {'@xml:lang': 'en', '$': 'Art, Visual'},
            {'@xml:lang': 'en', '$': 'Art, Western (Western countries)'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Art'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "051 Analyse et théorie de l'art|Art"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141',
             'prefLabel': {'@xml:lang': 'fr',
              '$': "051 Analyse et théorie de l'art"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11966614w',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Fragmentation'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Écrasage'},
            {'@xml:lang': 'fr', '$': 'Micronisation'},
            {'@xml:lang': 'fr', '$': 'Pulvérisation (broyage)'},
            {'@xml:lang': 'fr', '$': 'Broyage (fragmentation)'},
            {'@xml:lang': 'fr', '$': 'Comminution'},
            {'@xml:lang': 'fr', '$': 'Concassage'},
            {'@xml:lang': 'fr', '$': 'Trituration'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85123077',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Size reduction of materials'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Particle size reduction'},
            {'@xml:lang': 'en', '$': 'Comminution'},
            {'@xml:lang': 'en', '$': 'Grinding (Size reduction)'}]}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}},
     {'@uri': '10670/1.fqikp5',
      'isidore': {'title': 'Roland Barthes, lecteur du XIXe siècle',
       'url': 'https://octaviana.fr/document/182423298',
       'enrichedCreators': {'creator': {'@origin': 'Sun, Qian',
         '@normalizedAuthor': 'Sun, Qian,',
         '@idAuthor': 'sun_qian',
         'firstname': [],
         'lastname': 'Sun, Qian',
         'title': [],
         'sameAs': []}},
       'date': {'@origin': '2014',
        '@startDate': '2014-01-01',
        '@endDate': '2014-12-31',
        '@treeDate': '2000/2010/2014',
        'normalizedDate': '2014-01-01',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2014'}},
       'ore': {'aggregates': {'@thumbnail': 'true',
         '@crawl': 'true',
         '@thumbnailId': '20047613',
         '$': 'https://octaviana.fr/document/182423298'},
        'similar': '182423298'},
       'subjects': {'subject': ['Critique',
         'Livres et lecture',
         'Littérature française']},
       'relations': {'relation': 'vignette : https://octaviana.fr/files/square_thumbnails/9082b5ee996de983409b7f2ead864ad6.jpg'},
       'abstract': '<p>Bien qu’il soit critique littéraire et sémiologue avant-gardiste des années 1950 aux années 1970, Roland Barthes nourrit pourtant une grande passion pour la littérature classique du XIXe siècle. En se déclarant «\xa0être à l’arrière-garde de l’avant-garde », Barthes a consacré de nombreux articles et livres\xa0aux écrivains de l’époque, parmi lesquels Michelet, Balzac et Flaubert tiennent respectivement une place considérable\xa0dans la carrière critique de Barthes. La lecture barthésienne de ces trois écrivains s’inscrit dans un parcours historique de sa problématique théorique. A travers sa lecture innovatrice des trois écrivains du XIXe siècle, en leur donnant des profils renouvelés, Barthes forge une critique d’avant-garde qui en fait un des plus grands lecteurs de notre époque.</p> <p><em>As the famous French literary theorist, semiologist and leader of the new criticism in the last century 50’s to 70’s, Roland Barthes had a great passion for the classical literature of the 19th century. Barthes who was an influential voice for the “New Novel” claimed to be “the rear guard of the front guard”, and had done in-depth research on many French writers of the nineteenth century, especially Michelet, Balzac and Flaubert, each of whom has his own characteristics in his writings and plays a crucial role in different evolutionary stages of his thoughts. It is in the reading of the classics of the 19th century that Barthes consolidated the unshakable status as a well-known pioneering literary critic of the 20th century.</em></p>',
       'types': {'type': ['Thèse', 'Thesis']},
       'source_info': {'collectionLabel': {'@shortLabel': 'Bib Univ. Paris 8',
         '@handle': '10670/3.15yiws',
         '@collectionUuid': '07d8c632-0c0a-9184-fec5-156abe9ee474',
         '$': "Bibliothèques de l'Université de Paris 8"},
        'collectionOrganization': {'@organizationUrl': 'https://www.bu.univ-paris8.fr',
         '$': "Bibliothèque universitaire de l'Université de Paris 8"},
        'collectionURLMainSite': {'@thumbnaiId': '10179553',
         '$': 'https://www.bu.univ-paris8.fr'},
        'collectionInformations': {'collectionDescription': "Collection regroupant les ressources numériques de la bibliothèque numérique de l'Université de Paris 8.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': [],
         'collectionContactEmailAddress': 'anne.sophie.pascal@univ-poitiers.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.15yiws|10670/2.1wv48m',
         '$': "Bibliothèques de l'Université de Paris 8#Octaviana"},
        'sourceCode': {'@handle': '10670/2.1wv48m',
         '$': '0c3f4cd2-76a6-0f5d-dc98-fd0e9e5b5391'},
        'sourceName': {'@shortLabel': 'Octaviana', '$': 'Octaviana'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '10179550',
         '$': 'http://paris8-omeka.biblibre.com'},
        'sourceScope': {'@uri': 'http://www.rechercheisidore.fr/subject/primaires',
         '$': 'Primaires'},
        'sourceType': 'Bibliothèque numérique',
        'sourceDescription': {'@seeAlsoURL': 'http://paris8-omeka.biblibre.com',
         '$': "Le Conseil Scientifique de l'Université Paris 8 a souhaité que l'Université soit dotée d'une bibliothèque numérique lui permettant de mettre en ligne des corpus documentaires qui présentent un intérêt avéré pour les travaux de recherche. Il a confié à la bibliothèque de l'Université Paris 8 le soin de mener ce projet à bien sous le nom d'OCTAVIANA. La bibliothèque numérique OCTAVIANA est riche de plus de 100 000 documents numériques. Elle met à disposition du public des fonds patrimoniaux : fonds Armand Gatti et Jean Dresch. Elle diffuse aussi plus de 800 thèses et de nombreux colloques récents."},
        'sourceOrganization': {'label': 'Université de Paris 8',
         'URI': 'http://www.univ-paris8.fr',
         'isoCountry': 'FR',
         'contactEmailAddress': 'bibliotheque.numerique@univ-paris8.fr'},
        'sourceParameters': {'baseUrl': 'http://octaviana.fr/oai-pmh-repository/request',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p (%t)',
          'dates': {'date': ['dd/MM/yyyy', 'MM/yyyy', 'yyyy']}},
         'CTYVerificationMode': 'lax',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#digitalLibrary',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Bibliothèque numérique'},
            {'@xml:lang': 'en', '$': 'Digital Library'},
            {'@xml:lang': 'es', '$': 'Biblioteca digital'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/primaires',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Sources de la recherche'},
            {'@xml:lang': 'en', '$': 'Sources of research'},
            {'@xml:lang': 'es', '$': 'Fuentes de la investigación'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': {'@type': 'ISIDORE_DC_SUBJECT',
         'concept': [{'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'lecteur'},
            {'@xml:lang': 'es', '$': 'lector'},
            {'@xml:lang': 'en', '$': 'reader'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtNotiJScWq0'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
             'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
              {'@xml:lang': 'es', '$': 'práctica cotidiana'},
              {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119731260',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Dix-neuvième siècle'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'XIXe siècle'},
            {'@xml:lang': 'fr', '$': '19e siècle'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb135365017',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Deuxième millénaire'},
             'altLabel': {'@xml:lang': 'fr', '$': '2e millénaire'}}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T4-44'}}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85091984',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Nineteenth century'},
           'altLabel': {'@xml:lang': 'en', '$': '19th century'}},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtlrjJOpjvFx',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': '19th century'},
            {'@xml:lang': 'es', '$': 'siglo XIX'},
            {'@xml:lang': 'fr', '$': 'XIXe siècle'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#4|http://ark.frantiq.fr/ark:/26678/pcrt59R77d1H15|http://ark.frantiq.fr/ark:/26678/pcrtlrjJOpjvFx',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Cronologia|época contemporánea|siglo XIX'},
             {'@xml:lang': 'en',
              '$': 'Chronology|Contemporary Period|19th century'}]},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt59R77d1H15',
             'prefLabel': [{'@xml:lang': 'en', '$': 'Contemporary Period'},
              {'@xml:lang': 'fr', '$': 'ép contemporaine'},
              {'@xml:lang': 'es', '$': 'época contemporánea'}],
             'altLabel': [{'@xml:lang': 'fr', '$': 'Contemporain'},
              {'@xml:lang': 'fr', '$': 'époque contemporaine'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#4|http://ark.frantiq.fr/ark:/26678/pcrt59R77d1H15',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Chronologie|ép contemporaine'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119361722',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique littéraire'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16675880c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Vie littéraire'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Vie culturelle'},
               {'@xml:lang': 'fr', '$': 'Gens de lettres'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX526725',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'label': {'@xml:lang': 'es', '$': 'Crítica literaria'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Análisis literario'},
            {'@xml:lang': 'es', '$': 'Crítica de la literatura'},
            {'@xml:lang': 'es', '$': 'Literatura--Crítica'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/4852',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'literature evaluation'},
            {'@xml:lang': 'es', '$': 'evaluación de documentación'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'}],
           'definition': {'@xml:lang': 'en',
            '$': 'The action of evaluating or judging the quality or character of written materials such as poetry, essays, novels, biographies and historical writings.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/4850',
             'prefLabel': [{'@xml:lang': 'en', '$': 'literature'},
              {'@xml:lang': 'es', '$': 'literatura'},
              {'@xml:lang': 'fr', '$': 'littérature'}],
             'definition': {'@xml:lang': 'en',
              '$': 'Written material such as poetry, novels, essays, especially works of imagination characterized by excellence of style and expression and by themes of general or enduring interest.'}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica literaria'},
            {'@xml:lang': 'fr', '$': 'critique littéraire'},
            {'@xml:lang': 'en', '$': 'literary criticism'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'critique de texte'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi|http://ark.frantiq.fr/ark:/26678/pcrtm3hoqtXmqr'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
             'prefLabel': [{'@xml:lang': 'en', '$': 'didactic genre'},
              {'@xml:lang': 'es', '$': 'género didáctico'},
              {'@xml:lang': 'fr', '$': 'genre didactique'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIgoNn37WDP|http://ark.frantiq.fr/ark:/26678/pcrtUE3nKRRnjv|http://ark.frantiq.fr/ark:/26678/pcrtamsuvlJFzi',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philologie|littérature|genre littéraire|genre didactique'}}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-104',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1950'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-104',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses|Années 1950'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Trente Glorieuses'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12543048v',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1950'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Années cinquante (vingtième siècle)'},
            {'@xml:lang': 'fr', '$': 'Fifties'},
            {'@xml:lang': 'fr', '$': 'Années 50 (vingtième siècle)'},
            {'@xml:lang': 'fr', '$': 'Décennie 1950'},
            {'@xml:lang': 'fr', '$': '1950 (décennie)'},
            {'@xml:lang': 'fr', '$': 'Cinquante, Années (vingtième siècle)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940256v',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Vingtième siècle'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'XXe siècle'},
              {'@xml:lang': 'fr', '$': '20e siècle'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh96005468',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Nineteen fifties'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Fifties (Twentieth century decade)'},
            {'@xml:lang': 'en', '$': '50s (Twentieth century decade)'},
            {'@xml:lang': 'en', '$': '1950s'}]},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-106',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1970'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-106',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses|Années 1970'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Trente Glorieuses'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2121|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-10|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-8|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2016',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '090 Chronologie|20e siècle|1945-2000|Trente Glorieuses'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb125431484',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Années 1970'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Années 70 (vingtième siècle)'},
            {'@xml:lang': 'fr', '$': 'Septante, Années (vingtième siècle)'},
            {'@xml:lang': 'en', '$': 'Seventies'},
            {'@xml:lang': 'fr', '$': 'Années soixante-dix (vingtième siècle)'},
            {'@xml:lang': 'fr',
             '$': 'Soixante-dix, Années (vingtième siècle)'},
            {'@xml:lang': 'fr', '$': '1970 (décennie)'},
            {'@xml:lang': 'fr', '$': 'Décennie 1970'},
            {'@xml:lang': 'fr', '$': 'Années septante (vingtième siècle)'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11940256v',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Vingtième siècle'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'XXe siècle'},
              {'@xml:lang': 'fr', '$': '20e siècle'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh96005520',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Nineteen seventies'},
           'altLabel': [{'@xml:lang': 'en',
             '$': 'Seventies (Twentieth century decade)'},
            {'@xml:lang': 'en', '$': '1970s'},
            {'@xml:lang': 'en', '$': '70s (Twentieth century decade)'}]},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'pasión'},
            {'@xml:lang': 'en', '$': 'passion'},
            {'@xml:lang': 'fr', '$': 'passion'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtGQGSz7IFZE',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Sujets|philosophie|philosophie (aspect)|éthique|passion'}},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT',
             'prefLabel': [{'@xml:lang': 'en', '$': 'ethics'},
              {'@xml:lang': 'fr', '$': 'éthique'},
              {'@xml:lang': 'es', '$': 'ética'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'morale'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Sujets|philosophie|philosophie (aspect)|éthique'}},
             'definition': {'@xml:lang': 'fr',
              '$': 'Science de la morale ; art de diriger la conduite (Rob.)'}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119312128',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Classicisme (littérature)'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Classicisme en littérature'},
            {'@xml:lang': 'fr', '$': 'Littérature classique'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939457q'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119493689'}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX558860',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Clasicismo (Literatura)'},
           'label': {'@xml:lang': 'es', '$': 'Clasicismo (Literatura)'},
           'altLabel': {'@xml:lang': 'es',
            '$': 'Clasicismo en la literatura'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85026714',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Classicism'},
           'altLabel': {'@xml:lang': 'en', '$': 'Pseudo-classicism'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh94003674',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Classicism in literature'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11932267s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature antique'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Littérature de l'Antiquité"},
            {'@xml:lang': 'fr', '$': 'Littérature classique'},
            {'@xml:lang': 'fr', '$': 'Littérature gréco-latine'},
            {'@xml:lang': 'fr', '$': 'Littératures antiques'},
            {'@xml:lang': 'fr', '$': 'Littérature ancienne'},
            {'@xml:lang': 'fr', '$': 'Littérature gréco-romaine'},
            {'@xml:lang': 'fr',
             '$': 'Littérature ancienne grecque et latine'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119366117',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Civilisation antique'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': "Civilisation de l'Antiquité"},
               {'@xml:lang': 'fr', '$': 'Civilisation ancienne'},
               {'@xml:lang': 'fr', '$': 'Culture antique'}]}}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85026706',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Classical literature'},
           'altLabel': {'@xml:lang': 'en', '$': 'Literature, Classical'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX527880',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Literatura clásica'},
           'label': {'@xml:lang': 'es', '$': 'Literatura clásica'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85077533',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Literature, Ancient'},
           'altLabel': {'@xml:lang': 'en', '$': 'Ancient literature'}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX532040',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Literatura antigua'},
           'label': {'@xml:lang': 'es', '$': 'Literatura antigua'},
           'altLabel': {'@xml:lang': 'es', '$': 'Literatura--Hasta S.V'}},
          {'@count': '2',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-282',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Avant-garde'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-906|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-282',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': "051 Analyse et théorie de l'art|Art|Expression artistique|Avant-garde"}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-906',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Expression artistique'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2141|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-212|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-906',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': "051 Analyse et théorie de l'art|Art|Expression artistique"}}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
            {'@xml:lang': 'fr', '$': 'Gens de lettres'},
            {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
          {'@count': '3',
           '@uri': 'http://datos.bne.es/resource/XX526944',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
           'label': {'@xml:lang': 'es', '$': 'Escritores'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
            {'@xml:lang': 'es', '$': 'Literatos'}]},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
           'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'place'},
            {'@xml:lang': 'es', '$': 'plaza'},
            {'@xml:lang': 'en', '$': 'public place'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL|http://ark.frantiq.fr/ark:/26678/pcrtw4WU5RpLdF',
            'expandedLabel': {'@xml:lang': 'en',
             '$': 'Themes|geography|human geography|land use|spatial organization|urbanism|urban structure|public place'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Espace plus ou moins étendue (Rob.)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
             'prefLabel': [{'@xml:lang': 'es', '$': 'estructura urbana'},
              {'@xml:lang': 'fr', '$': 'structure urbaine'},
              {'@xml:lang': 'en', '$': 'urban structure'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtzQcj7ySt1K|http://ark.frantiq.fr/ark:/26678/pcrtZRnIMwdJOD|http://ark.frantiq.fr/ark:/26678/pcrtUu5zfknZ1x|http://ark.frantiq.fr/ark:/26678/pcrt3mBlLdPeGK|http://ark.frantiq.fr/ark:/26678/pcrthT7f96LxBR|http://ark.frantiq.fr/ark:/26678/pcrtux8pUagmKL',
              'expandedLabel': [{'@xml:lang': 'fr',
                '$': "Sujets|géographie|géographie humaine|occupation du sol|organisation de l'espace|urbanisme|structure urbaine"},
               {'@xml:lang': 'es',
                '$': 'Tema|geografía|geografía humana|ocupación del suelo|organización del espacio|urbanismo|estructura urbana'}]}}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtXk6sdvTjnE',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'cantera'},
            {'@xml:lang': 'fr', '$': 'carrière'},
            {'@xml:lang': 'en', '$': 'quarry'}],
           'altLabel': {'@xml:lang': 'fr', '$': 'carrière de pierre'},
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrts8SiTTY3Ka|http://ark.frantiq.fr/ark:/26678/pcrtXk6sdvTjnE'},
           'definition': {'@xml:lang': 'fr',
            '$': "Endroit où l'on exploite des produits minéraux non métalliques ni carbonifères (Lar.). Pour l'homonyme voir     fonctionnaire et carrière"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrts8SiTTY3Ka',
             'prefLabel': [{'@xml:lang': 'fr',
               '$': 'acquisition de ressource naturelle'},
              {'@xml:lang': 'es', '$': 'adquisición de recursos naturales'},
              {'@xml:lang': 'en', '$': 'natural resource procurement'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrts8SiTTY3Ka'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-423',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Carrière'},
           'altLabel': {'@xml:lang': 'fr', '$': 'Gravière'},
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1494|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-423',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '030 Paysage - environnement|Paysage|Paysage industriel|Carrière'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1494',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Paysage industriel'},
             'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1494',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': '030 Paysage - environnement|Paysage|Paysage industriel'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119329202',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr',
            '$': 'Orientation professionnelle'},
           'altLabel': [{'@xml:lang': 'fr', '$': "Choix d'un métier"},
            {'@xml:lang': 'fr', '$': 'Choix professionnels'},
            {'@xml:lang': 'fr', '$': 'Carrières'},
            {'@xml:lang': 'fr', '$': 'Carrière'},
            {'@xml:lang': 'fr', '$': 'Information professionnelle'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121048463',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Counseling'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': "Entretiens d'information-conseil"},
              {'@xml:lang': 'fr', '$': "Relation d'aide"},
              {'@xml:lang': 'fr', '$': "Entretiens d'aide"},
              {'@xml:lang': 'fr', '$': 'Aide psychologique'},
              {'@xml:lang': 'fr', '$': 'Conseil psychologique'},
              {'@xml:lang': 'fr', '$': 'Information-conseil'},
              {'@xml:lang': 'fr', '$': 'Entretiens de conseil'},
              {'@xml:lang': 'fr', '$': 'Counselling'}]}},
           'exactMatch': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T1-1146'}}},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX525069',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Orientación profesional'},
           'label': {'@xml:lang': 'es', '$': 'Orientación profesional'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Elección de profesión'},
            {'@xml:lang': 'es', '$': 'Empleo--Orientación profesional'},
            {'@xml:lang': 'es', '$': 'Profesiones--Elección'},
            {'@xml:lang': 'es', '$': 'Profesiones--Orientación'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002006455',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Vocational guidance'},
           'altLabel': {'@xml:lang': 'en', '$': 'Guidance, Vocational'}},
          {'@count': '1',
           '@uri': 'http://www.eionet.europa.eu/gemet/concept/6867',
           'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'quarry'},
            {'@xml:lang': 'es', '$': 'canteras'},
            {'@xml:lang': 'fr', '$': 'carrière'}],
           'definition': {'@xml:lang': 'en',
            '$': 'An open or surface working or excavation for the extraction of building stone, ore, coal, gravel, or minerals.'},
           'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5286',
             'prefLabel': [{'@xml:lang': 'en', '$': 'mining district'},
              {'@xml:lang': 'es', '$': 'distrito de explotación minera'},
              {'@xml:lang': 'fr', '$': 'arrondissement minier'}],
             'definition': {'@xml:lang': 'en',
              '$': 'A district where mineral exploitation is performed.'}}}},
          {'@count': '3',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb16901592n',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Critique'}},
          {'@count': '3',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85034149',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Criticism'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Appraisal of books'},
            {'@xml:lang': 'en', '$': 'Evaluation of literature'},
            {'@xml:lang': 'en', '$': 'Literary criticism'},
            {'@xml:lang': 'en', '$': 'Books--Appraisal'},
            {'@xml:lang': 'en', '$': 'Criticism--Technique'},
            {'@xml:lang': 'en', '$': 'Literature--Evaluation'}]},
          {'@count': '3',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'crítica'},
            {'@xml:lang': 'en', '$': 'critique'},
            {'@xml:lang': 'fr', '$': 'critique'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy|http://ark.frantiq.fr/ark:/26678/pcrtRI4xXwjP2A',
            'expandedLabel': {'@xml:lang': 'es',
             '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso|crítica'}},
           'definition': {'@xml:lang': 'fr',
            '$': 'Ne pas confondre avec la     critique littéraire     en tant que genre littéraire (BL)'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
             'prefLabel': [{'@xml:lang': 'es', '$': 'análisis del discurso'},
              {'@xml:lang': 'fr', '$': 'analyse du discours'},
              {'@xml:lang': 'en', '$': 'discourse analysis'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'discours-analyse'},
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtunRW1jSBML|http://ark.frantiq.fr/ark:/26678/pcrtIDlTNGlpii|http://ark.frantiq.fr/ark:/26678/pcrtI1BWRwdhjp|http://ark.frantiq.fr/ark:/26678/pcrtkneHRb9veV|http://ark.frantiq.fr/ark:/26678/pcrtS6MlG2v4Xy',
              'expandedLabel': {'@xml:lang': 'es',
               '$': 'Tema|filología|lingüística|estructura de las lenguas|gramática|análisis del discurso'}},
             'definition': {'@xml:lang': 'fr',
              '$': "Discipline connexe à la linguistique qui étudie la structure d'un énoncé supérieur à la phrase (discours) en le rapportant à ses conditions de productions (Lar.)"}}}},
          {'@count': '2',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119656766',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Lecture'},
           'altLabel': [{'@xml:lang': 'fr',
             '$': 'Lecture en langue maternelle'},
            {'@xml:lang': 'fr', '$': 'Lecture en langue seconde'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
              {'@xml:lang': 'fr', '$': 'Langage et langues'},
              {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}},
          {'@count': '2',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007651',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Reading'}},
          {'@count': '2',
           '@uri': 'http://datos.bne.es/resource/XX4576441',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Lectura'},
           'label': {'@xml:lang': 'es', '$': 'Lectura'}},
          {'@count': '2',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'es', '$': 'lectura'},
            {'@xml:lang': 'fr', '$': 'lecture'},
            {'@xml:lang': 'en', '$': 'reading'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy'},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
             'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
              {'@xml:lang': 'es', '$': 'práctica cotidiana'},
              {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
          {'@count': '1',
           '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
           'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Cheminement'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Traversée'},
            {'@xml:lang': 'fr', '$': 'Parcours'},
            {'@xml:lang': 'fr', '$': 'Promenade'}],
           'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2136|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1492|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-499',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': '030 Paysage - environnement|Paysage|Aménagement paysager|Cheminement'}},
           'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-68',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Aménagement paysager'},
             'altLabel': [{'@xml:lang': 'fr', '$': 'Urbanisme paysager'},
              {'@xml:lang': 'fr', '$': 'Aménagement de site'}]}}},
          {'@count': '1',
           '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt3uOj7GEVaE',
           'inScheme': 'http://pactols.frantiq.fr/',
           'prefLabel': [{'@xml:lang': 'en', '$': 'forge'},
            {'@xml:lang': 'fr', '$': 'forge'},
            {'@xml:lang': 'es', '$': 'forja'}],
           'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtD8bo5lH0H4|http://ark.frantiq.fr/ark:/26678/pcrtuf9JSs9vo6|http://ark.frantiq.fr/ark:/26678/pcrt3uOj7GEVaE'},
           'definition': {'@xml:lang': 'fr',
            '$': "Lieu où l'on travaille les métaux, au feu ou au marteau (Rob.)"},
           'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtuf9JSs9vo6',
             'prefLabel': [{'@xml:lang': 'fr', '$': 'métallurgie'},
              {'@xml:lang': 'en', '$': 'metallurgy'},
              {'@xml:lang': 'es', '$': 'metalurgia'}],
             'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm|http://ark.frantiq.fr/ark:/26678/pcrttrEq4Rcpkr|http://ark.frantiq.fr/ark:/26678/pcrtD8bo5lH0H4|http://ark.frantiq.fr/ark:/26678/pcrtuf9JSs9vo6'},
             'definition': {'@xml:lang': 'fr',
              '$': "Ensemble des procédés et des techniques d'extraction, d'élaboration, de mise en forme et de traitement des métaux et de leurs alliages (Lar.)"}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb11946185m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'New Criticism'},
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932255s',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Théorie littéraire'},
             'altLabel': [{'@xml:lang': 'fr',
               '$': 'Poétique (théorie littéraire)'},
              {'@xml:lang': 'fr', '$': 'Théories de la littérature'},
              {'@xml:lang': 'fr', '$': 'Théorie de la littérature'},
              {'@xml:lang': 'fr', '$': 'Théories littéraires'}]}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85091257',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'New Criticism'}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb12517897m',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Stages'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Programmes de stage'},
            {'@xml:lang': 'fr', '$': 'Étude et enseignement (stages)'},
            {'@xml:lang': 'fr', '$': 'Stages pratiques'}],
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11954983v'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11951949z',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Formation en alternance'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Stages préprofessionnels'},
               {'@xml:lang': 'fr', '$': 'Alternance pédagogique'},
               {'@xml:lang': 'fr', '$': 'Enseignement en alternance'},
               {'@xml:lang': 'fr', '$': 'Alternance (éducation)'},
               {'@xml:lang': 'fr', '$': 'Enseignement coopératif'}]}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119789341',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Apprentissage par la découverte'},
              'altLabel': [{'@xml:lang': 'fr', '$': "Pédagogie par l'action"},
               {'@xml:lang': 'fr', '$': 'Pédagogie par la découverte'},
               {'@xml:lang': 'fr', '$': 'Erlebnispädagogik'},
               {'@xml:lang': 'fr', '$': "Pédagogie de l'action"},
               {'@xml:lang': 'fr', '$': 'Découverte, Apprentissage par la'},
               {'@xml:lang': 'fr', '$': "Apprentissage par l'action"},
               {'@xml:lang': 'fr', '$': 'Pédagogie de la découverte'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX548925',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Prácticas profesionales'},
           'label': {'@xml:lang': 'es', '$': 'Prácticas profesionales'},
           'altLabel': [{'@xml:lang': 'es',
             '$': 'Prácticas profesionales externas'},
            {'@xml:lang': 'es', '$': 'Prácticas tuteladas'},
            {'@xml:lang': 'es', '$': 'Practicums'},
            {'@xml:lang': 'es', '$': 'Programas de prácticas profesionales'}]},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009011',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en',
            '$': 'Study and teaching (Internship)'}},
          {'@count': '1',
           '@uri': 'http://GeoEthno#READING',
           'inScheme': 'http://GeoEthno#GeoEthno',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Reading'},
           'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE|http://GeoEthno#READING',
            'expandedLabel': {'@xml:lang': 'fr',
             '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire|Reading'}},
           'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BERKSHIRE',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Berkshire'},
             'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE',
              'expandedLabel': {'@xml:lang': 'fr',
               '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire'}}}}},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb133183540',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Livres et lecture'},
           'altLabel': [{'@xml:lang': 'fr', '$': 'Lectures'},
            {'@xml:lang': 'fr', '$': 'Lecture, Choix de'},
            {'@xml:lang': 'fr', '$': 'Lecture littéraire'},
            {'@xml:lang': 'fr', '$': 'Habitudes de lecture'},
            {'@xml:lang': 'fr', '$': 'Lectorat'},
            {'@xml:lang': 'fr', '$': 'Choix de lecture'},
            {'@xml:lang': 'fr', '$': 'Évaluation des livres'},
            {'@xml:lang': 'fr', '$': 'Lecteurs de livres'}],
           'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318807v',
             'prefLabel': {'@xml:lang': 'fr', '$': 'Éducation'},
             'altLabel': {'@xml:lang': 'fr', '$': 'Scolarisation'}}}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh99004859',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'Books and reading'},
           'altLabel': [{'@xml:lang': 'en', '$': 'Reading habits'},
            {'@xml:lang': 'en', '$': 'Books for'},
            {'@xml:lang': 'en', '$': 'Reading interests'}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX4596812',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'label': {'@xml:lang': 'es', '$': 'Libros y lectura'},
           'altLabel': [{'@xml:lang': 'es', '$': 'Afición a la lectura'},
            {'@xml:lang': 'es', '$': 'Hábitos de lectura'},
            {'@xml:lang': 'es', '$': 'Lectores'},
            {'@xml:lang': 'es', '$': 'Lectura y libros'},
            {'@xml:lang': 'es', '$': 'Libros--Apreciación'}]},
          {'@count': '1',
           '@uri': 'http://data.bnf.fr/ark:/12148/cb119322773',
           'inScheme': 'http://rameau.bnf.fr/',
           'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature française'},
           'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953151s'}},
            {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12083177p',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature francophone'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Littérature de langue française'},
               {'@xml:lang': 'fr', '$': "Littérature d'expression française"},
               {'@xml:lang': 'fr', '$': 'Littératures francophones'}]}}]},
          {'@count': '1',
           '@uri': 'http://datos.bne.es/resource/XX529303',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'es', '$': 'Literatura francesa'},
           'label': {'@xml:lang': 'es', '$': 'Literatura francesa'}},
          {'@count': '1',
           '@uri': 'http://id.loc.gov/authorities/subjects/sh85051865',
           '@origin': 'rameau',
           'prefLabel': {'@xml:lang': 'en', '$': 'French literature'}}]},
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fre'}},
     {'@uri': '10670/1.13oeit',
      'isidore': {'title': [{'@xml:lang': 'en',
         '$': "Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons"},
        {'@xml:lang': 'fr',
         '$': 'Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements'}],
       'url': 'https://tel.archives-ouvertes.fr/tel-01695576',
       'enrichedCreators': {'creator': {'@origin': 'Meng, Qingya',
         '@normalizedAuthor': 'Meng, Qingya',
         '@idAuthor': 'meng_qingya',
         'firstname': 'Qingya',
         'lastname': 'Meng',
         'title': [],
         'sameAs': {'idref': '223782645'}}},
       'date': {'@origin': '2017-12-08',
        '@startDate': '2017-12-08',
        '@endDate': '2017-12-08',
        '@treeDate': '2000/2010/2017',
        'normalizedDate': '2017-12-08',
        'centuries': {'@start': '1200', '@end': '2100', 'century': '2000'},
        'decades': {'@start': '1800', '@end': '2030', 'decade': '2010'},
        'years': {'@start': '1950', '@end': '2030', 'year': '2017'}},
       'ore': {'aggregates': [{'@thumbnail': 'false',
          '@crawl': 'false',
          '$': 'https://tel.archives-ouvertes.fr/tel-01695576'},
         {'@thumbnail': 'true',
          '@crawl': 'true',
          '@thumbnailId': '15178708',
          '$': 'https://tel.archives-ouvertes.fr/tel-01695576/document'},
         {'@thumbnail': 'false',
          '@crawl': 'true',
          '$': 'https://tel.archives-ouvertes.fr/tel-01695576/file/2017_MENG_arch.pdf'}],
        'similar': ['NNT: 2017MON30024', 'tel-01695576']},
       'subjects': {'subject': [{'@xml:lang': 'en', '$': 'Tel Quel'},
         {'@xml:lang': 'en', '$': 'Trip to China'},
         {'@xml:lang': 'en', '$': 'Sollers'},
         {'@xml:lang': 'en', '$': 'Kristeva'},
         {'@xml:lang': 'en', '$': 'Pleynet'},
         {'@xml:lang': 'en', '$': 'Barthes'},
         {'@xml:lang': 'fr', '$': 'Kristeva'},
         {'@xml:lang': 'fr', '$': 'Sollers'},
         {'@xml:lang': 'fr', '$': 'Voyage en Chine'},
         {'@xml:lang': 'fr', '$': 'Tel Quel'},
         {'@xml:lang': 'fr', '$': 'Pleynet'},
         {'@xml:lang': 'fr', '$': 'Barthes'},
         '[SHS.LITT]Humanities and Social Sciences/Literature']},
       'abstract': [{'@xml:lang': 'en',
         '$': "This thesis is devoted to the trip to China made by Philippe Sollers, Julia Kristeva, Marcelin Pleynet, Roland Barthes and François Wahl in 1974. This study mainly concerns the heterogeneity of all the publications about their stay in Mao’s country in full Cultural Revolution, including essays, novels, travel journal, press articles and travel notes. In the first part of the study, we seek to understand how the members of the literary magazine Tel Quel dreamed to China, which they considered to be both ancient and modern before the travel. In the second part, we examine each text of the corpus to see the difficulties faced by the authors when they tried to account for the real China, including the imposed ideology. In the third part, we aim to ask how the trip in Communist China becomes an unforgettable memory in these travelers’ text. The more time goes by, the more travel memories reappear. In addition, we study Barthes to understand how he lived during his stay in China, why he kept silent after he returned, and why he didn't publish his notebooks of the trip before his death. At the end of the thesis, the unprecedented reading of texts of the corpus presents a key-word, the “insipidity of China”, a metaphor that is most trued to describe the middle Empire."},
        {'@xml:lang': 'fr',
         '$': 'La thèse est consacrée au voyage en Chine (1974) de Philippe Sollers, Julia Kristeva et Marcelin Pleynet, représentants de la revue Tel Quel, avec Roland Barthes et son éditeur François Wahl. La question principale porte sur l’hétérogénéité des textes rédigés à propos de leur séjour au pays de Mao en pleine Révolution culturelle. Les publications correspondent à différents genres textuels : essais, romans, chroniques du journal, articles de presse et carnets de voyage. Avant le départ, les écrivains fantasment sur la Chine ancienne et contemporaine. C’est ce qui fait l’objet de la première partie de la thèse. Dans la seconde partie, il s’agit d’interroger les textes du corpus qui mettent en lumière les difficultés liées à l’idéologie imposée et vécue par les auteurs pour rendre compte du réel en Chine. La troisième partie portant sur les enseignements du voyage montre que ce dernier réapparaît sous forme de souvenirs inoubliables dans plusieurs textes des écrivains. Plus on s’éloigne de 1974, et plus la mémoire individuelle réactive de façon aléatoire le temps du voyage. Pour Barthes, il s’agit de savoir comment il a vécu la Chine, pourquoi il a gardé le silence à son retour, pourquoi il n’a pas cherché à publier les carnets de notes rapportés de son séjour. La thèse s’achève sur une lecture inédite des œuvres du corpus à travers un mot clé « la fadeur de la Chine ». Cette image est la plus vraie pour décrire l’Empire du Milieu mais elle n’est pas celle que les voyageurs s’attendaient à rencontrer.'}],
       'types': {'type': ['info:eu-repo/semantics/doctoralThesis', 'Theses']},
       'source_info': {'collectionLabel': {'@shortLabel': 'HAL',
         '@handle': '10670/3.1g5thk',
         '@collectionUuid': '013331e9-2688-44ff-a7c5-4a03c532d177',
         '$': 'Archives ouvertes'},
        'collectionOrganization': {'@organizationUrl': 'http://www.ccsd.cnrs.fr',
         '$': 'Centre pour la communication scientifique directe'},
        'collectionURLMainSite': {'@thumbnaiId': '4778217',
         '$': 'https://halshs.archives-ouvertes.fr'},
        'collectionInformations': {'collectionDescription': "L'archive ouverte HAL (Hyper Article en Ligne) se présente comme une bibliothèque numérique recevant et diffusant les productions intellectuelles de la Recherche. HAL est mise en œuvre par le Centre pour la communication scientifique directe.",
         'collectionCountry': 'FR',
         'collectionUrlLogo': 'https://halshs.archives-ouvertes.fr/public/HALSHS.gif',
         'collectionContactEmailAddress': 'halshs@ccsd.cnrs.fr'},
        'collectionParameters': {'collectionNamingAuthority': 'false',
         'collectionRDFVisible': 'true'},
        'source_type': 'sources_oai_pmh',
        'sourceTaxo': {'@uri': '10670/3.1g5thk|10670/2.u70gbe',
         '$': 'Archives ouvertes#TEL'},
        'sourceCode': {'@handle': '10670/2.u70gbe',
         '$': '129cac09-edf0-4113-a42e-32c93c7068b7'},
        'sourceName': {'@shortLabel': 'TEL',
         '$': 'Le serveur TEL (thèses-en-ligne)'},
        'sourceDataType': 'Article',
        'sourceWebSiteURL': {'@thumbnaiId': '4778219',
         '$': 'https://tel.archives-ouvertes.fr'},
        'sourceScope': {'@uri': 'http://isidore.science/subject/publications',
         '$': 'Publications'},
        'sourceType': 'Archive ouverte',
        'sourceDescription': "Le serveur TEL (thèses-en-ligne) a pour objectif de promouvoir l'auto-archivage en ligne des thèses de doctorat et habilitations à diriger des recherches (HDR), qui sont des documents importants pour la communication scientifique entre chercheurs. TEL est un environnement particulier de HAL et permet donc, comme HAL, de rendre rapidement et gratuitement disponibles des documents scientifiques, mais en se spécialisant aux thèses de doctorat et HDR.",
        'sourceOrganization': {'label': 'Centre pour la communication scientifique directe',
         'URI': 'http://www.ccsd.cnrs.fr',
         'isoCountry': 'FR'},
        'sourceParameters': {'baseUrl': 'http://api.archives-ouvertes.fr/oai/tel/',
         'crawlingFrequency': '60',
         'followOnRedirect': 'true',
         'indexableFile': 'true',
         'userAgent': 'CNRS/TGE-Adonis/Isidore',
         'CTYPatterns': {'person': '%n, %p', 'dates': {'date': 'YYYY_MM_DD'}},
         'CTYVerificationMode': 'strict',
         'forceIndexing': 'false'}},
       'enrichment': {'items': [{'@type': 'ISIDORE_TYPE_FACET',
          'item': {'@uri': 'http://isidore.science/ontology#thesis',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Mémoires, Thèses et HDR'},
            {'@xml:lang': 'en', '$': 'Thesis'},
            {'@xml:lang': 'es', '$': 'Tesis'}]}},
         {'@type': 'ISIDORE_SOURCE_TYPE_FACET',
          'item': {'@uri': 'http://www.rechercheisidore.fr/ontology#other',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Autres'},
            {'@xml:lang': 'en', '$': 'Others'},
            {'@xml:lang': 'es', '$': 'Otros'}]}},
         {'@type': 'ISIDORE_SCOPE_FACET',
          'item': {'@uri': 'http://isidore.science/subject/publications',
           'prefLabel': [{'@xml:lang': 'fr', '$': 'Publications'},
            {'@xml:lang': 'en', '$': 'Publications'},
            {'@xml:lang': 'es', '$': 'Publicaciones'}]}},
         {'@type': 'ISIDORE_LANG',
          'item': {'@uri': 'http://lexvo.org/id/iso639-3/fra',
           'prefLabel': [{'@xml:lang': 'en', '$': 'French'},
            {'@xml:lang': 'fr', '$': 'Français'},
            {'@xml:lang': 'es', '$': 'Idioma francés'}]}}],
        'concepts': [{'@type': 'ISIDORE_DC_SUBJECT',
          'concept': [{'@count': '6',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11978431m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb165537089',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité spatiale'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Mobilité géographique'},
               {'@xml:lang': 'fr', '$': 'Déplacements'}]}}},
           {'@count': '6',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137149',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Travel'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Traveling'},
             {'@xml:lang': 'en', '$': 'Travelling'}]},
           {'@count': '6',
            '@uri': 'http://datos.bne.es/resource/XX5251191',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Viaje'},
            'label': {'@xml:lang': 'es', '$': 'Viaje'}},
           {'@count': '6',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/8658',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viajes'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Moving from one place to another generally by using a transportation mean.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/8582',
              'prefLabel': [{'@xml:lang': 'en', '$': 'traffic'},
               {'@xml:lang': 'es', '$': 'tráfico'},
               {'@xml:lang': 'fr', '$': 'trafic'}],
              'definition': {'@xml:lang': 'en',
               '$': '1) The movement of vehicles, ships, aircraft, persons, etc., in an area or over a route. 2) The vehicles, persons, etc., moving in an area or over a route.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4767'}},
           {'@count': '6',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'travel'},
             {'@xml:lang': 'es', '$': 'viaje'},
             {'@xml:lang': 'fr', '$': 'voyage'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa|http://ark.frantiq.fr/ark:/26678/pcrtIT6frznjgL',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|vie économique|commerce|route commerciale|voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'route commerciale'},
               {'@xml:lang': 'es', '$': 'ruta comercial'},
               {'@xml:lang': 'en', '$': 'trade-route'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtafV5Xq6zoY|http://ark.frantiq.fr/ark:/26678/pcrthOtrQhBIUG|http://ark.frantiq.fr/ark:/26678/pcrtwblvfjuafa'}}}},
           {'@count': '6',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyage'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341|http://data.culture.fr/thesaurus/resource/ark:/67717/439e7bd5-673a-48db-9c76-1a5ebd77e42e',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '061 Sociologie - population - loisirs|Population|Mobilité|Voyage'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Mobilité'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2145|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1625|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1341'}}}},
           {'@count': '6',
            '@uri': 'http://GeoEthno#CHINE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
             {'@xml:lang': 'es', '$': 'China'},
             {'@xml:lang': 'en', '$': 'China'}],
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Première République chinoise (1912-1949)'},
             {'@xml:lang': 'en', '$': 'Republic of China (1912-1949)'},
             {'@xml:lang': 'fr', '$': 'République de Chine (1912-1949)'}],
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE',
             'expandedLabel': [{'@xml:lang': 'fr',
               '$': 'Asie|Asie orientale|Chine'},
              {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|China'},
              {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|China'}]},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#ASIE_ORIENTALE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Asie orientale'},
               {'@xml:lang': 'es', '$': 'Asia Oriental'},
               {'@xml:lang': 'en', '$': 'Eastern Asia'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'Extrême-Orient'},
               {'@xml:lang': 'fr', '$': "Asie de l'Est"},
               {'@xml:lang': 'es', '$': 'Este de Asia'},
               {'@xml:lang': 'es', '$': 'Asia del Este'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental'}]}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12113910b',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Enseignements'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Leçons'},
             {'@xml:lang': 'fr', '$': 'Préceptes'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2001009094',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Teachings'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb167407975',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Publications'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Documents publiés'},
             {'@xml:lang': 'fr', '$': 'Publications imprimées'},
             {'@xml:lang': 'fr', '$': 'Écrits publiés'},
             {'@xml:lang': 'fr', '$': 'Ouvages publiés'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2004003366',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Publications'},
            'altLabel': {'@xml:lang': 'en', '$': 'Published material'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11965103m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Country'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Western music'},
             {'@xml:lang': 'fr', '$': 'Musique country'},
             {'@xml:lang': 'fr', '$': 'Western and country music'},
             {'@xml:lang': 'fr', '$': 'Musique hillbilly'},
             {'@xml:lang': 'fr', '$': 'Chansons country'},
             {'@xml:lang': 'fr', '$': 'Country music'},
             {'@xml:lang': 'fr', '$': 'Country (musique)'},
             {'@xml:lang': 'fr', '$': 'Hillbilly music'},
             {'@xml:lang': 'fr', '$': 'Musique western'},
             {'@xml:lang': 'fr', '$': 'Country and western music'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119387308',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Musique populaire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Musique de variétés'},
                {'@xml:lang': 'fr', '$': 'Chansons populaires'},
                {'@xml:lang': 'fr', '$': 'Chants populaires'},
                {'@xml:lang': 'fr', '$': 'Palmarès de la chanson'},
                {'@xml:lang': 'fr', '$': 'Chanson populaire'},
                {'@xml:lang': 'fr', '$': 'Variétés (musique)'},
                {'@xml:lang': 'fr', '$': 'Musiques populaires'},
                {'@xml:lang': 'fr', '$': 'Musiques actuelles'},
                {'@xml:lang': 'fr', '$': 'Hit parade'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11981730m'}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX536714',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Country'},
            'label': {'@xml:lang': 'es', '$': 'Country'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Country (Música)'},
             {'@xml:lang': 'es', '$': 'Hillbilly (Música)'},
             {'@xml:lang': 'es', '$': 'Música country'},
             {'@xml:lang': 'es', '$': 'Música hillbilly'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85033470',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Country music'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Western and country music'},
             {'@xml:lang': 'en', '$': 'Country and western music'},
             {'@xml:lang': 'en', '$': 'Country music--United States'},
             {'@xml:lang': 'en', '$': 'Hillbilly music'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb144972893',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Gloses'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Gloses marginales'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Gloses (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Gloses interlinéaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb13318362m',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Manuscrits'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Ouvrages manuscrits'},
                {'@xml:lang': 'fr', '$': 'Livres manuscrits'},
                {'@xml:lang': 'fr', '$': 'Documents manuscrits'}]}}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12047425d',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes marginales'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Marginalia'},
             {'@xml:lang': 'fr', '$': 'Apostilles'},
             {'@xml:lang': 'fr', '$': 'Manchettes'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
               {'@xml:lang': 'fr', '$': 'Épitexte'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85081056',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Marginalia'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Marginal notes'},
             {'@xml:lang': 'en', '$': 'Notes, Marginal'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11977203k',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Prise de notes'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes, Prise de'},
             {'@xml:lang': 'fr', '$': 'Notes'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11953339g'}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119346301',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Reportage'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Enquêtes radiodiffusées'},
                {'@xml:lang': 'fr', '$': 'Téléreportage'},
                {'@xml:lang': 'fr', '$': 'Radioreportage'},
                {'@xml:lang': 'fr', '$': 'Grand reportage'},
                {'@xml:lang': 'fr', '$': 'Reportage et reporters'},
                {'@xml:lang': 'fr', '$': 'Enquêtes télévisées'},
                {'@xml:lang': 'fr', '$': 'Reportages'},
                {'@xml:lang': 'fr',
                 '$': 'Enquête sur le terrain (journalisme)'}]}}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092791',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Note-taking'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Taking notes'},
             {'@xml:lang': 'en', '$': 'Notetaking'},
             {'@xml:lang': 'en', '$': 'Keeping notes'},
             {'@xml:lang': 'en', '$': 'Notekeeping'}]},
           {'@count': '2',
            '@uri': 'http://datos.bne.es/resource/XX549927',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'label': {'@xml:lang': 'es', '$': 'Toma de apuntes'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Apuntes, Toma de'},
             {'@xml:lang': 'es', '$': 'Notas, Toma de'},
             {'@xml:lang': 'es', '$': 'Toma de notas'},
             {'@xml:lang': 'es', '$': 'Tomar apuntes'}]},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13187149q',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes en bas de page'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Notes'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de chapitre'},
             {'@xml:lang': 'fr', '$': 'Annotations'},
             {'@xml:lang': 'fr', '$': 'Notes en fin de volume'},
             {'@xml:lang': 'fr', '$': 'Notes critiques'},
             {'@xml:lang': 'fr', '$': 'Éclaircissements et notes'},
             {'@xml:lang': 'fr', '$': 'Notes et éclaircissements'},
             {'@xml:lang': 'fr', '$': 'Notes de bas de page'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133193605',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Paratexte'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Péritexte'},
                {'@xml:lang': 'fr', '$': 'Épitexte'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119474908',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Édition savante'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Édition académique'},
                {'@xml:lang': 'fr', '$': 'Édition universitaire'}]}}]},
           {'@count': '4',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'corpus'},
             {'@xml:lang': 'es', '$': 'corpus'},
             {'@xml:lang': 'fr', '$': 'corpus'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf|http://ark.frantiq.fr/ark:/26678/pcrt0SEeMmB4DY',
             'expandedLabel': {'@xml:lang': 'es',
              '$': 'Tema|metodología|análisis documental|instrumento documental|corpus'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Ensemble de documents servant de base à la description ou à l'étude d'un phénomène. (Grand Lar. Encycl. 1960)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
              'prefLabel': [{'@xml:lang': 'en', '$': 'documentary tool'},
               {'@xml:lang': 'es', '$': 'instrumento documental'},
               {'@xml:lang': 'fr', '$': 'outil documentaire'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtdUvEkSeyqH|http://ark.frantiq.fr/ark:/26678/pcrtJmrHLDqtoN|http://ark.frantiq.fr/ark:/26678/pcrtfvlRt9h5Lf',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|méthodologie|analyse documentaire|outil documentaire'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Instrument servant à traiter, organiser, classer des informations.'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976283t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Addition'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119762547',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Barèmes'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Calculateurs'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11930953j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Arithmétique'}}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85000817',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Addition'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#READING',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Reading'},
            'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE|http://GeoEthno#READING',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire|Reading'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#BERKSHIRE',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Berkshire'},
              'expanded': {'@uri': 'http://GeoEthno#EUROPE|http://GeoEthno#EUROPE_SEPTENTRIONALE|http://GeoEthno#ROYAUME-UNI|http://GeoEthno#ANGLETERRE|http://GeoEthno#ANGLETERRE_DU_SUD-EST|http://GeoEthno#BERKSHIRE',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Europe|Europe septentrionale|Royaume-Uni|Angleterre|Angleterre du Sud-Est|Berkshire'}}}}},
           {'@count': '2',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1gL0hsgQTY',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'empire'},
             {'@xml:lang': 'fr', '$': 'empire'},
             {'@xml:lang': 'es', '$': 'imperio'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY|http://ark.frantiq.fr/ark:/26678/pcrt1gL0hsgQTY',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|politique|régime politique|monarchie|empire'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Gouvernement par un empereur (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'monarchie'},
               {'@xml:lang': 'en', '$': 'monarchy'},
               {'@xml:lang': 'es', '$': 'monarquía'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrteEToGsDUrL|http://ark.frantiq.fr/ark:/26678/pcrtLaK7qbSoDY',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|politique|régime politique|monarchie'}},
              'definition': {'@xml:lang': 'fr',
               '$': "Gouvernement d'un Etat régi par un seul chef (Lar.)"}}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936603m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Empire'},
            'altLabel': {'@xml:lang': 'fr', '$': "Idée d'empire"},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb16044793j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Hégémonie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Prépondérance'},
                {'@xml:lang': 'fr', '$': 'Suprématie'},
                {'@xml:lang': 'fr', '$': 'Hégémonisme'},
                {'@xml:lang': 'fr', '$': 'Supériorité'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12650518z',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Monarchie'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Royauté'},
                {'@xml:lang': 'fr', '$': 'Souverains'},
                {'@xml:lang': 'fr', '$': 'Gouvernement monarchique'}]}}]},
           {'@count': '3',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/13026',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'thesis'},
             {'@xml:lang': 'es', '$': 'tesis'},
             {'@xml:lang': 'fr', '$': 'thèse'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A dissertation on a particular subject, in which original research has been done, usually by a candidate for a diploma or degree, or a proposition put forward for consideration, to be discussed and proved or maintained against objections.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/2286',
              'prefLabel': [{'@xml:lang': 'en', '$': 'document type'},
               {'@xml:lang': 'es', '$': 'tipo de documento'},
               {'@xml:lang': 'fr', '$': 'type de document'}],
              'definition': {'@xml:lang': 'en',
               '$': 'Any one of a number of diverse classes of written, printed or digitized items furnishing information or evidence, and distinguished by content, form or function.'}}},
            'exactMatch': {'@uri': 'http://eurovoc.europa.eu/4456'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4otVkR3bqD',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'door'},
             {'@xml:lang': 'fr', '$': 'porte'},
             {'@xml:lang': 'es', '$': 'puerta'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG|http://ark.frantiq.fr/ark:/26678/pcrt4otVkR3bqD'},
            'definition': {'@xml:lang': 'fr',
             '$': "Ouverture pratiquée dans un des plans verticaux qui limitent un espace clos, permettant la communication entre cet espace et ce qui est extérieur à cet espace, et pouvant être obturée par un panneau mobile; ensemble formé par cette ouverture et le moyen de fermeture; espace, obturé ou non, délimité par l'encadrement de cette ouverture (ATLIF)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG',
              'prefLabel': [{'@xml:lang': 'es', '$': 'parte de monumento'},
               {'@xml:lang': 'fr', '$': 'partie de monument'},
               {'@xml:lang': 'en', '$': 'part of building'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtKJVpuP3AET|http://ark.frantiq.fr/ark:/26678/pcrtDlzbGxWvTo|http://ark.frantiq.fr/ark:/26678/pcrt53FsGe90uG'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Utilisé seulement pour les parties de monument qui ne sont pas liées à un type de monument (BL)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1630',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Porte'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Portail'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1630',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '010 Construction|Construction|Technologie de la construction|Second œuvre|Fermeture|Porte'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Fermeture'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Persienne'},
               {'@xml:lang': 'fr', '$': 'Grille de protection'},
               {'@xml:lang': 'fr', '$': 'Store'},
               {'@xml:lang': 'fr', '$': 'Volet'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2127|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-576|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1931|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1828|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-925'}}}},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119759914',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Textes'}},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001991',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Texts'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4599',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'land'},
             {'@xml:lang': 'es', '$': 'tierra'},
             {'@xml:lang': 'fr', '$': 'pays'}],
            'definition': {'@xml:lang': 'en',
             '$': "A specified geographical tract of the Earth's surface including all its attributes, comprising its geology, superficial deposits, topography, hydrology, soils, flora and fauna, together with the results of past and present human activity, to the extent that these attributes exert a significant influence on the present and future land utilization."}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb16570175g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'États'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'États souverains'},
             {'@xml:lang': 'fr', '$': 'Pays'},
             {'@xml:lang': 'fr', '$': 'Puissances'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11955453s',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Géographie politique'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11935877g',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique musicale'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Musique et informatique'},
             {'@xml:lang': 'fr', '$': 'Informatique et musique'},
             {'@xml:lang': 'fr', '$': 'Ordinateurs et musique'},
             {'@xml:lang': 'fr', '$': 'Musique et ordinateurs'},
             {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'MAO'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11932109b',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Traitement des données'},
                {'@xml:lang': 'fr',
                 '$': "Information, Traitement électronique de l'"},
                {'@xml:lang': 'fr', '$': 'Traitement intégré des données'},
                {'@xml:lang': 'fr',
                 '$': "Traitement électronique de l'information"},
                {'@xml:lang': 'fr', '$': 'Informatisation'},
                {'@xml:lang': 'fr', '$': 'Gestion des données'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb133183660',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Musique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres musicales'},
                {'@xml:lang': 'fr', '$': 'Art musical'},
                {'@xml:lang': 'fr', '$': 'Musique classique'},
                {'@xml:lang': 'fr', '$': 'Chants et musique'},
                {'@xml:lang': 'fr', '$': 'Musique savante'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85088783',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Music--Data processing'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX651689',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Música--Proceso de datos'},
            'label': {'@xml:lang': 'es', '$': 'Música--Proceso de datos'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#MAO',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mao'},
            'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#TCHAD|http://GeoEthno#REGION_DU_KANEM|http://GeoEthno#MAO',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Afrique|Afrique centrale|Tchad|Région du Kanem|Mao'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#REGION_DU_KANEM',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Région du Kanem'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Kânem'},
               {'@xml:lang': 'fr', '$': 'Kanem'}],
              'expanded': {'@uri': 'http://GeoEthno#AFRIQUE|http://GeoEthno#AFRIQUE_CENTRALE|http://GeoEthno#TCHAD|http://GeoEthno#REGION_DU_KANEM',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Afrique|Afrique centrale|Tchad|Région du Kanem'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11946083n',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Musique par ordinateur'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Musique algorithmique'},
             {'@xml:lang': 'fr', '$': 'Musique générée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'Ordinateurs, Musique par'},
             {'@xml:lang': 'fr', '$': 'MAO'},
             {'@xml:lang': 'fr', '$': 'Musique sur ordinateur'},
             {'@xml:lang': 'fr', '$': 'Musique numérique'},
             {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935877g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Informatique musicale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Musique et informatique'},
                {'@xml:lang': 'fr', '$': 'Informatique et musique'},
                {'@xml:lang': 'fr', '$': 'Ordinateurs et musique'},
                {'@xml:lang': 'fr', '$': 'Musique et ordinateurs'},
                {'@xml:lang': 'fr', '$': 'Musique assistée par ordinateur'},
                {'@xml:lang': 'fr', '$': 'MAO'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb121323832',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Musique électroacoustique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Musique électroacoustique sur support'},
                {'@xml:lang': 'fr', '$': 'Musiques électroacoustiques'},
                {'@xml:lang': 'fr', '$': 'Électroacoustique (musique)'},
                {'@xml:lang': 'fr', '$': 'Musique pour bande magnétique'},
                {'@xml:lang': 'fr', '$': 'Bandes magnétiques, Musique pour'},
                {'@xml:lang': 'fr',
                 '$': 'Musique électroacoustique sur bande'},
                {'@xml:lang': 'fr', '$': 'Musique sur bande magnétique'},
                {'@xml:lang': 'fr', '$': 'Musique électro-acoustique'},
                {'@xml:lang': 'fr', '$': 'Musique électronique'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85029511',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Computer music'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Music, Computer'},
             {'@xml:lang': 'en', '$': 'Electroacoustic music'},
             {'@xml:lang': 'en', '$': 'Electro-acoustic music'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb13162962h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Maintenance automatisée'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Autodiagnostic'},
             {'@xml:lang': 'fr', '$': "Équipement d'essai incorporé"},
             {'@xml:lang': 'fr', '$': 'Maintenance assistée par ordinateur'},
             {'@xml:lang': 'fr', '$': 'MAO'},
             {'@xml:lang': 'fr', '$': 'GMAO'},
             {'@xml:lang': 'fr', '$': 'Auto-diagnostic'},
             {'@xml:lang': 'fr',
              '$': 'Mise au point automatique, Appareils et matériels de'},
             {'@xml:lang': 'fr',
              '$': 'Appareils de mise au point automatique'},
             {'@xml:lang': 'fr', '$': "Équipement d'essai automatique"}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11972980r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Automatisation'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Automation'},
                {'@xml:lang': 'fr', '$': 'Production automatique'},
                {'@xml:lang': 'fr', '$': 'Systèmes automatisés'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11966598g',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Contrôle non destructif'},
               'altLabel': {'@xml:lang': 'fr',
                '$': 'Essais non destructifs'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119824661'}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85010085',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Automatic test equipment'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Built-in test equipment'},
             {'@xml:lang': 'en', '$': 'ACE (Automatic checkout equipment)'},
             {'@xml:lang': 'en', '$': 'ATE (Automatic test equipment)'},
             {'@xml:lang': 'en', '$': 'Automatic checkout equipment'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119523277',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Révolutions'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Révolutions politiques'},
             {'@xml:lang': 'fr', '$': 'Révolution'},
             {'@xml:lang': 'fr', '$': 'Mouvements révolutionnaires'},
             {'@xml:lang': 'fr', '$': 'Soulèvements'},
             {'@xml:lang': 'fr', '$': 'Insurrections'},
             {'@xml:lang': 'fr', '$': 'Rébellions'},
             {'@xml:lang': 'fr', '$': 'Guerres révolutionnaires'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb12534189r',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Violence politique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Politique et violence'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
                {'@xml:lang': 'fr', '$': 'Sciences historiques'},
                {'@xml:lang': 'fr', '$': 'Science historique'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb15846779q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Conflit (sociologie)'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Sociologie du conflit'},
                {'@xml:lang': 'fr', '$': 'Situations conflictuelles'},
                {'@xml:lang': 'fr', '$': 'Conflits (sociologie)'},
                {'@xml:lang': 'fr', '$': 'Affrontement (relations humaines)'},
                {'@xml:lang': 'fr', '$': 'Affrontements'},
                {'@xml:lang': 'fr', '$': 'Antagonismes'},
                {'@xml:lang': 'fr', '$': 'Situation conflictuelle'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85113507',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Revolutions'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Insurrections'},
             {'@xml:lang': 'en', '$': 'Revolutionary wars'},
             {'@xml:lang': 'en', '$': 'Revolts'},
             {'@xml:lang': 'en', '$': 'Rebellions'}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524516',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Revoluciones'},
            'label': {'@xml:lang': 'es', '$': 'Revoluciones'},
            'altLabel': {'@xml:lang': 'es', '$': 'Revoluciones políticas'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'revolución'},
             {'@xml:lang': 'en', '$': 'revolution'},
             {'@xml:lang': 'fr', '$': 'révolution'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A|http://ark.frantiq.fr/ark:/26678/pcrtSfjHnxl8BK'},
            'definition': {'@xml:lang': 'fr',
             '$': "Changement plus ou moins brusque dans la structure économique, sociale et politique d'un Etat (Lar.)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A',
              'prefLabel': [{'@xml:lang': 'es', '$': 'disturbios'},
               {'@xml:lang': 'fr', '$': 'troubles'},
               {'@xml:lang': 'en', '$': 'unrest'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'émeute'},
               {'@xml:lang': 'fr', '$': 'soulèvement'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtQdSP02tK3w|http://ark.frantiq.fr/ark:/26678/pcrtuko1lHj3P3|http://ark.frantiq.fr/ark:/26678/pcrtH7HBqeyy2A'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Soulèvement populaire, émeute (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119767836',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Essais'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99005648',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Testing'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11940505s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Roman'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Genre romanesque'},
             {'@xml:lang': 'fr', '$': 'Fiction (littérature)'},
             {'@xml:lang': 'fr', '$': 'Littérature romanesque'},
             {'@xml:lang': 'fr', '$': 'Récits'},
             {'@xml:lang': 'fr', '$': 'Romans'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
               {'@xml:lang': 'fr', '$': 'Littérature universelle'},
               {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001562',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Fiction'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Legends and stories'},
             {'@xml:lang': 'en', '$': 'Novels'},
             {'@xml:lang': 'en', '$': 'Stories'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11954066s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chroniques'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Annales'},
             {'@xml:lang': 'fr', '$': 'Chroniques (historiographie)'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11939456c',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Littérature'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Oeuvres littéraires'},
                {'@xml:lang': 'fr', '$': 'Littérature universelle'},
                {'@xml:lang': 'fr', '$': 'Belles-lettres'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119344445',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Analyse historique'},
                {'@xml:lang': 'fr', '$': 'Sciences historiques'},
                {'@xml:lang': 'fr', '$': 'Science historique'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb15611232h',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Articles de périodiques'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': "Recueils d'articles de périodiques"},
             {'@xml:lang': 'fr', '$': 'Articles de revues'},
             {'@xml:lang': 'fr', '$': 'Articles de presse'},
             {'@xml:lang': 'fr', '$': 'Articles (publications)'},
             {'@xml:lang': 'fr', '$': 'Articles de journaux'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933071q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Périodiques'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Magazines'},
               {'@xml:lang': 'fr', '$': 'Revues (publications)'},
               {'@xml:lang': 'fr', '$': 'Hebdomadaires'}]}}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11979168c',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Notes, esquisses, etc.'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Carnets'}]},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001659',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en',
             '$': 'Notebooks, sketchbooks, etc'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sketchbooks'}},
           {'@count': '2',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb12369740j',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Cahiers'},
            'altLabel': [{'@xml:lang': 'fr', '$': "Cahiers d'exercices"},
             {'@xml:lang': 'fr', '$': 'Calepins'},
             {'@xml:lang': 'fr', '$': 'Notes (recueils)'},
             {'@xml:lang': 'fr', '$': 'Bloc-notes'},
             {'@xml:lang': 'fr', '$': 'Mémorandums (cahiers)'},
             {'@xml:lang': 'fr', '$': 'Esquisses'},
             {'@xml:lang': 'fr', '$': 'Mémentos'},
             {'@xml:lang': 'fr', '$': 'Carnets'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119322951',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Livres'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Livres imprimés'},
               {'@xml:lang': 'fr', '$': 'Livre'}]}}},
           {'@count': '2',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85092792',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Notebooks'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Exercise books'},
             {'@xml:lang': 'en', '$': 'Sketchbooks'}]},
           {'@count': '3',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936327s',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Écrivains'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Auteurs'},
             {'@xml:lang': 'fr', '$': 'Gens de lettres'},
             {'@xml:lang': 'fr', '$': 'Hommes de lettres'}]},
           {'@count': '3',
            '@uri': 'http://datos.bne.es/resource/XX526944',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Escritores'},
            'label': {'@xml:lang': 'es', '$': 'Escritores'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Autores literarios'},
             {'@xml:lang': 'es', '$': 'Literatos'}]},
           {'@count': '3',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85009793',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Authors'},
            'altLabel': {'@xml:lang': 'en', '$': 'Writers'}},
           {'@count': '1',
            '@uri': 'http://GeoEthno#CHINE_ANCIENNE',
            'inScheme': 'http://GeoEthno#GeoEthno',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Chine ancienne'},
            'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE|http://GeoEthno#CHINE_ANCIENNE',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Asie|Asie orientale|Chine|Chine ancienne'}},
            'semanticExpansion': {'concept': {'@uri': 'http://GeoEthno#CHINE',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
               {'@xml:lang': 'es', '$': 'China'},
               {'@xml:lang': 'en', '$': 'China'}],
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Première République chinoise (1912-1949)'},
               {'@xml:lang': 'en', '$': 'Republic of China (1912-1949)'},
               {'@xml:lang': 'fr', '$': 'République de Chine (1912-1949)'}],
              'expanded': {'@uri': 'http://GeoEthno#ASIE|http://GeoEthno#ASIE_ORIENTALE|http://GeoEthno#CHINE',
               'expandedLabel': [{'@xml:lang': 'fr',
                 '$': 'Asie|Asie orientale|Chine'},
                {'@xml:lang': 'es', '$': 'Asia|Asia Oriental|China'},
                {'@xml:lang': 'en', '$': 'Asia|Eastern Asia|China'}]}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'object'},
             {'@xml:lang': 'fr', '$': 'objet'},
             {'@xml:lang': 'es', '$': 'objeto'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'objets'},
             {'@xml:lang': 'fr', '$': 'petit objet'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG',
             'expandedLabel': {'@xml:lang': 'en',
              '$': 'Themes|everyday life|goods and chattels|object'}},
            'definition': {'@xml:lang': 'fr',
             '$': "Ici son regroupées toutes les pièces perçues comme non utilitaires, à l'inverse des armes, des outils, des éléments de prestige, etc. (BL)"},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63',
              'prefLabel': [{'@xml:lang': 'en', '$': 'goods and chattels'},
               {'@xml:lang': 'es', '$': 'mobiliario'},
               {'@xml:lang': 'fr', '$': 'mobilier'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'instrumentum'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63'},
              'definition': {'@xml:lang': 'fr',
               '$': 'Terme de regroupement, voir chaque activité (BL)'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
             {'@xml:lang': 'fr', '$': 'lumière'},
             {'@xml:lang': 'es', '$': 'luz'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y|http://ark.frantiq.fr/ark:/26678/pcrtiSRhzZq5AW',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philosophie|philosophie (aspect)|éthique|bien/mal|lumière/ténèbres|lumière'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y',
              'prefLabel': [{'@xml:lang': 'en', '$': 'light/dark'},
               {'@xml:lang': 'fr', '$': 'lumière/ténèbres'},
               {'@xml:lang': 'es', '$': 'luz/tinieblas'}],
              'altLabel': [{'@xml:lang': 'fr', '$': 'lumière/ombre'},
               {'@xml:lang': 'fr', '$': 'ombre/lumière'},
               {'@xml:lang': 'fr', '$': 'ténèbres/lumière'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrt1aMM9g6EDT|http://ark.frantiq.fr/ark:/26678/pcrtYmDJJLyrRX|http://ark.frantiq.fr/ark:/26678/pcrt5jJd1RvE9Y'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119582471',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Ondes lumineuses'},
             {'@xml:lang': 'fr', '$': 'Rayons lumineux'},
             {'@xml:lang': 'fr', '$': 'Rayonnement optique'},
             {'@xml:lang': 'fr', '$': 'Rayonnement visible'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11944510b',
              'prefLabel': {'@xml:lang': 'fr',
               '$': 'Ondes électromagnétiques'},
              'altLabel': [{'@xml:lang': 'fr',
                '$': 'Rayonnement électromagnétique'},
               {'@xml:lang': 'fr', '$': 'Radioélectricité'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85076871',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Light'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525938',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Luz'},
            'label': {'@xml:lang': 'es', '$': 'Luz'}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4810',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'light'},
             {'@xml:lang': 'es', '$': 'luz'},
             {'@xml:lang': 'fr', '$': 'lumière'}],
            'definition': {'@xml:lang': 'en',
             '$': 'Electromagnetic radiation that is capable of causing a visual sensation.'},
            'semanticExpansion': [{'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/5674',
               'prefLabel': [{'@xml:lang': 'en',
                 '$': 'non-ionising radiation'},
                {'@xml:lang': 'es', '$': 'radiación no ionizante'},
                {'@xml:lang': 'fr', '$': 'rayonnement non-ionisant'}],
               'definition': {'@xml:lang': 'en',
                '$': 'Radiation that does not change the structure of atoms but does heat tissue and may cause harmful biological effects.'}}},
             {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/6884',
               'prefLabel': [{'@xml:lang': 'en', '$': 'radiation'},
                {'@xml:lang': 'es', '$': 'radiaciones'},
                {'@xml:lang': 'fr', '$': 'rayonnement'}],
               'definition': {'@xml:lang': 'en',
                '$': "Emission of any rays from either natural or man-made origins, such as radio waves, the sun's rays, medical X-rays and the fall-out and nuclear wastes produced by nuclear weapons and nuclear energy production. Radiation is usually divided between non-ionizing radiation, such as thermal radiation (heat) and light, and nuclear radiation. Non-ionizing radiation includes ultraviolet radiation from the sun which, although it can damage cells and tissues, does not involve the ionization events of nuclear radiation."}}}],
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_4322'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lumière'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1234'},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Physique'},
              'altLabel': {'@xml:lang': 'fr', '$': 'Aérodynamique'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2150|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1533',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '080 Sciences exactes et appliquées|Physique'}}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtWeWHKVeKlB',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'ideología'},
             {'@xml:lang': 'fr', '$': 'idéologie'},
             {'@xml:lang': 'en', '$': 'ideology'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j|http://ark.frantiq.fr/ark:/26678/pcrtWeWHKVeKlB',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|histoire-civilisation|idéologie'}},
            'definition': {'@xml:lang': 'fr',
             '$': 'Sciences des idées (Lar.)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'histoire-civilisation'},
               {'@xml:lang': 'es', '$': 'historia-civilización'},
               {'@xml:lang': 'en', '$': 'history-civilization'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt1glk76tP2j'},
              'definition': {'@xml:lang': 'fr',
               '$': "Concerne tout ce qui traite en général d'une civilisation, pour une période précise se référer aux PACTOLS Chronologie"}}}},
           {'@count': '1',
            '@uri': 'http://www.eionet.europa.eu/gemet/concept/4137',
            'inScheme': 'http://www.eionet.europa.eu/gemet/gemetThesaurus/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'ideology'},
             {'@xml:lang': 'es', '$': 'ideología'},
             {'@xml:lang': 'fr', '$': 'idéologie'}],
            'definition': {'@xml:lang': 'en',
             '$': 'A body of ideas that reflects the beliefs and interest of a nation, political system, etc. and underlies political action.'},
            'semanticExpansion': {'concept': {'@uri': 'http://www.eionet.europa.eu/gemet/concept/7781',
              'prefLabel': [{'@xml:lang': 'en', '$': 'social behaviour'},
               {'@xml:lang': 'es', '$': 'comportamiento social'},
               {'@xml:lang': 'fr', '$': 'comportement social'}],
              'definition': {'@xml:lang': 'en',
               '$': "A person or community's general treatment, manner of conduct or action toward others as individuals or as members of variously identified groups."}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1085',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Idéologie'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1054|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1060|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1085',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Histoire|Histoire des idées|Idéologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1060',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Histoire des idées'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11934230x',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Idéologie'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Idéologies, Théorie des'},
             {'@xml:lang': 'fr', '$': 'Théorie des idéologies'}],
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11933106j',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie politique'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Politique et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie et politique'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la politique'},
                {'@xml:lang': 'fr', '$': 'Politique, Philosophie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119569197',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie sociale'},
               'altLabel': [{'@xml:lang': 'fr',
                 '$': 'Philosophie des sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Sciences sociales et philosophie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la société'},
                {'@xml:lang': 'fr', '$': 'Philosophie et sciences sociales'},
                {'@xml:lang': 'fr', '$': 'Théorie sociale'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85064155',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Ideology'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX525132',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Ideología'},
            'label': {'@xml:lang': 'es', '$': 'Ideología'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Creencias'},
             {'@xml:lang': 'es', '$': 'Mentalidad'}]},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119579482',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Réalité'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Réel'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85111773',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reality'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX528102',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Realidad'},
            'label': {'@xml:lang': 'es', '$': 'Realidad'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Morphologie'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Forme'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1365',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '099 Mots outil|Morphologie'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2153',
              'prefLabel': {'@xml:lang': 'fr', '$': '099 Mots outil'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11976851v',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Récits personnels'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Témoignages'},
             {'@xml:lang': 'fr', '$': 'Récits de témoins'},
             {'@xml:lang': 'fr', '$': 'Carnets de guerre'},
             {'@xml:lang': 'fr', '$': 'Carnets de route'},
             {'@xml:lang': 'fr', '$': 'Histoires vécues'},
             {'@xml:lang': 'fr', '$': 'Souvenirs'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001714',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Personal narratives'},
            'altLabel': {'@xml:lang': 'en', '$': 'Narratives, Personal'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'mémoire/oubli'},
             {'@xml:lang': 'es', '$': 'memoria/olvido'},
             {'@xml:lang': 'en', '$': 'memory/oblivion'}],
            'altLabel': [{'@xml:lang': 'fr', '$': 'mémoire'},
             {'@xml:lang': 'fr', '$': 'oubli/mémoire'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz|http://ark.frantiq.fr/ark:/26678/pcrtiIZ8eHM9ct'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz',
              'prefLabel': [{'@xml:lang': 'es', '$': 'hombre'},
               {'@xml:lang': 'fr', '$': 'homme'},
               {'@xml:lang': 'en', '$': 'man'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtn0dT3guDl3|http://ark.frantiq.fr/ark:/26678/pcrtSeoIWjpBkT|http://ark.frantiq.fr/ark:/26678/pcrtUKPDSjlOdz'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb131626782',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'altLabel': {'@xml:lang': 'fr', '$': 'Oubli'},
            'exactMatch': {'@uri': 'http://aims.fao.org/aos/agrovoc/c_36912'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85083497',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Memory'},
            'altLabel': {'@xml:lang': 'en', '$': 'Retention (Psychology)'}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mémoire'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1299',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Psychologie|Mémoire'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Psychologie'},
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1695',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Psychologie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb121175090',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Aléatoire'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119339073',
               'prefLabel': {'@xml:lang': 'fr',
                '$': 'Théorie de la connaissance'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Gnoséologie'},
                {'@xml:lang': 'fr', '$': 'Philosophie de la connaissance'},
                {'@xml:lang': 'fr', '$': 'Connaissance (philosophie)'},
                {'@xml:lang': 'fr', '$': 'Connaissance, Théorie de la'}]}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11934604g',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Métaphysique'},
               'altLabel': [{'@xml:lang': 'fr', '$': 'Et la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Contribution à la métaphysique'},
                {'@xml:lang': 'fr', '$': 'Philosophie première'}]}}]},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1943',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Temps'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}]}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb133189074',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Temps'},
            'semanticExpansion': [{'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb119780754',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Astronomie sphérique'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Astronomie pratique'}}},
             {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11946909q',
               'prefLabel': {'@xml:lang': 'fr', '$': 'Longitude'},
               'altLabel': {'@xml:lang': 'fr', '$': 'Degrés de longitude'}}}]},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX524393',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Tiempo'},
            'label': {'@xml:lang': 'es', '$': 'Tiempo'},
            'altLabel': [{'@xml:lang': 'es', '$': 'Duración'},
             {'@xml:lang': 'es', '$': 'Horas (Tiempo)'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85135395',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Time'},
            'altLabel': {'@xml:lang': 'en', '$': 'Hours (Time)'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'knowledge'},
             {'@xml:lang': 'es', '$': 'saber'},
             {'@xml:lang': 'fr', '$': 'savoir'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrt4gr80Hd4Bm'},
            'semanticExpansion': {'concept': {'@uri': 'http://pactols.frantiq.fr/#6',
              'prefLabel': [{'@xml:lang': 'fr', '$': 'Sujets'},
               {'@xml:lang': 'en', '$': 'Themes'},
               {'@xml:lang': 'es', '$': 'Tema'}]}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtfKnVWnMTiS',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'silence'},
             {'@xml:lang': 'fr', '$': 'silence'},
             {'@xml:lang': 'es', '$': 'silencio'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw|http://ark.frantiq.fr/ark:/26678/pcrtfKnVWnMTiS'},
            'definition': {'@xml:lang': 'fr',
             '$': 'Pratique spirituelle préconisée par la quasi-totalité des traditions religieuses, pour faciliter une approche de la divinité ou pour atteindre des niveaux élevés de pureté spirituelle. (Wikipédia)'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw',
              'prefLabel': [{'@xml:lang': 'es', '$': 'actitud religiosa'},
               {'@xml:lang': 'fr', '$': 'attitude religieuse'},
               {'@xml:lang': 'en', '$': 'religious attitude'}],
              'altLabel': {'@xml:lang': 'fr', '$': 'sentiment religieux'},
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtybZfQyGGDM|http://ark.frantiq.fr/ark:/26678/pcrtZu7jb1SXMw'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11936571t',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Silence'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85122464',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Silence'}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119656766',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Lecture'},
            'altLabel': [{'@xml:lang': 'fr',
              '$': 'Lecture en langue maternelle'},
             {'@xml:lang': 'fr', '$': 'Lecture en langue seconde'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb120423179',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Langage'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Langue et langage'},
               {'@xml:lang': 'fr', '$': 'Langage et langues'},
               {'@xml:lang': 'fr', '$': 'Langues et langage'}]}}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh2002007651',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Reading'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX4576441',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Lectura'},
            'label': {'@xml:lang': 'es', '$': 'Lectura'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'es', '$': 'lectura'},
             {'@xml:lang': 'fr', '$': 'lecture'},
             {'@xml:lang': 'en', '$': 'reading'}],
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss|http://ark.frantiq.fr/ark:/26678/pcrtSV5xQaZfqy'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss',
              'prefLabel': [{'@xml:lang': 'en', '$': 'daily practice'},
               {'@xml:lang': 'es', '$': 'práctica cotidiana'},
               {'@xml:lang': 'fr', '$': 'pratique quotidienne'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtJq2OonWQss'}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb119497432',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Mots et locutions'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Locutions'},
             {'@xml:lang': 'fr', '$': 'Termes'},
             {'@xml:lang': 'fr', '$': 'Expressions (linguistique)'},
             {'@xml:lang': 'fr', '$': 'Mots'},
             {'@xml:lang': 'fr', '$': 'Vocables'},
             {'@xml:lang': 'fr', '$': 'Mot'}],
            'semanticExpansion': {'concept': {'@uri': 'http://data.bnf.fr/ark:/12148/cb11935385q',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Lexicologie'}}}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527050',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Terminología'},
            'label': {'@xml:lang': 'es', '$': 'Terminología'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99001989',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Terms and phrases'},
            'altLabel': {'@xml:lang': 'en', '$': 'Phrases and terms'}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtnDoiMB7bXc',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'fr', '$': 'clé'},
             {'@xml:lang': 'en', '$': 'key'},
             {'@xml:lang': 'es', '$': 'llave'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'clef'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde|http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi|http://ark.frantiq.fr/ark:/26678/pcrtnDoiMB7bXc'},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi',
              'prefLabel': [{'@xml:lang': 'es', '$': 'cerradura'},
               {'@xml:lang': 'en', '$': 'lock'},
               {'@xml:lang': 'fr', '$': 'serrure'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtvWHPMsEEqO|http://ark.frantiq.fr/ark:/26678/pcrtEznNgQ3h63|http://ark.frantiq.fr/ark:/26678/pcrtZhnbHzuSzG|http://ark.frantiq.fr/ark:/26678/pcrtRKX6aHwyde|http://ark.frantiq.fr/ark:/26678/pcrtdSroJ7S1Yi'}}}},
           {'@count': '1',
            '@uri': 'http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
            'inScheme': 'http://pactols.frantiq.fr/',
            'prefLabel': [{'@xml:lang': 'en', '$': 'image'},
             {'@xml:lang': 'fr', '$': 'image'},
             {'@xml:lang': 'es', '$': 'imagen'}],
            'altLabel': {'@xml:lang': 'fr', '$': 'image-représentation'},
            'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5|http://ark.frantiq.fr/ark:/26678/pcrt1X63O2XKjG',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': 'Sujets|philosophie|philosophie (aspect)|esthétique|image'}},
            'semanticExpansion': {'concept': {'@uri': 'http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
              'prefLabel': [{'@xml:lang': 'en', '$': 'aesthetics'},
               {'@xml:lang': 'es', '$': 'estética'},
               {'@xml:lang': 'fr', '$': 'esthétique'}],
              'expanded': {'@uri': 'http://pactols.frantiq.fr/#6|http://ark.frantiq.fr/ark:/26678/pcrtBjGEQJB8ga|http://ark.frantiq.fr/ark:/26678/pcrtES9aUTrO5n|http://ark.frantiq.fr/ark:/26678/pcrtdw6uFlaui5',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': 'Sujets|philosophie|philosophie (aspect)|esthétique'}},
              'definition': {'@xml:lang': 'fr',
               '$': 'Science qui traite du beau en général (Lar.)'}}}},
           {'@count': '1',
            '@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
            'inScheme': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Image'},
            'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1092',
             'expandedLabel': {'@xml:lang': 'fr',
              '$': '060 Sciences humaines|Philosophie|Image'}},
            'semanticExpansion': {'concept': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
              'prefLabel': {'@xml:lang': 'fr', '$': 'Philosophie'},
              'altLabel': [{'@xml:lang': 'fr', '$': 'Phénoménologie'},
               {'@xml:lang': 'fr', '$': 'Logique philosophique'},
               {'@xml:lang': 'fr', '$': 'Morale'}],
              'expanded': {'@uri': 'http://data.culture.fr/thesaurus/resource/ark:/67717/T990-2144|http://data.culture.fr/thesaurus/resource/ark:/67717/T990-1529',
               'expandedLabel': {'@xml:lang': 'fr',
                '$': '060 Sciences humaines|Philosophie'}}}}},
           {'@count': '1',
            '@uri': 'http://data.bnf.fr/ark:/12148/cb11956587m',
            'inScheme': 'http://rameau.bnf.fr/',
            'prefLabel': {'@xml:lang': 'fr', '$': 'Voyageurs'},
            'altLabel': [{'@xml:lang': 'fr', '$': 'Touristes'},
             {'@xml:lang': 'fr', '$': 'Globe-trotters'},
             {'@xml:lang': 'fr', '$': 'Clientèle touristique'},
             {'@xml:lang': 'fr', '$': 'Visiteurs'},
             {'@xml:lang': 'fr', '$': 'Vacanciers'},
             {'@xml:lang': 'fr', '$': 'Routards'},
             {'@xml:lang': 'fr', '$': 'Estivants'}]},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh99003907',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Tourists'},
            'altLabel': {'@xml:lang': 'en', '$': 'Sightseers'}},
           {'@count': '1',
            '@uri': 'http://datos.bne.es/resource/XX527053',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'es', '$': 'Viajeros'},
            'label': {'@xml:lang': 'es', '$': 'Viajeros'},
            'altLabel': {'@xml:lang': 'es', '$': 'Turistas'}},
           {'@count': '1',
            '@uri': 'http://id.loc.gov/authorities/subjects/sh85137170',
            '@origin': 'rameau',
            'prefLabel': {'@xml:lang': 'en', '$': 'Travelers'},
            'altLabel': [{'@xml:lang': 'en', '$': 'Wayfarers'},
             {'@xml:lang': 'en', '$': 'Voyagers'},
             {'@xml:lang': 'en', '$': 'Travellers'}]}]},
         {'@type': 'ISIDORE_DC_COVERAGE',
          'concept': {'@count': '15',
           '@uri': 'http://sws.geonames.org/1814991/',
           'inScheme': 'http://sws.geonames.org',
           'prefLabel': ['China',
            {'@xml:lang': 'en', '$': 'China'},
            {'@xml:lang': 'es', '$': 'República Popular China'},
            {'@xml:lang': 'fr', '$': 'République populaire de Chine'}],
           'altLabel': [{'@xml:lang': 'fr', '$': 'Chine'},
            {'@xml:lang': 'fr', '$': 'République populaire de Chine'}],
           'expanded': {'@uri': 'http://sws.geonames.org/6255147/|http://sws.geonames.org/1814991/',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': 'Asie|République populaire de Chine'},
             {'@xml:lang': 'es', '$': 'Asia|República Popular China'},
             {'@xml:lang': 'en', '$': 'Asia|China'}],
            'expandedCountry': [{'@xml:lang': 'fr', '$': 'Asie|China'},
             {'@xml:lang': 'es', '$': 'Asia|China'},
             {'@xml:lang': 'en', '$': 'Asia|China'}]},
           'latitude': '35',
           'longitude': '105',
           'semanticExpansion': {'concept': {'@uri': 'http://sws.geonames.org/6255147/',
             'prefLabel': ['Asia',
              {'@xml:lang': 'en', '$': 'Asia'},
              {'@xml:lang': 'fr', '$': 'Asie'},
              {'@xml:lang': 'es', '$': 'Asia'}],
             'altLabel': {'@xml:lang': 'fr', '$': 'Asie'},
             'latitude': '29.84064',
             'longitude': '89.29688'}},
           'exactMatch': [[], []]}}],
        'categories': [{'@type': 'ISIDORE_HAL_CATEGO',
          'category': {'@proba': '1.000',
           '@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
           'inScheme': 'http://aurehal.archives-ouvertes.fr/subjects',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs|http://aurehal.archives-ouvertes.fr/subject/shs.litt',
            'expandedLabel': [{'@xml:lang': 'fr',
              '$': "Sciences de l'Homme et Société|Littératures"},
             {'@xml:lang': 'en',
              '$': 'Humanities and Social Sciences|Literature'},
             {'@xml:lang': 'es', '$': 'Ciencias sociales|Literatura'}]},
           'semanticExpansion': {'category': {'@uri': 'http://aurehal.archives-ouvertes.fr/subject/shs',
             'prefLabel': [{'@xml:lang': 'es', '$': 'Ciencias sociales'},
              {'@xml:lang': 'en', '$': 'Humanities and Social Sciences'},
              {'@xml:lang': 'fr', '$': "Sciences de l'Homme et Société"}],
             'definition': {'@xml:lang': 'fr',
              '$': "Les sciences humaines et sociales sont un ensemble de disciplines qui se donnent pour objet d'étude, divers aspects de la réalité humaine. On les met en contraste avec les sciences dites « exactes » (parfois dites « sciences dures », en raison de leur statut épistémologique spécifique (bien que nulle science ne soit exempte de scepticisme et véritablement « exacte » au sens de la seule réalité, et bien que les sciences qui ne sont liées qu'à l'immatérialité dont la linguistique et la philosophie du langage aient pu faire l'objet de tentatives formalistes).  Selon les dictionnaires, les sciences humaines étudient ce qui concerne les cultures humaines, leur histoire, leurs réalisations, leurs modes de vie et leurs comportements individuels et sociaux, tandis que les sciences sociales auraient pour objet d'étude les sociétés humaines. Les sciences humaines ont néanmoins une interface avec les sciences de la nature de l'environnement, car l'homme fait partie des espèces vivantes, il a une empreinte écologique croissante et l'anthroposystème1 qu'il a créé interagit fortement avec les écosystèmes2. Celles-ci reconduisant ainsi, d'une certaine façon, l'opposition à l'âge classique entre la philosophie naturelle et la philosophie morale (qui incluait aussi la sociologie, la politique, l'économique, etc.). L'expression anglaise de « science sociale » serait apparue en 1824, dans un livre du coopératiste William Thompson3.  Les sciences dites sociales ou/et humaines ont toutes deux à résoudre une difficulté méthodologique de recherche d'objectivité dans l'étude de l'espèce humaine et des anthroposystèmes ; où l'objet étudié coïncide avec la culture du sujet qui l'analyse. Ce problème se confond donc avec de nombreux débats en épistémologie concernant le critère de scientificité et d'objectivité, à supposer qu'on puisse identifier les deux4. Cette objectivité des sciences humaines et sociales est structurée autour de plusieurs principes fondamentaux: la neutralité axiologique, théorisée par Max Weber; la distinction faits-valeurs et le vérificationnisme, théorisés par le Cercle de Vienne et formulées précisément par Alfred Ayer et Rudolf Carnap. Karl Popper s'est ensuite substitué au critère de réfutabilité, qui demeure en débat aujourd'hui.  Contenu soumis à la licence CC-BY-SA 3.0. Source : Article Sciences humaines et sociales de Wikipédia en français (auteurs)"}}},
           'exactMatch': [{'category': {'@uri': 'http://calenda.org/categories.rdf#categorie269',
              'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
               {'@xml:lang': 'en', '$': 'Literature'},
               {'@xml:lang': 'fr', '$': 'Littératures'}],
              'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
               'expandedLabel': [{'@xml:lang': 'es',
                 '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
                {'@xml:lang': 'en',
                 '$': 'Mind and language|Language|Literature'},
                {'@xml:lang': 'fr',
                 '$': 'Esprit et Langage|Langage|Littératures'}]}}},
            {'@uri': 'http://dbpedia.org/resource/Literature'}]}},
         {'@type': 'ISIDORE_CALENDA_SUBJECT',
          'category': {'@proba': '1.000',
           '@uri': 'http://calenda.org/categories.rdf#categorie269',
           '@origin': 'hal',
           'prefLabel': [{'@xml:lang': 'es', '$': 'Literatura'},
            {'@xml:lang': 'en', '$': 'Literature'},
            {'@xml:lang': 'fr', '$': 'Littératures'}],
           'expanded': {'@uri': 'http://calenda.org/categories.rdf#categorie259|http://calenda.org/categories.rdf#categorie267|http://calenda.org/categories.rdf#categorie269',
            'expandedLabel': [{'@xml:lang': 'es',
              '$': 'Pensamiento y lenguaje|Lenguaje|Literatura'},
             {'@xml:lang': 'en', '$': 'Mind and language|Language|Literature'},
             {'@xml:lang': 'fr',
              '$': 'Esprit et Langage|Langage|Littératures'}]}}}]},
       'dc:language': 'fr',
       'dc:rights': 'info:eu-repo/semantics/OpenAccess'}}]},
   'page': {'@current': '1', '@next': '2'}},
  'spellcheck': {'suggestion': {'@text': 'Roland Barthes',
    '@src': 'Roland+Barthes'}}}}
theses_barthes['response']['replies']['meta']['@items']
'1370'
for these in theses_barthes['response']['replies']['content']['reply']:
    print(these['isidore']['title'])
[{'@xml:lang': 'fr', '$': 'Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique'}, {'@xml:lang': 'en', '$': 'The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique'}]
[{'@xml:lang': 'fr', '$': 'Les hétérologies du savoir (Roland Barthes, Pascal Quignard)'}, {'@xml:lang': 'en', '$': 'The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)'}]
[{'@xml:lang': 'en', '$': 'The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique'}, {'@xml:lang': 'fr', '$': 'Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique'}]
[{'@xml:lang': 'en', '$': 'The Exercise of intimacy according to Roland Barthes'}, {'@xml:lang': 'fr', '$': "L'Exercice de l'intime d'après Roland Barthes"}]
[{'@xml:lang': 'en', '$': 'The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)'}, {'@xml:lang': 'fr', '$': 'Les hétérologies du savoir (Roland Barthes, Pascal Quignard)'}]
Eyeing the ear : Roland Barthes and the song lyric
La friction du livre: Roland Barthes en Amerique du Nord
{'@xml:lang': 'fr', '$': 'L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes'}
[{'@xml:lang': 'fr', '$': 'Photobiographies : pour une écriture de notation de la vie (Roland Barthes, Denis Roche, Annie Ernaux)'}, {'@xml:lang': 'en', '$': 'Photobiographies : Towards a Notation of Life (Roland Barthes, Denis Roche, Annie Ernaux)'}]
[{'@xml:lang': 'fr', '$': 'Du "piège" de la rhétorique à la critique de la critique : la pensée occidentale de la rhétorique de Friedrich Nietzsche à Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.'}, {'@xml:lang': 'en', '$': 'From the "trap" of rhetoric to the critique of criticism : a study of Western thinking on rhetoric from Friedrich Nietzsche to Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.'}]
[{'@xml:lang': 'fr', '$': 'Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements'}, {'@xml:lang': 'en', '$': "Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons"}]
[{'@xml:lang': 'fr', '$': 'Roland Barthes : figures du discours de l\'amour, de la mort et du deuil dans "Fragments d\'un discours amoureux", "La chambre claire. Note sur la photographie" et "Journal de deuil"'}, {'@xml:lang': 'en', '$': 'Roland Barthes : figures of the speech of love, death and mourning in "fragments of a lover’s discourse", "Camera Lucida. Reflections on Photography" and "Mourning Diary"'}]
La mélancolie même de la photographie : Roland Barthes
{'@xml:lang': 'fr', '$': 'Le Lieu habitable de Roland Barthes'}
{'@xml:lang': 'fr', '$': "<i>L'Empire des signes</i> de Roland Barthes : essai de rencontre"}
L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes
Les fondements de l'écriture selon Michel Foucault et Roland Barthes
[{'@xml:lang': 'en', '$': 'Perception-fiction : writing and contemporary visual creation : Roland Barthes, Samuel Beckett, Hervé Guibert'}, {'@xml:lang': 'fr', '$': "Perception-fiction : L'écriture à l'épreuve de la création visuelle contemporaine : Roland Barthes, Samuel Beckett, Hervé Guibert"}]
{'@xml:lang': 'fr', '$': "Roland Barthes et <i>La Préparation du Roman</i> : « toujours penser l'écriture en termes de musique »"}
{'@xml:lang': 'fr', '$': 'De la Notation au Roman. Roland Barthes et la question du Journal'}
Etude sur la méthode d'analyse du récit de Roland Barthes
Relire la scène maternelle : Deuil et photographie chez Roland Barthes et Hervé Guibert
{'@xml:lang': 'fr', '$': "L'écriture du deuil chez Roland Barthes : une étude de <i>La Chambre claire</i> et du <i>Journal de deuil</i>"}
Roland Barthes, lecteur du XIXe siècle
[{'@xml:lang': 'en', '$': "Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons"}, {'@xml:lang': 'fr', '$': 'Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements'}]

Faisons-le mieux

for these in theses_barthes['response']['replies']['content']['reply']:
    if type(these['isidore']['title'])==list:
        for title in these['isidore']['title']:
            print(title['$'])
    else:
        try:
            print(these['isidore']['title']['$'])
        except TypeError:
            
            print(these['isidore']['title'])
            
    print(these['isidore']['url'])  
    print(these['isidore']['enrichedCreators']['creator']['@origin'])  
        
Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique
The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique
http://www.theses.fr/2020GRALL023
Han, Seokhyeon
Les hétérologies du savoir (Roland Barthes, Pascal Quignard)
The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)
http://www.theses.fr/2016USPCA136/document
Messager, Mathieu
The discourse of Roland Barthes at the Collège de France : pre-novel, trans-writing, hyper-critique
Le discours de Roland Barthes au Collège de France : pré-roman, trans-écriture, hyper-critique
https://tel.archives-ouvertes.fr/tel-03260607
Han, Seokhyeon
The Exercise of intimacy according to Roland Barthes
L'Exercice de l'intime d'après Roland Barthes
https://hal.archives-ouvertes.fr/tel-02517109
Paillé, Willy
The Heterologies of Knowledge (Roland Barthes, Pascal Quignard)
Les hétérologies du savoir (Roland Barthes, Pascal Quignard)
https://tel.archives-ouvertes.fr/tel-01580993
Messager, Mathieu
Eyeing the ear : Roland Barthes and the song lyric
https://escholarship.mcgill.ca/concern/theses/db78tf00r
Burnett, Maija.
La friction du livre: Roland Barthes en Amerique du Nord
http://hdl.handle.net/1828/2858
Kyle, Michael
L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes
http://www.theses.fr/2017PA080104/document
Procopio de Araujo Ferraz, Paulo
Photobiographies : pour une écriture de notation de la vie (Roland Barthes, Denis Roche, Annie Ernaux)
Photobiographies : Towards a Notation of Life (Roland Barthes, Denis Roche, Annie Ernaux)
http://www.theses.fr/2011PA030104
Arribert-Narce, Fabien
Du "piège" de la rhétorique à la critique de la critique : la pensée occidentale de la rhétorique de Friedrich Nietzsche à Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.
From the "trap" of rhetoric to the critique of criticism : a study of Western thinking on rhetoric from Friedrich Nietzsche to Jacques Derrida, Michel Foucault, Paul de Man et Roland Barthes.
http://www.theses.fr/2009PA030091
Huang, Hai Rong
Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements
Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons
http://www.theses.fr/2017MON30024/document
Meng, Qingya
Roland Barthes : figures du discours de l'amour, de la mort et du deuil dans "Fragments d'un discours amoureux", "La chambre claire. Note sur la photographie" et "Journal de deuil"
Roland Barthes : figures of the speech of love, death and mourning in "fragments of a lover’s discourse", "Camera Lucida. Reflections on Photography" and "Mourning Diary"
http://www.theses.fr/2019PA100039
Sassi, Sonia
La mélancolie même de la photographie : Roland Barthes
http://hdl.handle.net/1866/3267
Létourneau, Sophie
Le Lieu habitable de Roland Barthes
https://dumas.ccsd.cnrs.fr/dumas-00736153
Panet, Florian
<i>L'Empire des signes</i> de Roland Barthes : essai de rencontre
https://dumas.ccsd.cnrs.fr/dumas-00496308
Panet, Florian
L’Imaginaire dans la critique littéraire des années 1950-1960 : images et geste dans les œuvres de Charles Mauron, Lucien Goldmann et Roland Barthes
https://octaviana.fr/document/2017PA080104
Procopio de Araujo Ferraz, Paulo
Les fondements de l'écriture selon Michel Foucault et Roland Barthes
http://hdl.handle.net/1866/16543
Ben Osman, Farès
Perception-fiction : writing and contemporary visual creation : Roland Barthes, Samuel Beckett, Hervé Guibert
Perception-fiction : L'écriture à l'épreuve de la création visuelle contemporaine : Roland Barthes, Samuel Beckett, Hervé Guibert
https://hal.archives-ouvertes.fr/tel-02155441
Guilbard, Anne-Cécile
Roland Barthes et <i>La Préparation du Roman</i> : « toujours penser l'écriture en termes de musique »
https://dumas.ccsd.cnrs.fr/dumas-00743181
Étienne, Valère
De la Notation au Roman. Roland Barthes et la question du Journal
https://orbi.uliege.be/handle/2268/127406
Stienon, Valérie
Etude sur la méthode d'analyse du récit de Roland Barthes
https://escholarship.mcgill.ca/concern/theses/rr171z18r
Vidal, Bernard.
Relire la scène maternelle : Deuil et photographie chez Roland Barthes et Hervé Guibert
http://hdl.handle.net/1866/18241
Najm, Daoud
L'écriture du deuil chez Roland Barthes : une étude de <i>La Chambre claire</i> et du <i>Journal de deuil</i>
https://dumas.ccsd.cnrs.fr/dumas-00835439
Fusaro, Anaïs
Roland Barthes, lecteur du XIXe siècle
https://octaviana.fr/document/182423298
Sun, Qian
Tel Quel and Roland Barthes's trip to China (1974). Challenges, obstacles, lessons
Le voyage en Chine de Tel Quel et de Roland Barthes (1974). Enjeux, embûches, enseignements
https://tel.archives-ouvertes.fr/tel-01695576
Meng, Qingya

Précisons notre recherche en utilisant des mots-clés contrôlés…

Par exemple des thèses qui parlent de Barthes et des publicités avec une approche littéraire:

On va prendre le mot publicité sur Rameau: http://data.bnf.fr/ark:/12148/cb13318427c

parametres = {
    'subject': 'http://data.bnf.fr/ark:/12148/cb13318427c',
    'type': 'http://isidore.science/ontology#thesis',
    'discipline':'http://aurehal.archives-ouvertes.fr/subject/shs.litt',
    'output':'json',
    'replies' : 25,
    'q': 'Roland Barthes'
    
    
    
}

theses_barthes = chercheisidore(parametres)
theses_barthes['response']['replies']['meta']['@items']
'2'
for these in theses_barthes['response']['replies']['content']['reply']:
    if type(these['isidore']['title'])==list:
        for title in these['isidore']['title']:
            print(title['$'])
    else:
        try:
            print(these['isidore']['title']['$'])
        except TypeError:
            
            print(these['isidore']['title'])
            
    print(these['isidore']['url'])  
    print(these['isidore']['enrichedCreators']['creator']['@origin'])  
        
"L'amour du peuple" : esthétique populiste et imaginaire du populaire dans la culture française de l'entre-deux-guerres
"Love for the people" : Populist Aesthetics and Imaginations of Popular Life in France's Interwar Culture
http://www.theses.fr/2019EHES0152/document
Kern, Matthias
La transposition de la littérature à la bande dessinée : la mise en images chez Alberto Breccia
The transpotition from litterature to comics : visual strategies in Alberto Breccia's Work
http://www.theses.fr/2016PA100079/document
Caraballo, Laura Cecilia

Quelques réflexions sur le rapport entre texte et données

Discutons des idées de Stephen Marche dans Literature Is not Data: Against Digital Humanities

  • opposition entre humain et calcul: l’humain n’est pas calculable

  • confusion entre mauvaise modélisation et impossibilité de modéliser

Even a relatively casual examination of the fundamental assumptions underlying the argument reveals the mushiness of the words beneath the hard equations. What is a “classic”? What is “influence”? Are similarities of language the most fundamental way of establishing the similarities between authors? The problem with “distant reading” is, naturally, the distance involved.

Literature cannot meaningfully be treated as data. The problem is essential rather than superficial: literature is not data. Literature is the opposite of data.

La question de l’oubli et de la perte: concerne-t-elle seulement la littérature?

  • l’opposition entre sens et syntaxe (Borges… une bonne introduction à l’opposition Turing/Searle)

Natural language processing

Cette section est inspirée de https://www.stat4decision.com/fr/traitement-langage-naturel-francais-tal-nlp/

Le NLP ou TAL (traitement automatique du langage) consiste à traiter une langue de façon algorithmique pour essayer d’extraire du sens. Cela sert par exemple pour faire des traductions automatiques ou pour essayer de classer des contenus par sujet, ou pour faire de l’analyse de sentiments… ou un générateur de textes.

Le TAL consiste en trois grandes étapes:

  • Pré-traitement

  • Vectorisation

  • Traitement

Il y a plusieurs librairies qui permettent de faire du TAL en python. Une est nltk, probablement la plus utilisée. Une autre est spacy.

Ces librairies permettent d’avoir des modèles déjà entrainés.

Prétraitement

  • tokenisation

  • lemmatisation

  • stopwords

  • analyse…

import spacy
nlp = spacy.load('fr_core_news_sm')
mon_texte = 'Bonjour, chers amis, comment allez-vous? J\'espère que vous passez une bonne journée à l\'Université de Montréal'
doc = nlp(mon_texte)
for mot in doc:
    print(mot.text)
Bonjour
,
chers
amis
,
comment
allez
-vous
?
J'
espère
que
vous
passez
une
bonne
journée
à
l'
Université
de
Montréal

Une fonction qui fait ce travail et retourne une liste:

def return_token(sentence):
    # Tokeniser la phrase
    doc = nlp(sentence)
    # Retourner le texte de chaque token
    return [X.text for X in doc]

Il faut d’abord enlever les stopwords. On pourrait faire une liste à la main… Ou alors importer une liste déjà existante:

from nltk.corpus import stopwords
stopWords = set(stopwords.words('french'))
/home/marcello/.local/lib/python3.7/site-packages/sklearn/feature_extraction/image.py:167: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  dtype=np.int):
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:35: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:597: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps, copy_X=True, fit_path=True,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:836: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps, copy_X=True, fit_path=True,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:862: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps, positive=False):
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:1097: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  max_n_alphas=1000, n_jobs=None, eps=np.finfo(np.float).eps,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:1344: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  max_n_alphas=1000, n_jobs=None, eps=np.finfo(np.float).eps,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/least_angle.py:1480: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps, copy_X=True, positive=False):
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/randomized_l1.py:152: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  precompute=False, eps=np.finfo(np.float).eps,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/randomized_l1.py:320: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=np.finfo(np.float).eps, random_state=None,
/home/marcello/.local/lib/python3.7/site-packages/sklearn/linear_model/randomized_l1.py:580: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  eps=4 * np.finfo(np.float).eps, n_jobs=None,
clean_words = []
for token in return_token(mon_texte):
    if token not in stopWords:
        clean_words.append(token)

clean_words
['Bonjour',
 ',',
 'chers',
 'amis',
 ',',
 'comment',
 'allez',
 '-vous',
 '?',
 "J'",
 'espère',
 'passez',
 'bonne',
 'journée',
 "l'",
 'Université',
 'Montréal']
def return_token_sent(sentence):
    # Tokeniser la phrase
    doc = nlp(sentence)
    # Retourner le texte de chaque phrase
    return [X.text for X in doc.sents]
return_token_sent(mon_texte)
['Bonjour, chers amis, comment allez-vous?',
 "J'espère que vous passez une bonne journée à l'Université de Montréal"]

Lemmatisons!

for i in doc:
    print(i.lemma_)
Bonjour
,
cher
ami
,
comment
aller
vous
?
je
espérer
que
vous
passer
un
bon
journée
à
le
université
de
Montréal

Entités nommées?

doc.ents
(Bonjour, Université de Montréal)
for e in doc.ents:
    print(e.text)
    print(e.label_)
Bonjour
PER
Université de Montréal
ORG

Analisons!

for e in doc:
    print(e.text,e.lemma_,e.pos_)
Bonjour Bonjour PROPN
, , PUNCT
chers cher ADJ
amis ami NOUN
, , PUNCT
comment comment ADV
allez aller VERB
-vous vous PRON
? ? PUNCT
J' je PRON
espère espérer VERB
que que SCONJ
vous vous PRON
passez passer VERB
une un DET
bonne bon ADJ
journée journée NOUN
à à ADP
l' le DET
Université université NOUN
de de ADP
Montréal Montréal PROPN